4
0

tar.texi 422 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503
  1. \input texinfo @c -*-texinfo-*-
  2. @comment %**start of header
  3. @setfilename tar.info
  4. @include version.texi
  5. @settitle GNU tar @value{VERSION}
  6. @setchapternewpage odd
  7. @finalout
  8. @smallbook
  9. @c %**end of header
  10. @c Maintenance notes:
  11. @c 1. Pay attention to @FIXME{}s and @UNREVISED{}s
  12. @c 2. Before creating final variant:
  13. @c 2.1. Run `make check-options' to make sure all options are properly
  14. @c documented;
  15. @c 2.2. Run `make master-menu' (see comment before the master menu).
  16. @include rendition.texi
  17. @include value.texi
  18. @defcodeindex op
  19. @c Put everything in one index (arbitrarily chosen to be the concept index).
  20. @syncodeindex fn cp
  21. @syncodeindex ky cp
  22. @syncodeindex pg cp
  23. @syncodeindex vr cp
  24. @copying
  25. This manual is for @acronym{GNU} @command{tar} (version
  26. @value{VERSION}, @value{UPDATED}), which creates and extracts files
  27. from archives.
  28. Copyright @copyright{} 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
  29. 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  30. @quotation
  31. Permission is granted to copy, distribute and/or modify this document
  32. under the terms of the GNU Free Documentation License, Version 1.1 or
  33. any later version published by the Free Software Foundation; with no
  34. Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
  35. and with the Back-Cover Texts as in (a) below. A copy of the license
  36. is included in the section entitled "GNU Free Documentation License".
  37. (a) The FSF's Back-Cover Text is: ``You have the freedom to
  38. copy and modify this GNU manual. Buying copies from the FSF
  39. supports it in developing GNU and promoting software freedom.''
  40. @end quotation
  41. @end copying
  42. @dircategory Archiving
  43. @direntry
  44. * Tar: (tar). Making tape (or disk) archives.
  45. @end direntry
  46. @dircategory Individual utilities
  47. @direntry
  48. * tar: (tar)tar invocation. Invoking @GNUTAR{}.
  49. @end direntry
  50. @shorttitlepage @acronym{GNU} @command{tar}
  51. @titlepage
  52. @title @acronym{GNU} tar: an archiver tool
  53. @subtitle @value{RENDITION} @value{VERSION}, @value{UPDATED}
  54. @author John Gilmore, Jay Fenlason et al.
  55. @page
  56. @vskip 0pt plus 1filll
  57. @insertcopying
  58. @end titlepage
  59. @ifnottex
  60. @node Top
  61. @top @acronym{GNU} tar: an archiver tool
  62. @insertcopying
  63. @cindex file archival
  64. @cindex archiving files
  65. The first part of this master menu lists the major nodes in this Info
  66. document. The rest of the menu lists all the lower level nodes.
  67. @end ifnottex
  68. @c The master menu goes here.
  69. @c
  70. @c NOTE: To update it from within Emacs, make sure mastermenu.el is
  71. @c loaded and run texinfo-master-menu.
  72. @c To update it from the command line, run
  73. @c
  74. @c make master-menu
  75. @menu
  76. * Introduction::
  77. * Tutorial::
  78. * tar invocation::
  79. * operations::
  80. * Backups::
  81. * Choosing::
  82. * Date input formats::
  83. * Formats::
  84. * Media::
  85. Appendices
  86. * Changes::
  87. * Configuring Help Summary::
  88. * Fixing Snapshot Files::
  89. * Tar Internals::
  90. * Genfile::
  91. * Free Software Needs Free Documentation::
  92. * Copying This Manual::
  93. * Index of Command Line Options::
  94. * Index::
  95. @detailmenu
  96. --- The Detailed Node Listing ---
  97. Introduction
  98. * Book Contents:: What this Book Contains
  99. * Definitions:: Some Definitions
  100. * What tar Does:: What @command{tar} Does
  101. * Naming tar Archives:: How @command{tar} Archives are Named
  102. * Authors:: @GNUTAR{} Authors
  103. * Reports:: Reporting bugs or suggestions
  104. Tutorial Introduction to @command{tar}
  105. * assumptions::
  106. * stylistic conventions::
  107. * basic tar options:: Basic @command{tar} Operations and Options
  108. * frequent operations::
  109. * Two Frequent Options::
  110. * create:: How to Create Archives
  111. * list:: How to List Archives
  112. * extract:: How to Extract Members from an Archive
  113. * going further::
  114. Two Frequently Used Options
  115. * file tutorial::
  116. * verbose tutorial::
  117. * help tutorial::
  118. How to Create Archives
  119. * prepare for examples::
  120. * Creating the archive::
  121. * create verbose::
  122. * short create::
  123. * create dir::
  124. How to List Archives
  125. * list dir::
  126. How to Extract Members from an Archive
  127. * extracting archives::
  128. * extracting files::
  129. * extract dir::
  130. * extracting untrusted archives::
  131. * failing commands::
  132. Invoking @GNUTAR{}
  133. * Synopsis::
  134. * using tar options::
  135. * Styles::
  136. * All Options::
  137. * help::
  138. * defaults::
  139. * verbose::
  140. * checkpoints::
  141. * interactive::
  142. The Three Option Styles
  143. * Long Options:: Long Option Style
  144. * Short Options:: Short Option Style
  145. * Old Options:: Old Option Style
  146. * Mixing:: Mixing Option Styles
  147. All @command{tar} Options
  148. * Operation Summary::
  149. * Option Summary::
  150. * Short Option Summary::
  151. @GNUTAR{} Operations
  152. * Basic tar::
  153. * Advanced tar::
  154. * create options::
  155. * extract options::
  156. * backup::
  157. * Applications::
  158. * looking ahead::
  159. Advanced @GNUTAR{} Operations
  160. * Operations::
  161. * append::
  162. * update::
  163. * concatenate::
  164. * delete::
  165. * compare::
  166. How to Add Files to Existing Archives: @option{--append}
  167. * appending files:: Appending Files to an Archive
  168. * multiple::
  169. Updating an Archive
  170. * how to update::
  171. Options Used by @option{--create}
  172. * override:: Overriding File Metadata.
  173. * Ignore Failed Read::
  174. Options Used by @option{--extract}
  175. * Reading:: Options to Help Read Archives
  176. * Writing:: Changing How @command{tar} Writes Files
  177. * Scarce:: Coping with Scarce Resources
  178. Options to Help Read Archives
  179. * read full records::
  180. * Ignore Zeros::
  181. Changing How @command{tar} Writes Files
  182. * Dealing with Old Files::
  183. * Overwrite Old Files::
  184. * Keep Old Files::
  185. * Keep Newer Files::
  186. * Unlink First::
  187. * Recursive Unlink::
  188. * Data Modification Times::
  189. * Setting Access Permissions::
  190. * Directory Modification Times and Permissions::
  191. * Writing to Standard Output::
  192. * Writing to an External Program::
  193. * remove files::
  194. Coping with Scarce Resources
  195. * Starting File::
  196. * Same Order::
  197. Performing Backups and Restoring Files
  198. * Full Dumps:: Using @command{tar} to Perform Full Dumps
  199. * Incremental Dumps:: Using @command{tar} to Perform Incremental Dumps
  200. * Backup Levels:: Levels of Backups
  201. * Backup Parameters:: Setting Parameters for Backups and Restoration
  202. * Scripted Backups:: Using the Backup Scripts
  203. * Scripted Restoration:: Using the Restore Script
  204. Setting Parameters for Backups and Restoration
  205. * General-Purpose Variables::
  206. * Magnetic Tape Control::
  207. * User Hooks::
  208. * backup-specs example:: An Example Text of @file{Backup-specs}
  209. Choosing Files and Names for @command{tar}
  210. * file:: Choosing the Archive's Name
  211. * Selecting Archive Members::
  212. * files:: Reading Names from a File
  213. * exclude:: Excluding Some Files
  214. * wildcards:: Wildcards Patterns and Matching
  215. * quoting styles:: Ways of Quoting Special Characters in Names
  216. * transform:: Modifying File and Member Names
  217. * after:: Operating Only on New Files
  218. * recurse:: Descending into Directories
  219. * one:: Crossing File System Boundaries
  220. Reading Names from a File
  221. * nul::
  222. Excluding Some Files
  223. * problems with exclude::
  224. Wildcards Patterns and Matching
  225. * controlling pattern-matching::
  226. Crossing File System Boundaries
  227. * directory:: Changing Directory
  228. * absolute:: Absolute File Names
  229. Date input formats
  230. * General date syntax:: Common rules.
  231. * Calendar date items:: 19 Dec 1994.
  232. * Time of day items:: 9:20pm.
  233. * Time zone items:: @sc{est}, @sc{pdt}, @sc{gmt}.
  234. * Day of week items:: Monday and others.
  235. * Relative items in date strings:: next tuesday, 2 years ago.
  236. * Pure numbers in date strings:: 19931219, 1440.
  237. * Seconds since the Epoch:: @@1078100502.
  238. * Specifying time zone rules:: TZ="America/New_York", TZ="UTC0".
  239. * Authors of get_date:: Bellovin, Eggert, Salz, Berets, et al.
  240. Controlling the Archive Format
  241. * Compression:: Using Less Space through Compression
  242. * Attributes:: Handling File Attributes
  243. * Portability:: Making @command{tar} Archives More Portable
  244. * cpio:: Comparison of @command{tar} and @command{cpio}
  245. Using Less Space through Compression
  246. * gzip:: Creating and Reading Compressed Archives
  247. * sparse:: Archiving Sparse Files
  248. Making @command{tar} Archives More Portable
  249. * Portable Names:: Portable Names
  250. * dereference:: Symbolic Links
  251. * hard links:: Hard Links
  252. * old:: Old V7 Archives
  253. * ustar:: Ustar Archives
  254. * gnu:: GNU and old GNU format archives.
  255. * posix:: @acronym{POSIX} archives
  256. * Checksumming:: Checksumming Problems
  257. * Large or Negative Values:: Large files, negative time stamps, etc.
  258. * Other Tars:: How to Extract GNU-Specific Data Using
  259. Other @command{tar} Implementations
  260. @GNUTAR{} and @acronym{POSIX} @command{tar}
  261. * PAX keywords:: Controlling Extended Header Keywords.
  262. How to Extract GNU-Specific Data Using Other @command{tar} Implementations
  263. * Split Recovery:: Members Split Between Volumes
  264. * Sparse Recovery:: Sparse Members
  265. Tapes and Other Archive Media
  266. * Device:: Device selection and switching
  267. * Remote Tape Server::
  268. * Common Problems and Solutions::
  269. * Blocking:: Blocking
  270. * Many:: Many archives on one tape
  271. * Using Multiple Tapes:: Using Multiple Tapes
  272. * label:: Including a Label in the Archive
  273. * verify::
  274. * Write Protection::
  275. Blocking
  276. * Format Variations:: Format Variations
  277. * Blocking Factor:: The Blocking Factor of an Archive
  278. Many Archives on One Tape
  279. * Tape Positioning:: Tape Positions and Tape Marks
  280. * mt:: The @command{mt} Utility
  281. Using Multiple Tapes
  282. * Multi-Volume Archives:: Archives Longer than One Tape or Disk
  283. * Tape Files:: Tape Files
  284. * Tarcat:: Concatenate Volumes into a Single Archive
  285. Tar Internals
  286. * Standard:: Basic Tar Format
  287. * Extensions:: @acronym{GNU} Extensions to the Archive Format
  288. * Sparse Formats:: Storing Sparse Files
  289. * Snapshot Files::
  290. * Dumpdir::
  291. Storing Sparse Files
  292. * Old GNU Format::
  293. * PAX 0:: PAX Format, Versions 0.0 and 0.1
  294. * PAX 1:: PAX Format, Version 1.0
  295. Genfile
  296. * Generate Mode:: File Generation Mode.
  297. * Status Mode:: File Status Mode.
  298. * Exec Mode:: Synchronous Execution mode.
  299. Copying This Manual
  300. * GNU Free Documentation License:: License for copying this manual
  301. @end detailmenu
  302. @end menu
  303. @node Introduction
  304. @chapter Introduction
  305. @GNUTAR{} creates
  306. and manipulates @dfn{archives} which are actually collections of
  307. many other files; the program provides users with an organized and
  308. systematic method for controlling a large amount of data.
  309. The name ``tar'' originally came from the phrase ``Tape ARchive'', but
  310. archives need not (and these days, typically do not) reside on tapes.
  311. @menu
  312. * Book Contents:: What this Book Contains
  313. * Definitions:: Some Definitions
  314. * What tar Does:: What @command{tar} Does
  315. * Naming tar Archives:: How @command{tar} Archives are Named
  316. * Authors:: @GNUTAR{} Authors
  317. * Reports:: Reporting bugs or suggestions
  318. @end menu
  319. @node Book Contents
  320. @section What this Book Contains
  321. The first part of this chapter introduces you to various terms that will
  322. recur throughout the book. It also tells you who has worked on @GNUTAR{}
  323. and its documentation, and where you should send bug reports
  324. or comments.
  325. The second chapter is a tutorial (@pxref{Tutorial}) which provides a
  326. gentle introduction for people who are new to using @command{tar}. It is
  327. meant to be self contained, not requiring any reading from subsequent
  328. chapters to make sense. It moves from topic to topic in a logical,
  329. progressive order, building on information already explained.
  330. Although the tutorial is paced and structured to allow beginners to
  331. learn how to use @command{tar}, it is not intended solely for beginners.
  332. The tutorial explains how to use the three most frequently used
  333. operations (@samp{create}, @samp{list}, and @samp{extract}) as well as
  334. two frequently used options (@samp{file} and @samp{verbose}). The other
  335. chapters do not refer to the tutorial frequently; however, if a section
  336. discusses something which is a complex variant of a basic concept, there
  337. may be a cross reference to that basic concept. (The entire book,
  338. including the tutorial, assumes that the reader understands some basic
  339. concepts of using a Unix-type operating system; @pxref{Tutorial}.)
  340. The third chapter presents the remaining five operations, and
  341. information about using @command{tar} options and option syntax.
  342. The other chapters are meant to be used as a reference. Each chapter
  343. presents everything that needs to be said about a specific topic.
  344. One of the chapters (@pxref{Date input formats}) exists in its
  345. entirety in other @acronym{GNU} manuals, and is mostly self-contained.
  346. In addition, one section of this manual (@pxref{Standard}) contains a
  347. big quote which is taken directly from @command{tar} sources.
  348. In general, we give both long and short (abbreviated) option names
  349. at least once in each section where the relevant option is covered, so
  350. that novice readers will become familiar with both styles. (A few
  351. options have no short versions, and the relevant sections will
  352. indicate this.)
  353. @node Definitions
  354. @section Some Definitions
  355. @cindex archive
  356. @cindex tar archive
  357. The @command{tar} program is used to create and manipulate @command{tar}
  358. archives. An @dfn{archive} is a single file which contains the contents
  359. of many files, while still identifying the names of the files, their
  360. owner(s), and so forth. (In addition, archives record access
  361. permissions, user and group, size in bytes, and data modification time.
  362. Some archives also record the file names in each archived directory, as
  363. well as other file and directory information.) You can use @command{tar}
  364. to @dfn{create} a new archive in a specified directory.
  365. @cindex member
  366. @cindex archive member
  367. @cindex file name
  368. @cindex member name
  369. The files inside an archive are called @dfn{members}. Within this
  370. manual, we use the term @dfn{file} to refer only to files accessible in
  371. the normal ways (by @command{ls}, @command{cat}, and so forth), and the term
  372. @dfn{member} to refer only to the members of an archive. Similarly, a
  373. @dfn{file name} is the name of a file, as it resides in the file system,
  374. and a @dfn{member name} is the name of an archive member within the
  375. archive.
  376. @cindex extraction
  377. @cindex unpacking
  378. The term @dfn{extraction} refers to the process of copying an archive
  379. member (or multiple members) into a file in the file system. Extracting
  380. all the members of an archive is often called @dfn{extracting the
  381. archive}. The term @dfn{unpack} can also be used to refer to the
  382. extraction of many or all the members of an archive. Extracting an
  383. archive does not destroy the archive's structure, just as creating an
  384. archive does not destroy the copies of the files that exist outside of
  385. the archive. You may also @dfn{list} the members in a given archive
  386. (this is often thought of as ``printing'' them to the standard output,
  387. or the command line), or @dfn{append} members to a pre-existing archive.
  388. All of these operations can be performed using @command{tar}.
  389. @node What tar Does
  390. @section What @command{tar} Does
  391. @cindex tar
  392. The @command{tar} program provides the ability to create @command{tar}
  393. archives, as well as various other kinds of manipulation. For example,
  394. you can use @command{tar} on previously created archives to extract files,
  395. to store additional files, or to update or list files which were already
  396. stored.
  397. Initially, @command{tar} archives were used to store files conveniently on
  398. magnetic tape. The name @command{tar} comes from this use; it stands for
  399. @code{t}ape @code{ar}chiver. Despite the utility's name, @command{tar} can
  400. direct its output to available devices, files, or other programs (using
  401. pipes). @command{tar} may even access remote devices or files (as archives).
  402. You can use @command{tar} archives in many ways. We want to stress a few
  403. of them: storage, backup, and transportation.
  404. @FIXME{the following table entries need a bit of work.}
  405. @table @asis
  406. @item Storage
  407. Often, @command{tar} archives are used to store related files for
  408. convenient file transfer over a network. For example, the
  409. @acronym{GNU} Project distributes its software bundled into
  410. @command{tar} archives, so that all the files relating to a particular
  411. program (or set of related programs) can be transferred as a single
  412. unit.
  413. A magnetic tape can store several files in sequence. However, the tape
  414. has no names for these files; it only knows their relative position on
  415. the tape. One way to store several files on one tape and retain their
  416. names is by creating a @command{tar} archive. Even when the basic transfer
  417. mechanism can keep track of names, as FTP can, the nuisance of handling
  418. multiple files, directories, and multiple links makes @command{tar}
  419. archives useful.
  420. Archive files are also used for long-term storage. You can think of
  421. this as transportation from the present into the future. (It is a
  422. science-fiction idiom that you can move through time as well as in
  423. space; the idea here is that @command{tar} can be used to move archives in
  424. all dimensions, even time!)
  425. @item Backup
  426. Because the archive created by @command{tar} is capable of preserving
  427. file information and directory structure, @command{tar} is commonly
  428. used for performing full and incremental backups of disks. A backup
  429. puts a collection of files (possibly pertaining to many users and
  430. projects) together on a disk or a tape. This guards against
  431. accidental destruction of the information in those files.
  432. @GNUTAR{} has special features that allow it to be
  433. used to make incremental and full dumps of all the files in a
  434. file system.
  435. @item Transportation
  436. You can create an archive on one system, transfer it to another system,
  437. and extract the contents there. This allows you to transport a group of
  438. files from one system to another.
  439. @end table
  440. @node Naming tar Archives
  441. @section How @command{tar} Archives are Named
  442. Conventionally, @command{tar} archives are given names ending with
  443. @samp{.tar}. This is not necessary for @command{tar} to operate properly,
  444. but this manual follows that convention in order to accustom readers to
  445. it and to make examples more clear.
  446. @cindex tar file
  447. @cindex entry
  448. @cindex tar entry
  449. Often, people refer to @command{tar} archives as ``@command{tar} files,'' and
  450. archive members as ``files'' or ``entries''. For people familiar with
  451. the operation of @command{tar}, this causes no difficulty. However, in
  452. this manual, we consistently refer to ``archives'' and ``archive
  453. members'' to make learning to use @command{tar} easier for novice users.
  454. @node Authors
  455. @section @GNUTAR{} Authors
  456. @GNUTAR{} was originally written by John Gilmore,
  457. and modified by many people. The @acronym{GNU} enhancements were
  458. written by Jay Fenlason, then Joy Kendall, and the whole package has
  459. been further maintained by Thomas Bushnell, n/BSG, Fran@,{c}ois
  460. Pinard, Paul Eggert, and finally Sergey Poznyakoff with the help of
  461. numerous and kind users.
  462. We wish to stress that @command{tar} is a collective work, and owes much to
  463. all those people who reported problems, offered solutions and other
  464. insights, or shared their thoughts and suggestions. An impressive, yet
  465. partial list of those contributors can be found in the @file{THANKS}
  466. file from the @GNUTAR{} distribution.
  467. @FIXME{i want all of these names mentioned, Absolutely. BUT, i'm not
  468. sure i want to spell out the history in this detail, at least not for
  469. the printed book. i'm just not sure it needs to be said this way.
  470. i'll think about it.}
  471. @FIXME{History is more important, and surely more interesting, than
  472. actual names. Quoting names without history would be meaningless. FP}
  473. Jay Fenlason put together a draft of a @GNUTAR{}
  474. manual, borrowing notes from the original man page from John Gilmore.
  475. This was withdrawn in version 1.11. Thomas Bushnell, n/BSG and Amy
  476. Gorin worked on a tutorial and manual for @GNUTAR{}.
  477. Fran@,{c}ois Pinard put version 1.11.8 of the manual together by
  478. taking information from all these sources and merging them. Melissa
  479. Weisshaus finally edited and redesigned the book to create version
  480. 1.12. The book for versions from 1.14 up to @value{VERSION} were edited
  481. by the current maintainer, Sergey Poznyakoff.
  482. For version 1.12, Daniel Hagerty contributed a great deal of technical
  483. consulting. In particular, he is the primary author of @ref{Backups}.
  484. In July, 2003 @GNUTAR{} was put on CVS at savannah.gnu.org
  485. (see @url{http://savannah.gnu.org/projects/tar}), and
  486. active development and maintenance work has started
  487. again. Currently @GNUTAR{} is being maintained by Paul Eggert, Sergey
  488. Poznyakoff and Jeff Bailey.
  489. Support for @acronym{POSIX} archives was added by Sergey Poznyakoff.
  490. @node Reports
  491. @section Reporting bugs or suggestions
  492. @cindex bug reports
  493. @cindex reporting bugs
  494. If you find problems or have suggestions about this program or manual,
  495. please report them to @file{bug-tar@@gnu.org}.
  496. When reporting a bug, please be sure to include as much detail as
  497. possible, in order to reproduce it. @FIXME{Be more specific, I'd
  498. like to make this node as detailed as 'Bug reporting' node in Emacs
  499. manual}.
  500. @node Tutorial
  501. @chapter Tutorial Introduction to @command{tar}
  502. This chapter guides you through some basic examples of three @command{tar}
  503. operations: @option{--create}, @option{--list}, and @option{--extract}. If
  504. you already know how to use some other version of @command{tar}, then you
  505. may not need to read this chapter. This chapter omits most complicated
  506. details about how @command{tar} works.
  507. @menu
  508. * assumptions::
  509. * stylistic conventions::
  510. * basic tar options:: Basic @command{tar} Operations and Options
  511. * frequent operations::
  512. * Two Frequent Options::
  513. * create:: How to Create Archives
  514. * list:: How to List Archives
  515. * extract:: How to Extract Members from an Archive
  516. * going further::
  517. @end menu
  518. @node assumptions
  519. @section Assumptions this Tutorial Makes
  520. This chapter is paced to allow beginners to learn about @command{tar}
  521. slowly. At the same time, we will try to cover all the basic aspects of
  522. these three operations. In order to accomplish both of these tasks, we
  523. have made certain assumptions about your knowledge before reading this
  524. manual, and the hardware you will be using:
  525. @itemize @bullet
  526. @item
  527. Before you start to work through this tutorial, you should understand
  528. what the terms ``archive'' and ``archive member'' mean
  529. (@pxref{Definitions}). In addition, you should understand something
  530. about how Unix-type operating systems work, and you should know how to
  531. use some basic utilities. For example, you should know how to create,
  532. list, copy, rename, edit, and delete files and directories; how to
  533. change between directories; and how to figure out where you are in the
  534. file system. You should have some basic understanding of directory
  535. structure and how files are named according to which directory they are
  536. in. You should understand concepts such as standard output and standard
  537. input, what various definitions of the term @samp{argument} mean, and the
  538. differences between relative and absolute file names. @FIXME{and what
  539. else?}
  540. @item
  541. This manual assumes that you are working from your own home directory
  542. (unless we state otherwise). In this tutorial, you will create a
  543. directory to practice @command{tar} commands in. When we show file names,
  544. we will assume that those names are relative to your home directory.
  545. For example, my home directory is @file{/home/fsf/melissa}. All of
  546. my examples are in a subdirectory of the directory named by that file
  547. name; the subdirectory is called @file{practice}.
  548. @item
  549. In general, we show examples of archives which exist on (or can be
  550. written to, or worked with from) a directory on a hard disk. In most
  551. cases, you could write those archives to, or work with them on any other
  552. device, such as a tape drive. However, some of the later examples in
  553. the tutorial and next chapter will not work on tape drives.
  554. Additionally, working with tapes is much more complicated than working
  555. with hard disks. For these reasons, the tutorial does not cover working
  556. with tape drives. @xref{Media}, for complete information on using
  557. @command{tar} archives with tape drives.
  558. @FIXME{this is a cop out. need to add some simple tape drive info.}
  559. @end itemize
  560. @node stylistic conventions
  561. @section Stylistic Conventions
  562. In the examples, @samp{$} represents a typical shell prompt. It
  563. precedes lines you should type; to make this more clear, those lines are
  564. shown in @kbd{this font}, as opposed to lines which represent the
  565. computer's response; those lines are shown in @code{this font}, or
  566. sometimes @samp{like this}.
  567. @c When we have lines which are too long to be
  568. @c displayed in any other way, we will show them like this:
  569. @node basic tar options
  570. @section Basic @command{tar} Operations and Options
  571. @command{tar} can take a wide variety of arguments which specify and define
  572. the actions it will have on the particular set of files or the archive.
  573. The main types of arguments to @command{tar} fall into one of two classes:
  574. operations, and options.
  575. Some arguments fall into a class called @dfn{operations}; exactly one of
  576. these is both allowed and required for any instance of using @command{tar};
  577. you may @emph{not} specify more than one. People sometimes speak of
  578. @dfn{operating modes}. You are in a particular operating mode when you
  579. have specified the operation which specifies it; there are eight
  580. operations in total, and thus there are eight operating modes.
  581. The other arguments fall into the class known as @dfn{options}. You are
  582. not required to specify any options, and you are allowed to specify more
  583. than one at a time (depending on the way you are using @command{tar} at
  584. that time). Some options are used so frequently, and are so useful for
  585. helping you type commands more carefully that they are effectively
  586. ``required''. We will discuss them in this chapter.
  587. You can write most of the @command{tar} operations and options in any
  588. of three forms: long (mnemonic) form, short form, and old style. Some
  589. of the operations and options have no short or ``old'' forms; however,
  590. the operations and options which we will cover in this tutorial have
  591. corresponding abbreviations. We will indicate those abbreviations
  592. appropriately to get you used to seeing them. (Note that the ``old
  593. style'' option forms exist in @GNUTAR{} for compatibility with Unix
  594. @command{tar}. In this book we present a full discussion of this way
  595. of writing options and operations (@pxref{Old Options}), and we discuss
  596. the other two styles of writing options (@xref{Long Options}, and
  597. @pxref{Short Options}).
  598. In the examples and in the text of this tutorial, we usually use the
  599. long forms of operations and options; but the ``short'' forms produce
  600. the same result and can make typing long @command{tar} commands easier.
  601. For example, instead of typing
  602. @smallexample
  603. @kbd{tar --create --verbose --file=afiles.tar apple angst aspic}
  604. @end smallexample
  605. @noindent
  606. you can type
  607. @smallexample
  608. @kbd{tar -c -v -f afiles.tar apple angst aspic}
  609. @end smallexample
  610. @noindent
  611. or even
  612. @smallexample
  613. @kbd{tar -cvf afiles.tar apple angst aspic}
  614. @end smallexample
  615. @noindent
  616. For more information on option syntax, see @ref{Advanced tar}. In
  617. discussions in the text, when we name an option by its long form, we
  618. also give the corresponding short option in parentheses.
  619. The term, ``option'', can be confusing at times, since ``operations''
  620. are often lumped in with the actual, @emph{optional} ``options'' in certain
  621. general class statements. For example, we just talked about ``short and
  622. long forms of options and operations''. However, experienced @command{tar}
  623. users often refer to these by shorthand terms such as, ``short and long
  624. options''. This term assumes that the ``operations'' are included, also.
  625. Context will help you determine which definition of ``options'' to use.
  626. Similarly, the term ``command'' can be confusing, as it is often used in
  627. two different ways. People sometimes refer to @command{tar} ``commands''.
  628. A @command{tar} @dfn{command} is the entire command line of user input
  629. which tells @command{tar} what to do --- including the operation, options,
  630. and any arguments (file names, pipes, other commands, etc.). However,
  631. you will also sometimes hear the term ``the @command{tar} command''. When
  632. the word ``command'' is used specifically like this, a person is usually
  633. referring to the @command{tar} @emph{operation}, not the whole line.
  634. Again, use context to figure out which of the meanings the speaker
  635. intends.
  636. @node frequent operations
  637. @section The Three Most Frequently Used Operations
  638. Here are the three most frequently used operations (both short and long
  639. forms), as well as a brief description of their meanings. The rest of
  640. this chapter will cover how to use these operations in detail. We will
  641. present the rest of the operations in the next chapter.
  642. @table @option
  643. @item --create
  644. @itemx -c
  645. Create a new @command{tar} archive.
  646. @item --list
  647. @itemx -t
  648. List the contents of an archive.
  649. @item --extract
  650. @itemx -x
  651. Extract one or more members from an archive.
  652. @end table
  653. @node Two Frequent Options
  654. @section Two Frequently Used Options
  655. To understand how to run @command{tar} in the three operating modes listed
  656. previously, you also need to understand how to use two of the options to
  657. @command{tar}: @option{--file} (which takes an archive file as an argument)
  658. and @option{--verbose}. (You are usually not @emph{required} to specify
  659. either of these options when you run @command{tar}, but they can be very
  660. useful in making things more clear and helping you avoid errors.)
  661. @menu
  662. * file tutorial::
  663. * verbose tutorial::
  664. * help tutorial::
  665. @end menu
  666. @node file tutorial
  667. @unnumberedsubsec The @option{--file} Option
  668. @table @option
  669. @xopindex{file, tutorial}
  670. @item --file=@var{archive-name}
  671. @itemx -f @var{archive-name}
  672. Specify the name of an archive file.
  673. @end table
  674. You can specify an argument for the @option{--file=@var{archive-name}} (@option{-f @var{archive-name}}) option whenever you
  675. use @command{tar}; this option determines the name of the archive file
  676. that @command{tar} will work on.
  677. @vrindex TAPE
  678. If you don't specify this argument, then @command{tar} will examine
  679. the environment variable @env{TAPE}. If it is set, its value will be
  680. used as the archive name. Otherwise, @command{tar} will use the
  681. default archive, determined at the compile time. Usually it is
  682. standard output or some physical tape drive attached to your machine
  683. (you can verify what the default is by running @kbd{tar
  684. --show-defaults}, @pxref{defaults}). If there is no tape drive
  685. attached, or the default is not meaningful, then @command{tar} will
  686. print an error message. The error message might look roughly like one
  687. of the following:
  688. @smallexample
  689. tar: can't open /dev/rmt8 : No such device or address
  690. tar: can't open /dev/rsmt0 : I/O error
  691. @end smallexample
  692. @noindent
  693. To avoid confusion, we recommend that you always specify an archive file
  694. name by using @option{--file=@var{archive-name}} (@option{-f @var{archive-name}}) when writing your @command{tar} commands.
  695. For more information on using the @option{--file=@var{archive-name}} (@option{-f @var{archive-name}}) option, see
  696. @ref{file}.
  697. @node verbose tutorial
  698. @unnumberedsubsec The @option{--verbose} Option
  699. @table @option
  700. @xopindex{verbose, introduced}
  701. @item --verbose
  702. @itemx -v
  703. Show the files being worked on as @command{tar} is running.
  704. @end table
  705. @option{--verbose} (@option{-v}) shows details about the results of running
  706. @command{tar}. This can be especially useful when the results might not be
  707. obvious. For example, if you want to see the progress of @command{tar} as
  708. it writes files into the archive, you can use the @option{--verbose}
  709. option. In the beginning, you may find it useful to use
  710. @option{--verbose} at all times; when you are more accustomed to
  711. @command{tar}, you will likely want to use it at certain times but not at
  712. others. We will use @option{--verbose} at times to help make something
  713. clear, and we will give many examples both using and not using
  714. @option{--verbose} to show the differences.
  715. Each instance of @option{--verbose} on the command line increases the
  716. verbosity level by one, so if you need more details on the output,
  717. specify it twice.
  718. When reading archives (@option{--list}, @option{--extract},
  719. @option{--diff}), @command{tar} by default prints only the names of
  720. the members being extracted. Using @option{--verbose} will show a full,
  721. @command{ls} style member listing.
  722. In contrast, when writing archives (@option{--create}, @option{--append},
  723. @option{--update}), @command{tar} does not print file names by
  724. default. So, a single @option{--verbose} option shows the file names
  725. being added to the archive, while two @option{--verbose} options
  726. enable the full listing.
  727. For example, to create an archive in verbose mode:
  728. @smallexample
  729. $ @kbd{tar -cvf afiles.tar apple angst aspic}
  730. apple
  731. angst
  732. aspic
  733. @end smallexample
  734. @noindent
  735. Creating the same archive with the verbosity level 2 could give:
  736. @smallexample
  737. $ @kbd{tar -cvvf afiles.tar apple angst aspic}
  738. -rw-r--r-- gray/staff 62373 2006-06-09 12:06 apple
  739. -rw-r--r-- gray/staff 11481 2006-06-09 12:06 angst
  740. -rw-r--r-- gray/staff 23152 2006-06-09 12:06 aspic
  741. @end smallexample
  742. @noindent
  743. This works equally well using short or long forms of options. Using
  744. long forms, you would simply write out the mnemonic form of the option
  745. twice, like this:
  746. @smallexample
  747. $ @kbd{tar --create --verbose --verbose @dots{}}
  748. @end smallexample
  749. @noindent
  750. Note that you must double the hyphens properly each time.
  751. Later in the tutorial, we will give examples using @w{@option{--verbose
  752. --verbose}}.
  753. @anchor{verbose member listing}
  754. The full output consists of six fields:
  755. @itemize @bullet
  756. @item File type and permissions in symbolic form.
  757. These are displayed in the same format as the first column of
  758. @command{ls -l} output (@pxref{What information is listed,
  759. format=verbose, Verbose listing, fileutils, GNU file utilities}).
  760. @item Owner name and group separated by a slash character.
  761. If these data are not available (for example, when listing a @samp{v7} format
  762. archive), numeric @acronym{ID} values are printed instead.
  763. @item Size of the file, in bytes.
  764. @item File modification date in ISO 8601 format.
  765. @item File modification time.
  766. @item File name.
  767. If the name contains any special characters (white space, newlines,
  768. etc.) these are displayed in an unambiguous form using so called
  769. @dfn{quoting style}. For the detailed discussion of available styles
  770. and on how to use them, see @ref{quoting styles}.
  771. Depending on the file type, the name can be followed by some
  772. additional information, described in the following table:
  773. @table @samp
  774. @item -> @var{link-name}
  775. The file or archive member is a @dfn{symbolic link} and
  776. @var{link-name} is the name of file it links to.
  777. @item link to @var{link-name}
  778. The file or archive member is a @dfn{hard link} and @var{link-name} is
  779. the name of file it links to.
  780. @item --Long Link--
  781. The archive member is an old GNU format long link. You will normally
  782. not encounter this.
  783. @item --Long Name--
  784. The archive member is an old GNU format long name. You will normally
  785. not encounter this.
  786. @item --Volume Header--
  787. The archive member is a GNU @dfn{volume header} (@pxref{Tape Files}).
  788. @item --Continued at byte @var{n}--
  789. Encountered only at the beginning of a multi-volume archive
  790. (@pxref{Using Multiple Tapes}). This archive member is a continuation
  791. from the previous volume. The number @var{n} gives the offset where
  792. the original file was split.
  793. @item unknown file type @var{c}
  794. An archive member of unknown type. @var{c} is the type character from
  795. the archive header. If you encounter such a message, it means that
  796. either your archive contains proprietary member types @GNUTAR{} is not
  797. able to handle, or the archive is corrupted.
  798. @end table
  799. @end itemize
  800. For example, here is an archive listing containing most of the special
  801. suffixes explained above:
  802. @smallexample
  803. @group
  804. V--------- 0/0 1536 2006-06-09 13:07 MyVolume--Volume Header--
  805. -rw-r--r-- gray/staff 456783 2006-06-09 12:06 aspic--Continued at
  806. byte 32456--
  807. -rw-r--r-- gray/staff 62373 2006-06-09 12:06 apple
  808. lrwxrwxrwx gray/staff 0 2006-06-09 13:01 angst -> apple
  809. -rw-r--r-- gray/staff 35793 2006-06-09 12:06 blues
  810. hrw-r--r-- gray/staff 0 2006-06-09 12:06 music link to blues
  811. @end group
  812. @end smallexample
  813. @smallexample
  814. @end smallexample
  815. @node help tutorial
  816. @unnumberedsubsec Getting Help: Using the @option{--help} Option
  817. @table @option
  818. @opindex help
  819. @item --help
  820. The @option{--help} option to @command{tar} prints out a very brief list of
  821. all operations and option available for the current version of
  822. @command{tar} available on your system.
  823. @end table
  824. @node create
  825. @section How to Create Archives
  826. @UNREVISED
  827. @cindex Creation of the archive
  828. @cindex Archive, creation of
  829. One of the basic operations of @command{tar} is @option{--create} (@option{-c}), which
  830. you use to create a @command{tar} archive. We will explain
  831. @option{--create} first because, in order to learn about the other
  832. operations, you will find it useful to have an archive available to
  833. practice on.
  834. To make this easier, in this section you will first create a directory
  835. containing three files. Then, we will show you how to create an
  836. @emph{archive} (inside the new directory). Both the directory, and
  837. the archive are specifically for you to practice on. The rest of this
  838. chapter and the next chapter will show many examples using this
  839. directory and the files you will create: some of those files may be
  840. other directories and other archives.
  841. The three files you will archive in this example are called
  842. @file{blues}, @file{folk}, and @file{jazz}. The archive is called
  843. @file{collection.tar}.
  844. This section will proceed slowly, detailing how to use @option{--create}
  845. in @code{verbose} mode, and showing examples using both short and long
  846. forms. In the rest of the tutorial, and in the examples in the next
  847. chapter, we will proceed at a slightly quicker pace. This section
  848. moves more slowly to allow beginning users to understand how
  849. @command{tar} works.
  850. @menu
  851. * prepare for examples::
  852. * Creating the archive::
  853. * create verbose::
  854. * short create::
  855. * create dir::
  856. @end menu
  857. @node prepare for examples
  858. @subsection Preparing a Practice Directory for Examples
  859. To follow along with this and future examples, create a new directory
  860. called @file{practice} containing files called @file{blues}, @file{folk}
  861. and @file{jazz}. The files can contain any information you like:
  862. ideally, they should contain information which relates to their names,
  863. and be of different lengths. Our examples assume that @file{practice}
  864. is a subdirectory of your home directory.
  865. Now @command{cd} to the directory named @file{practice}; @file{practice}
  866. is now your @dfn{working directory}. (@emph{Please note}: Although
  867. the full file name of this directory is
  868. @file{/@var{homedir}/practice}, in our examples we will refer to
  869. this directory as @file{practice}; the @var{homedir} is presumed.
  870. In general, you should check that the files to be archived exist where
  871. you think they do (in the working directory) by running @command{ls}.
  872. Because you just created the directory and the files and have changed to
  873. that directory, you probably don't need to do that this time.
  874. It is very important to make sure there isn't already a file in the
  875. working directory with the archive name you intend to use (in this case,
  876. @samp{collection.tar}), or that you don't care about its contents.
  877. Whenever you use @samp{create}, @command{tar} will erase the current
  878. contents of the file named by @option{--file=@var{archive-name}} (@option{-f @var{archive-name}}) if it exists. @command{tar}
  879. will not tell you if you are about to overwrite an archive unless you
  880. specify an option which does this (@pxref{backup}, for the
  881. information on how to do so). To add files to an existing archive,
  882. you need to use a different option, such as @option{--append} (@option{-r}); see
  883. @ref{append} for information on how to do this.
  884. @node Creating the archive
  885. @subsection Creating the Archive
  886. @xopindex{create, introduced}
  887. To place the files @file{blues}, @file{folk}, and @file{jazz} into an
  888. archive named @file{collection.tar}, use the following command:
  889. @smallexample
  890. $ @kbd{tar --create --file=collection.tar blues folk jazz}
  891. @end smallexample
  892. The order of the arguments is not very important, @emph{when using long
  893. option forms}. You could also say:
  894. @smallexample
  895. $ @kbd{tar blues --create folk --file=collection.tar jazz}
  896. @end smallexample
  897. @noindent
  898. However, you can see that this order is harder to understand; this is
  899. why we will list the arguments in the order that makes the commands
  900. easiest to understand (and we encourage you to do the same when you use
  901. @command{tar}, to avoid errors).
  902. Note that the sequence
  903. @option{[email protected]} is considered to be @emph{one} argument.
  904. If you substituted any other string of characters for
  905. @kbd{collection.tar}, then that string would become the name of the
  906. archive file you create.
  907. The order of the options becomes more important when you begin to use
  908. short forms. With short forms, if you type commands in the wrong order
  909. (even if you type them correctly in all other ways), you may end up with
  910. results you don't expect. For this reason, it is a good idea to get
  911. into the habit of typing options in the order that makes inherent sense.
  912. @xref{short create}, for more information on this.
  913. In this example, you type the command as shown above: @option{--create}
  914. is the operation which creates the new archive
  915. (@file{collection.tar}), and @option{--file} is the option which lets
  916. you give it the name you chose. The files, @file{blues}, @file{folk},
  917. and @file{jazz}, are now members of the archive, @file{collection.tar}
  918. (they are @dfn{file name arguments} to the @option{--create} operation.
  919. @xref{Choosing}, for the detailed discussion on these.) Now that they are
  920. in the archive, they are called @emph{archive members}, not files.
  921. (@pxref{Definitions,members}).
  922. When you create an archive, you @emph{must} specify which files you
  923. want placed in the archive. If you do not specify any archive
  924. members, @GNUTAR{} will complain.
  925. If you now list the contents of the working directory (@command{ls}), you will
  926. find the archive file listed as well as the files you saw previously:
  927. @smallexample
  928. blues folk jazz collection.tar
  929. @end smallexample
  930. @noindent
  931. Creating the archive @samp{collection.tar} did not destroy the copies of
  932. the files in the directory.
  933. Keep in mind that if you don't indicate an operation, @command{tar} will not
  934. run and will prompt you for one. If you don't name any files, @command{tar}
  935. will complain. You must have write access to the working directory,
  936. or else you will not be able to create an archive in that directory.
  937. @emph{Caution}: Do not attempt to use @option{--create} (@option{-c}) to add files to
  938. an existing archive; it will delete the archive and write a new one.
  939. Use @option{--append} (@option{-r}) instead. @xref{append}.
  940. @node create verbose
  941. @subsection Running @option{--create} with @option{--verbose}
  942. @xopindex{create, using with @option{--verbose}}
  943. @xopindex{verbose, using with @option{--create}}
  944. If you include the @option{--verbose} (@option{-v}) option on the command line,
  945. @command{tar} will list the files it is acting on as it is working. In
  946. verbose mode, the @code{create} example above would appear as:
  947. @smallexample
  948. $ @kbd{tar --create --verbose --file=collection.tar blues folk jazz}
  949. blues
  950. folk
  951. jazz
  952. @end smallexample
  953. This example is just like the example we showed which did not use
  954. @option{--verbose}, except that @command{tar} generated the remaining lines
  955. @iftex
  956. (note the different font styles).
  957. @end iftex
  958. @ifinfo
  959. .
  960. @end ifinfo
  961. In the rest of the examples in this chapter, we will frequently use
  962. @code{verbose} mode so we can show actions or @command{tar} responses that
  963. you would otherwise not see, and which are important for you to
  964. understand.
  965. @node short create
  966. @subsection Short Forms with @samp{create}
  967. As we said before, the @option{--create} (@option{-c}) operation is one of the most
  968. basic uses of @command{tar}, and you will use it countless times.
  969. Eventually, you will probably want to use abbreviated (or ``short'')
  970. forms of options. A full discussion of the three different forms that
  971. options can take appears in @ref{Styles}; for now, here is what the
  972. previous example (including the @option{--verbose} (@option{-v}) option) looks like
  973. using short option forms:
  974. @smallexample
  975. $ @kbd{tar -cvf collection.tar blues folk jazz}
  976. blues
  977. folk
  978. jazz
  979. @end smallexample
  980. @noindent
  981. As you can see, the system responds the same no matter whether you use
  982. long or short option forms.
  983. @FIXME{i don't like how this is worded:} One difference between using
  984. short and long option forms is that, although the exact placement of
  985. arguments following options is no more specific when using short forms,
  986. it is easier to become confused and make a mistake when using short
  987. forms. For example, suppose you attempted the above example in the
  988. following way:
  989. @smallexample
  990. $ @kbd{tar -cfv collection.tar blues folk jazz}
  991. @end smallexample
  992. @noindent
  993. In this case, @command{tar} will make an archive file called @file{v},
  994. containing the files @file{blues}, @file{folk}, and @file{jazz}, because
  995. the @samp{v} is the closest ``file name'' to the @option{-f} option, and
  996. is thus taken to be the chosen archive file name. @command{tar} will try
  997. to add a file called @file{collection.tar} to the @file{v} archive file;
  998. if the file @file{collection.tar} did not already exist, @command{tar} will
  999. report an error indicating that this file does not exist. If the file
  1000. @file{collection.tar} does already exist (e.g., from a previous command
  1001. you may have run), then @command{tar} will add this file to the archive.
  1002. Because the @option{-v} option did not get registered, @command{tar} will not
  1003. run under @samp{verbose} mode, and will not report its progress.
  1004. The end result is that you may be quite confused about what happened,
  1005. and possibly overwrite a file. To illustrate this further, we will show
  1006. you how an example we showed previously would look using short forms.
  1007. This example,
  1008. @smallexample
  1009. $ @kbd{tar blues --create folk --file=collection.tar jazz}
  1010. @end smallexample
  1011. @noindent
  1012. is confusing as it is. When shown using short forms, however, it
  1013. becomes much more so:
  1014. @smallexample
  1015. $ @kbd{tar blues -c folk -f collection.tar jazz}
  1016. @end smallexample
  1017. @noindent
  1018. It would be very easy to put the wrong string of characters
  1019. immediately following the @option{-f}, but doing that could sacrifice
  1020. valuable data.
  1021. For this reason, we recommend that you pay very careful attention to
  1022. the order of options and placement of file and archive names,
  1023. especially when using short option forms. Not having the option name
  1024. written out mnemonically can affect how well you remember which option
  1025. does what, and therefore where different names have to be placed.
  1026. @node create dir
  1027. @subsection Archiving Directories
  1028. @cindex Archiving Directories
  1029. @cindex Directories, Archiving
  1030. You can archive a directory by specifying its directory name as a
  1031. file name argument to @command{tar}. The files in the directory will be
  1032. archived relative to the working directory, and the directory will be
  1033. re-created along with its contents when the archive is extracted.
  1034. To archive a directory, first move to its superior directory. If you
  1035. have followed the previous instructions in this tutorial, you should
  1036. type:
  1037. @smallexample
  1038. $ @kbd{cd ..}
  1039. $
  1040. @end smallexample
  1041. @noindent
  1042. This will put you into the directory which contains @file{practice},
  1043. i.e., your home directory. Once in the superior directory, you can
  1044. specify the subdirectory, @file{practice}, as a file name argument. To
  1045. store @file{practice} in the new archive file @file{music.tar}, type:
  1046. @smallexample
  1047. $ @kbd{tar --create --verbose --file=music.tar practice}
  1048. @end smallexample
  1049. @noindent
  1050. @command{tar} should output:
  1051. @smallexample
  1052. practice/
  1053. practice/blues
  1054. practice/folk
  1055. practice/jazz
  1056. practice/collection.tar
  1057. @end smallexample
  1058. Note that the archive thus created is not in the subdirectory
  1059. @file{practice}, but rather in the current working directory---the
  1060. directory from which @command{tar} was invoked. Before trying to archive a
  1061. directory from its superior directory, you should make sure you have
  1062. write access to the superior directory itself, not only the directory
  1063. you are trying archive with @command{tar}. For example, you will probably
  1064. not be able to store your home directory in an archive by invoking
  1065. @command{tar} from the root directory; @xref{absolute}. (Note
  1066. also that @file{collection.tar}, the original archive file, has itself
  1067. been archived. @command{tar} will accept any file as a file to be
  1068. archived, regardless of its content. When @file{music.tar} is
  1069. extracted, the archive file @file{collection.tar} will be re-written
  1070. into the file system).
  1071. If you give @command{tar} a command such as
  1072. @smallexample
  1073. $ @kbd{tar --create --file=foo.tar .}
  1074. @end smallexample
  1075. @noindent
  1076. @command{tar} will report @samp{tar: ./foo.tar is the archive; not
  1077. dumped}. This happens because @command{tar} creates the archive
  1078. @file{foo.tar} in the current directory before putting any files into
  1079. it. Then, when @command{tar} attempts to add all the files in the
  1080. directory @file{.} to the archive, it notices that the file
  1081. @file{./foo.tar} is the same as the archive @file{foo.tar}, and skips
  1082. it. (It makes no sense to put an archive into itself.) @GNUTAR{}
  1083. will continue in this case, and create the archive
  1084. normally, except for the exclusion of that one file. (@emph{Please
  1085. note:} Other implementations of @command{tar} may not be so clever;
  1086. they will enter an infinite loop when this happens, so you should not
  1087. depend on this behavior unless you are certain you are running
  1088. @GNUTAR{}. In general, it is wise to always place the archive outside
  1089. of the directory being dumped.
  1090. @node list
  1091. @section How to List Archives
  1092. @opindex list
  1093. Frequently, you will find yourself wanting to determine exactly what a
  1094. particular archive contains. You can use the @option{--list}
  1095. (@option{-t}) operation to get the member names as they currently
  1096. appear in the archive, as well as various attributes of the files at
  1097. the time they were archived. For example, you can examine the archive
  1098. @file{collection.tar} that you created in the last section with the
  1099. command,
  1100. @smallexample
  1101. $ @kbd{tar --list --file=collection.tar}
  1102. @end smallexample
  1103. @noindent
  1104. The output of @command{tar} would then be:
  1105. @smallexample
  1106. blues
  1107. folk
  1108. jazz
  1109. @end smallexample
  1110. @noindent
  1111. The archive @file{bfiles.tar} would list as follows:
  1112. @smallexample
  1113. ./birds
  1114. baboon
  1115. ./box
  1116. @end smallexample
  1117. @noindent
  1118. Be sure to use a @option{--file=@var{archive-name}} (@option{-f
  1119. @var{archive-name}}) option just as with @option{--create}
  1120. (@option{-c}) to specify the name of the archive.
  1121. @xopindex{list, using with @option{--verbose}}
  1122. @xopindex{verbose, using with @option{--list}}
  1123. If you use the @option{--verbose} (@option{-v}) option with
  1124. @option{--list}, then @command{tar} will print out a listing
  1125. reminiscent of @w{@samp{ls -l}}, showing owner, file size, and so
  1126. forth. This output is described in detail in @ref{verbose member listing}.
  1127. If you had used @option{--verbose} (@option{-v}) mode, the example
  1128. above would look like:
  1129. @smallexample
  1130. $ @kbd{tar --list --verbose --file=collection.tar folk}
  1131. -rw-r--r-- myself user 62 1990-05-23 10:55 folk
  1132. @end smallexample
  1133. @cindex listing member and file names
  1134. @anchor{listing member and file names}
  1135. It is important to notice that the output of @kbd{tar --list
  1136. --verbose} does not necessarily match that produced by @kbd{tar
  1137. --create --verbose} while creating the archive. It is because
  1138. @GNUTAR{}, unless told explicitly not to do so, removes some directory
  1139. prefixes from file names before storing them in the archive
  1140. (@xref{absolute}, for more information). In other
  1141. words, in verbose mode @GNUTAR{} shows @dfn{file names} when creating
  1142. an archive and @dfn{member names} when listing it. Consider this
  1143. example:
  1144. @smallexample
  1145. @group
  1146. $ @kbd{tar cfv archive /etc/mail}
  1147. tar: Removing leading `/' from member names
  1148. /etc/mail/
  1149. /etc/mail/sendmail.cf
  1150. /etc/mail/aliases
  1151. $ @kbd{tar tf archive}
  1152. etc/mail/
  1153. etc/mail/sendmail.cf
  1154. etc/mail/aliases
  1155. @end group
  1156. @end smallexample
  1157. @opindex show-stored-names
  1158. This default behavior can sometimes be inconvenient. You can force
  1159. @GNUTAR{} show member names when creating archive by supplying
  1160. @option{--show-stored-names} option.
  1161. @table @option
  1162. @item --show-stored-names
  1163. Print member (as opposed to @emph{file}) names when creating the archive.
  1164. @end table
  1165. @cindex File name arguments, using @option{--list} with
  1166. @xopindex{list, using with file name arguments}
  1167. You can specify one or more individual member names as arguments when
  1168. using @samp{list}. In this case, @command{tar} will only list the
  1169. names of members you identify. For example, @w{@kbd{tar --list
  1170. --file=afiles.tar apple}} would only print @file{apple}.
  1171. Because @command{tar} preserves file names, these must be specified as
  1172. they appear in the archive (i.e., relative to the directory from which
  1173. the archive was created). Therefore, it is essential when specifying
  1174. member names to @command{tar} that you give the exact member names.
  1175. For example, @w{@kbd{tar --list --file=bfiles.tar birds}} would produce an
  1176. error message something like @samp{tar: birds: Not found in archive},
  1177. because there is no member named @file{birds}, only one named
  1178. @file{./birds}. While the names @file{birds} and @file{./birds} name
  1179. the same file, @emph{member} names by default are compared verbatim.
  1180. However, @w{@kbd{tar --list --file=bfiles.tar baboon}} would respond
  1181. with @file{baboon}, because this exact member name is in the archive file
  1182. @file{bfiles.tar}. If you are not sure of the exact file name,
  1183. use @dfn{globbing patterns}, for example:
  1184. @smallexample
  1185. $ @kbd{tar --list --file=bfiles.tar --wildcards '*b*'}
  1186. @end smallexample
  1187. @noindent
  1188. will list all members whose name contains @samp{b}. @xref{wildcards},
  1189. for a detailed discussion of globbing patterns and related
  1190. @command{tar} command line options.
  1191. @menu
  1192. * list dir::
  1193. @end menu
  1194. @node list dir
  1195. @unnumberedsubsec Listing the Contents of a Stored Directory
  1196. To get information about the contents of an archived directory,
  1197. use the directory name as a file name argument in conjunction with
  1198. @option{--list} (@option{-t}). To find out file attributes, include the
  1199. @option{--verbose} (@option{-v}) option.
  1200. For example, to find out about files in the directory @file{practice}, in
  1201. the archive file @file{music.tar}, type:
  1202. @smallexample
  1203. $ @kbd{tar --list --verbose --file=music.tar practice}
  1204. @end smallexample
  1205. @command{tar} responds:
  1206. @smallexample
  1207. drwxrwxrwx myself user 0 1990-05-31 21:49 practice/
  1208. -rw-r--r-- myself user 42 1990-05-21 13:29 practice/blues
  1209. -rw-r--r-- myself user 62 1990-05-23 10:55 practice/folk
  1210. -rw-r--r-- myself user 40 1990-05-21 13:30 practice/jazz
  1211. -rw-r--r-- myself user 10240 1990-05-31 21:49 practice/collection.tar
  1212. @end smallexample
  1213. When you use a directory name as a file name argument, @command{tar} acts on
  1214. all the files (including sub-directories) in that directory.
  1215. @node extract
  1216. @section How to Extract Members from an Archive
  1217. @UNREVISED
  1218. @cindex Extraction
  1219. @cindex Retrieving files from an archive
  1220. @cindex Resurrecting files from an archive
  1221. @opindex extract
  1222. Creating an archive is only half the job---there is no point in storing
  1223. files in an archive if you can't retrieve them. The act of retrieving
  1224. members from an archive so they can be used and manipulated as
  1225. unarchived files again is called @dfn{extraction}. To extract files
  1226. from an archive, use the @option{--extract} (@option{--get} or
  1227. @option{-x}) operation. As with @option{--create}, specify the name
  1228. of the archive with @option{--file} (@option{-f}) option. Extracting
  1229. an archive does not modify the archive in any way; you can extract it
  1230. multiple times if you want or need to.
  1231. Using @option{--extract}, you can extract an entire archive, or specific
  1232. files. The files can be directories containing other files, or not. As
  1233. with @option{--create} (@option{-c}) and @option{--list} (@option{-t}), you may use the short or the
  1234. long form of the operation without affecting the performance.
  1235. @menu
  1236. * extracting archives::
  1237. * extracting files::
  1238. * extract dir::
  1239. * extracting untrusted archives::
  1240. * failing commands::
  1241. @end menu
  1242. @node extracting archives
  1243. @subsection Extracting an Entire Archive
  1244. To extract an entire archive, specify the archive file name only, with
  1245. no individual file names as arguments. For example,
  1246. @smallexample
  1247. $ @kbd{tar -xvf collection.tar}
  1248. @end smallexample
  1249. @noindent
  1250. produces this:
  1251. @smallexample
  1252. -rw-r--r-- me user 28 1996-10-18 16:31 jazz
  1253. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  1254. -rw-r--r-- me user 20 1996-09-23 16:44 folk
  1255. @end smallexample
  1256. @node extracting files
  1257. @subsection Extracting Specific Files
  1258. To extract specific archive members, give their exact member names as
  1259. arguments, as printed by @option{--list} (@option{-t}). If you had
  1260. mistakenly deleted one of the files you had placed in the archive
  1261. @file{collection.tar} earlier (say, @file{blues}), you can extract it
  1262. from the archive without changing the archive's structure. Its
  1263. contents will be identical to the original file @file{blues} that you
  1264. deleted.
  1265. First, make sure you are in the @file{practice} directory, and list the
  1266. files in the directory. Now, delete the file, @samp{blues}, and list
  1267. the files in the directory again.
  1268. You can now extract the member @file{blues} from the archive file
  1269. @file{collection.tar} like this:
  1270. @smallexample
  1271. $ @kbd{tar --extract --file=collection.tar blues}
  1272. @end smallexample
  1273. @noindent
  1274. If you list the files in the directory again, you will see that the file
  1275. @file{blues} has been restored, with its original permissions, data
  1276. modification times, and owner.@footnote{This is only accidentally
  1277. true, but not in general. Whereas modification times are always
  1278. restored, in most cases, one has to be root for restoring the owner,
  1279. and use a special option for restoring permissions. Here, it just
  1280. happens that the restoring user is also the owner of the archived
  1281. members, and that the current @code{umask} is compatible with original
  1282. permissions.} (These parameters will be identical to those which
  1283. the file had when you originally placed it in the archive; any changes
  1284. you may have made before deleting the file from the file system,
  1285. however, will @emph{not} have been made to the archive member.) The
  1286. archive file, @samp{collection.tar}, is the same as it was before you
  1287. extracted @samp{blues}. You can confirm this by running @command{tar} with
  1288. @option{--list} (@option{-t}).
  1289. Remember that as with other operations, specifying the exact member
  1290. name is important. @w{@kbd{tar --extract --file=bfiles.tar birds}}
  1291. will fail, because there is no member named @file{birds}. To extract
  1292. the member named @file{./birds}, you must specify @w{@kbd{tar
  1293. --extract --file=bfiles.tar ./birds}}. If you don't remember the
  1294. exact member names, use @option{--list} (@option{-t}) option
  1295. (@pxref{list}). You can also extract those members that match a
  1296. specific @dfn{globbing pattern}. For example, to extract from
  1297. @file{bfiles.tar} all files that begin with @samp{b}, no matter their
  1298. directory prefix, you could type:
  1299. @smallexample
  1300. $ @kbd{tar -x -f bfiles.tar --wildcards --no-anchored 'b*'}
  1301. @end smallexample
  1302. @noindent
  1303. Here, @option{--wildcards} instructs @command{tar} to treat
  1304. command line arguments as globbing patterns and @option{--no-anchored}
  1305. informs it that the patterns apply to member names after any @samp{/}
  1306. delimiter. The use of globbing patterns is discussed in detail in
  1307. @xref{wildcards}.
  1308. You can extract a file to standard output by combining the above options
  1309. with the @option{--to-stdout} (@option{-O}) option (@pxref{Writing to Standard
  1310. Output}).
  1311. If you give the @option{--verbose} option, then @option{--extract}
  1312. will print the names of the archive members as it extracts them.
  1313. @node extract dir
  1314. @subsection Extracting Files that are Directories
  1315. Extracting directories which are members of an archive is similar to
  1316. extracting other files. The main difference to be aware of is that if
  1317. the extracted directory has the same name as any directory already in
  1318. the working directory, then files in the extracted directory will be
  1319. placed into the directory of the same name. Likewise, if there are
  1320. files in the pre-existing directory with the same names as the members
  1321. which you extract, the files from the extracted archive will replace
  1322. the files already in the working directory (and possible
  1323. subdirectories). This will happen regardless of whether or not the
  1324. files in the working directory were more recent than those extracted
  1325. (there exist, however, special options that alter this behavior
  1326. @pxref{Writing}).
  1327. However, if a file was stored with a directory name as part of its file
  1328. name, and that directory does not exist under the working directory when
  1329. the file is extracted, @command{tar} will create the directory.
  1330. We can demonstrate how to use @option{--extract} to extract a directory
  1331. file with an example. Change to the @file{practice} directory if you
  1332. weren't there, and remove the files @file{folk} and @file{jazz}. Then,
  1333. go back to the parent directory and extract the archive
  1334. @file{music.tar}. You may either extract the entire archive, or you may
  1335. extract only the files you just deleted. To extract the entire archive,
  1336. don't give any file names as arguments after the archive name
  1337. @file{music.tar}. To extract only the files you deleted, use the
  1338. following command:
  1339. @smallexample
  1340. $ @kbd{tar -xvf music.tar practice/folk practice/jazz}
  1341. practice/folk
  1342. practice/jazz
  1343. @end smallexample
  1344. @noindent
  1345. If you were to specify two @option{--verbose} (@option{-v}) options, @command{tar}
  1346. would have displayed more detail about the extracted files, as shown
  1347. in the example below:
  1348. @smallexample
  1349. $ @kbd{tar -xvvf music.tar practice/folk practice/jazz}
  1350. -rw-r--r-- me user 28 1996-10-18 16:31 practice/jazz
  1351. -rw-r--r-- me user 20 1996-09-23 16:44 practice/folk
  1352. @end smallexample
  1353. @noindent
  1354. Because you created the directory with @file{practice} as part of the
  1355. file names of each of the files by archiving the @file{practice}
  1356. directory as @file{practice}, you must give @file{practice} as part
  1357. of the file names when you extract those files from the archive.
  1358. @node extracting untrusted archives
  1359. @subsection Extracting Archives from Untrusted Sources
  1360. Extracting files from archives can overwrite files that already exist.
  1361. If you receive an archive from an untrusted source, you should make a
  1362. new directory and extract into that directory, so that you don't have
  1363. to worry about the extraction overwriting one of your existing files.
  1364. For example, if @file{untrusted.tar} came from somewhere else on the
  1365. Internet, and you don't necessarily trust its contents, you can
  1366. extract it as follows:
  1367. @smallexample
  1368. $ @kbd{mkdir newdir}
  1369. $ @kbd{cd newdir}
  1370. $ @kbd{tar -xvf ../untrusted.tar}
  1371. @end smallexample
  1372. It is also a good practice to examine contents of the archive
  1373. before extracting it, using @option{--list} (@option{-t}) option, possibly combined
  1374. with @option{--verbose} (@option{-v}).
  1375. @node failing commands
  1376. @subsection Commands That Will Fail
  1377. Here are some sample commands you might try which will not work, and why
  1378. they won't work.
  1379. If you try to use this command,
  1380. @smallexample
  1381. $ @kbd{tar -xvf music.tar folk jazz}
  1382. @end smallexample
  1383. @noindent
  1384. you will get the following response:
  1385. @smallexample
  1386. tar: folk: Not found in archive
  1387. tar: jazz: Not found in archive
  1388. $
  1389. @end smallexample
  1390. @noindent
  1391. This is because these files were not originally @emph{in} the parent
  1392. directory @file{..}, where the archive is located; they were in the
  1393. @file{practice} directory, and their file names reflect this:
  1394. @smallexample
  1395. $ @kbd{tar -tvf music.tar}
  1396. practice/folk
  1397. practice/jazz
  1398. practice/rock
  1399. @end smallexample
  1400. @FIXME{make sure the above works when going through the examples in
  1401. order...}
  1402. @noindent
  1403. Likewise, if you try to use this command,
  1404. @smallexample
  1405. $ @kbd{tar -tvf music.tar folk jazz}
  1406. @end smallexample
  1407. @noindent
  1408. you would get a similar response. Members with those names are not in the
  1409. archive. You must use the correct member names, or wildcards, in order
  1410. to extract the files from the archive.
  1411. If you have forgotten the correct names of the files in the archive,
  1412. use @w{@kbd{tar --list --verbose}} to list them correctly.
  1413. @FIXME{more examples, here? hag thinks it's a good idea.}
  1414. @node going further
  1415. @section Going Further Ahead in this Manual
  1416. @UNREVISED
  1417. @FIXME{need to write up a node here about the things that are going to
  1418. be in the rest of the manual.}
  1419. @node tar invocation
  1420. @chapter Invoking @GNUTAR{}
  1421. @UNREVISED
  1422. This chapter is about how one invokes the @GNUTAR{}
  1423. command, from the command synopsis (@pxref{Synopsis}). There are
  1424. numerous options, and many styles for writing them. One mandatory
  1425. option specifies the operation @command{tar} should perform
  1426. (@pxref{Operation Summary}), other options are meant to detail how
  1427. this operation should be performed (@pxref{Option Summary}).
  1428. Non-option arguments are not always interpreted the same way,
  1429. depending on what the operation is.
  1430. You will find in this chapter everything about option styles and rules for
  1431. writing them (@pxref{Styles}). On the other hand, operations and options
  1432. are fully described elsewhere, in other chapters. Here, you will find
  1433. only synthetic descriptions for operations and options, together with
  1434. pointers to other parts of the @command{tar} manual.
  1435. Some options are so special they are fully described right in this
  1436. chapter. They have the effect of inhibiting the normal operation of
  1437. @command{tar} or else, they globally alter the amount of feedback the user
  1438. receives about what is going on. These are the @option{--help} and
  1439. @option{--version} (@pxref{help}), @option{--verbose} (@pxref{verbose})
  1440. and @option{--interactive} options (@pxref{interactive}).
  1441. @menu
  1442. * Synopsis::
  1443. * using tar options::
  1444. * Styles::
  1445. * All Options::
  1446. * help::
  1447. * defaults::
  1448. * verbose::
  1449. * checkpoints::
  1450. * interactive::
  1451. @end menu
  1452. @node Synopsis
  1453. @section General Synopsis of @command{tar}
  1454. The @GNUTAR{} program is invoked as either one of:
  1455. @smallexample
  1456. @kbd{tar @var{option}@dots{} [@var{name}]@dots{}}
  1457. @kbd{tar @var{letter}@dots{} [@var{argument}]@dots{} [@var{option}]@dots{} [@var{name}]@dots{}}
  1458. @end smallexample
  1459. The second form is for when old options are being used.
  1460. You can use @command{tar} to store files in an archive, to extract them from
  1461. an archive, and to do other types of archive manipulation. The primary
  1462. argument to @command{tar}, which is called the @dfn{operation}, specifies
  1463. which action to take. The other arguments to @command{tar} are either
  1464. @dfn{options}, which change the way @command{tar} performs an operation,
  1465. or file names or archive members, which specify the files or members
  1466. @command{tar} is to act on.
  1467. You can actually type in arguments in any order, even if in this manual
  1468. the options always precede the other arguments, to make examples easier
  1469. to understand. Further, the option stating the main operation mode
  1470. (the @command{tar} main command) is usually given first.
  1471. Each @var{name} in the synopsis above is interpreted as an archive member
  1472. name when the main command is one of @option{--compare}
  1473. (@option{--diff}, @option{-d}), @option{--delete}, @option{--extract}
  1474. (@option{--get}, @option{-x}), @option{--list} (@option{-t}) or
  1475. @option{--update} (@option{-u}). When naming archive members, you
  1476. must give the exact name of the member in the archive, as it is
  1477. printed by @option{--list}. For @option{--append} (@option{-r}) and
  1478. @option{--create} (@option{-c}), these @var{name} arguments specify
  1479. the names of either files or directory hierarchies to place in the archive.
  1480. These files or hierarchies should already exist in the file system,
  1481. prior to the execution of the @command{tar} command.
  1482. @command{tar} interprets relative file names as being relative to the
  1483. working directory. @command{tar} will make all file names relative
  1484. (by removing leading slashes when archiving or restoring files),
  1485. unless you specify otherwise (using the @option{--absolute-names}
  1486. option). @xref{absolute}, for more information about
  1487. @option{--absolute-names}.
  1488. If you give the name of a directory as either a file name or a member
  1489. name, then @command{tar} acts recursively on all the files and directories
  1490. beneath that directory. For example, the name @file{/} identifies all
  1491. the files in the file system to @command{tar}.
  1492. The distinction between file names and archive member names is especially
  1493. important when shell globbing is used, and sometimes a source of confusion
  1494. for newcomers. @xref{wildcards}, for more information about globbing.
  1495. The problem is that shells may only glob using existing files in the
  1496. file system. Only @command{tar} itself may glob on archive members, so when
  1497. needed, you must ensure that wildcard characters reach @command{tar} without
  1498. being interpreted by the shell first. Using a backslash before @samp{*}
  1499. or @samp{?}, or putting the whole argument between quotes, is usually
  1500. sufficient for this.
  1501. Even if @var{name}s are often specified on the command line, they
  1502. can also be read from a text file in the file system, using the
  1503. @option{--files-from=@var{file-of-names}} (@option{-T @var{file-of-names}}) option.
  1504. If you don't use any file name arguments, @option{--append} (@option{-r}),
  1505. @option{--delete} and @option{--concatenate} (@option{--catenate},
  1506. @option{-A}) will do nothing, while @option{--create} (@option{-c})
  1507. will usually yield a diagnostic and inhibit @command{tar} execution.
  1508. The other operations of @command{tar} (@option{--list},
  1509. @option{--extract}, @option{--compare}, and @option{--update})
  1510. will act on the entire contents of the archive.
  1511. @cindex exit status
  1512. @cindex return status
  1513. Besides successful exits, @GNUTAR{} may fail for
  1514. many reasons. Some reasons correspond to bad usage, that is, when the
  1515. @command{tar} command is improperly written. Errors may be
  1516. encountered later, while encountering an error processing the archive
  1517. or the files. Some errors are recoverable, in which case the failure
  1518. is delayed until @command{tar} has completed all its work. Some
  1519. errors are such that it would not meaningful, or at least risky, to
  1520. continue processing: @command{tar} then aborts processing immediately.
  1521. All abnormal exits, whether immediate or delayed, should always be
  1522. clearly diagnosed on @code{stderr}, after a line stating the nature of
  1523. the error.
  1524. Possible exit codes of @GNUTAR{} are summarized in the following
  1525. table:
  1526. @table @asis
  1527. @item 0
  1528. @samp{Successful termination}.
  1529. @item 1
  1530. @samp{Some files differ}. If tar was invoked with @option{--compare}
  1531. (@option{--diff}, @option{-d}) command line option, this means that
  1532. some files in the archive differ from their disk counterparts
  1533. (@pxref{compare}). If tar was given @option{--create},
  1534. @option{--append} or @option{--update} option, this exit code means
  1535. that some files were changed while being archived and so the resulting
  1536. archive does not contain the exact copy of the file set.
  1537. @item 2
  1538. @samp{Fatal error}. This means that some fatal, unrecoverable error
  1539. occurred.
  1540. @end table
  1541. If @command{tar} has invoked a subprocess and that subprocess exited with a
  1542. nonzero exit code, @command{tar} exits with that code as well.
  1543. This can happen, for example, if @command{tar} was given some
  1544. compression option (@pxref{gzip}) and the external compressor program
  1545. failed. Another example is @command{rmt} failure during backup to the
  1546. remote device (@pxref{Remote Tape Server}).
  1547. @node using tar options
  1548. @section Using @command{tar} Options
  1549. @GNUTAR{} has a total of eight operating modes which
  1550. allow you to perform a variety of tasks. You are required to choose
  1551. one operating mode each time you employ the @command{tar} program by
  1552. specifying one, and only one operation as an argument to the
  1553. @command{tar} command (two lists of four operations each may be found
  1554. at @ref{frequent operations} and @ref{Operations}). Depending on
  1555. circumstances, you may also wish to customize how the chosen operating
  1556. mode behaves. For example, you may wish to change the way the output
  1557. looks, or the format of the files that you wish to archive may require
  1558. you to do something special in order to make the archive look right.
  1559. You can customize and control @command{tar}'s performance by running
  1560. @command{tar} with one or more options (such as @option{--verbose}
  1561. (@option{-v}), which we used in the tutorial). As we said in the
  1562. tutorial, @dfn{options} are arguments to @command{tar} which are (as
  1563. their name suggests) optional. Depending on the operating mode, you
  1564. may specify one or more options. Different options will have different
  1565. effects, but in general they all change details of the operation, such
  1566. as archive format, archive name, or level of user interaction. Some
  1567. options make sense with all operating modes, while others are
  1568. meaningful only with particular modes. You will likely use some
  1569. options frequently, while you will only use others infrequently, or
  1570. not at all. (A full list of options is available in @pxref{All Options}.)
  1571. @vrindex TAR_OPTIONS, environment variable
  1572. @anchor{TAR_OPTIONS}
  1573. The @env{TAR_OPTIONS} environment variable specifies default options to
  1574. be placed in front of any explicit options. For example, if
  1575. @code{TAR_OPTIONS} is @samp{-v --unlink-first}, @command{tar} behaves as
  1576. if the two options @option{-v} and @option{--unlink-first} had been
  1577. specified before any explicit options. Option specifications are
  1578. separated by whitespace. A backslash escapes the next character, so it
  1579. can be used to specify an option containing whitespace or a backslash.
  1580. Note that @command{tar} options are case sensitive. For example, the
  1581. options @option{-T} and @option{-t} are different; the first requires an
  1582. argument for stating the name of a file providing a list of @var{name}s,
  1583. while the second does not require an argument and is another way to
  1584. write @option{--list} (@option{-t}).
  1585. In addition to the eight operations, there are many options to
  1586. @command{tar}, and three different styles for writing both: long (mnemonic)
  1587. form, short form, and old style. These styles are discussed below.
  1588. Both the options and the operations can be written in any of these three
  1589. styles.
  1590. @FIXME{menu at end of this node. need to think of an actual outline
  1591. for this chapter; probably do that after stuff from chapter 4 is
  1592. incorporated.}
  1593. @node Styles
  1594. @section The Three Option Styles
  1595. There are three styles for writing operations and options to the command
  1596. line invoking @command{tar}. The different styles were developed at
  1597. different times during the history of @command{tar}. These styles will be
  1598. presented below, from the most recent to the oldest.
  1599. Some options must take an argument. (For example, @option{--file}
  1600. (@option{-f})) takes the name of an archive file as an argument. If
  1601. you do not supply an archive file name, @command{tar} will use a
  1602. default, but this can be confusing; thus, we recommend that you always
  1603. supply a specific archive file name.) Where you @emph{place} the
  1604. arguments generally depends on which style of options you choose. We
  1605. will detail specific information relevant to each option style in the
  1606. sections on the different option styles, below. The differences are
  1607. subtle, yet can often be very important; incorrect option placement
  1608. can cause you to overwrite a number of important files. We urge you
  1609. to note these differences, and only use the option style(s) which
  1610. makes the most sense to you until you feel comfortable with the others.
  1611. Some options @emph{may} take an argument. Such options may have at
  1612. most long and short forms, they do not have old style equivalent. The
  1613. rules for specifying an argument for such options are stricter than
  1614. those for specifying mandatory arguments. Please, pay special
  1615. attention to them.
  1616. @menu
  1617. * Long Options:: Long Option Style
  1618. * Short Options:: Short Option Style
  1619. * Old Options:: Old Option Style
  1620. * Mixing:: Mixing Option Styles
  1621. @end menu
  1622. @node Long Options
  1623. @subsection Long Option Style
  1624. Each option has at least one @dfn{long} (or @dfn{mnemonic}) name starting with two
  1625. dashes in a row, e.g., @option{--list}. The long names are more clear than
  1626. their corresponding short or old names. It sometimes happens that a
  1627. single long option has many different names which are
  1628. synonymous, such as @option{--compare} and @option{--diff}. In addition,
  1629. long option names can be given unique abbreviations. For example,
  1630. @option{--cre} can be used in place of @option{--create} because there is no
  1631. other long option which begins with @samp{cre}. (One way to find
  1632. this out is by trying it and seeing what happens; if a particular
  1633. abbreviation could represent more than one option, @command{tar} will tell
  1634. you that that abbreviation is ambiguous and you'll know that that
  1635. abbreviation won't work. You may also choose to run @samp{tar --help}
  1636. to see a list of options. Be aware that if you run @command{tar} with a
  1637. unique abbreviation for the long name of an option you didn't want to
  1638. use, you are stuck; @command{tar} will perform the command as ordered.)
  1639. Long options are meant to be obvious and easy to remember, and their
  1640. meanings are generally easier to discern than those of their
  1641. corresponding short options (see below). For example:
  1642. @smallexample
  1643. $ @kbd{tar --create --verbose --blocking-factor=20 --file=/dev/rmt0}
  1644. @end smallexample
  1645. @noindent
  1646. gives a fairly good set of hints about what the command does, even
  1647. for those not fully acquainted with @command{tar}.
  1648. Long options which require arguments take those arguments
  1649. immediately following the option name. There are two ways of
  1650. specifying a mandatory argument. It can be separated from the
  1651. option name either by an equal sign, or by any amount of
  1652. white space characters. For example, the @option{--file} option (which
  1653. tells the name of the @command{tar} archive) is given a file such as
  1654. @file{archive.tar} as argument by using any of the following notations:
  1655. @option{--file=archive.tar} or @option{--file archive.tar}.
  1656. In contrast, optional arguments must always be introduced using
  1657. an equal sign. For example, the @option{--backup} option takes
  1658. an optional argument specifying backup type. It must be used
  1659. as @option{--backup=@var{backup-type}}.
  1660. @node Short Options
  1661. @subsection Short Option Style
  1662. Most options also have a @dfn{short option} name. Short options start with
  1663. a single dash, and are followed by a single character, e.g., @option{-t}
  1664. (which is equivalent to @option{--list}). The forms are absolutely
  1665. identical in function; they are interchangeable.
  1666. The short option names are faster to type than long option names.
  1667. Short options which require arguments take their arguments immediately
  1668. following the option, usually separated by white space. It is also
  1669. possible to stick the argument right after the short option name, using
  1670. no intervening space. For example, you might write @w{@option{-f
  1671. archive.tar}} or @option{-farchive.tar} instead of using
  1672. @option{--file=archive.tar}. Both @option{--file=@var{archive-name}} and
  1673. @w{@option{-f @var{archive-name}}} denote the option which indicates a
  1674. specific archive, here named @file{archive.tar}.
  1675. Short options which take optional arguments take their arguments
  1676. immediately following the option letter, @emph{without any intervening
  1677. white space characters}.
  1678. Short options' letters may be clumped together, but you are not
  1679. required to do this (as compared to old options; see below). When
  1680. short options are clumped as a set, use one (single) dash for them
  1681. all, e.g., @w{@samp{@command{tar} -cvf}}. Only the last option in
  1682. such a set is allowed to have an argument@footnote{Clustering many
  1683. options, the last of which has an argument, is a rather opaque way to
  1684. write options. Some wonder if @acronym{GNU} @code{getopt} should not
  1685. even be made helpful enough for considering such usages as invalid.}.
  1686. When the options are separated, the argument for each option which requires
  1687. an argument directly follows that option, as is usual for Unix programs.
  1688. For example:
  1689. @smallexample
  1690. $ @kbd{tar -c -v -b 20 -f /dev/rmt0}
  1691. @end smallexample
  1692. If you reorder short options' locations, be sure to move any arguments
  1693. that belong to them. If you do not move the arguments properly, you may
  1694. end up overwriting files.
  1695. @node Old Options
  1696. @subsection Old Option Style
  1697. @UNREVISED
  1698. Like short options, @dfn{old options} are single letters. However, old options
  1699. must be written together as a single clumped set, without spaces separating
  1700. them or dashes preceding them@footnote{Beware that if you precede options
  1701. with a dash, you are announcing the short option style instead of the
  1702. old option style; short options are decoded differently.}. This set
  1703. of letters must be the first to appear on the command line, after the
  1704. @command{tar} program name and some white space; old options cannot appear
  1705. anywhere else. The letter of an old option is exactly the same letter as
  1706. the corresponding short option. For example, the old option @samp{t} is
  1707. the same as the short option @option{-t}, and consequently, the same as the
  1708. long option @option{--list}. So for example, the command @w{@samp{tar
  1709. cv}} specifies the option @option{-v} in addition to the operation @option{-c}.
  1710. When options that need arguments are given together with the command,
  1711. all the associated arguments follow, in the same order as the options.
  1712. Thus, the example given previously could also be written in the old
  1713. style as follows:
  1714. @smallexample
  1715. $ @kbd{tar cvbf 20 /dev/rmt0}
  1716. @end smallexample
  1717. @noindent
  1718. Here, @samp{20} is the argument of @option{-b} and @samp{/dev/rmt0} is
  1719. the argument of @option{-f}.
  1720. On the other hand, this old style syntax makes it difficult to match
  1721. option letters with their corresponding arguments, and is often
  1722. confusing. In the command @w{@samp{tar cvbf 20 /dev/rmt0}}, for example,
  1723. @samp{20} is the argument for @option{-b}, @samp{/dev/rmt0} is the
  1724. argument for @option{-f}, and @option{-v} does not have a corresponding
  1725. argument. Even using short options like in @w{@samp{tar -c -v -b 20 -f
  1726. /dev/rmt0}} is clearer, putting all arguments next to the option they
  1727. pertain to.
  1728. If you want to reorder the letters in the old option argument, be
  1729. sure to reorder any corresponding argument appropriately.
  1730. This old way of writing @command{tar} options can surprise even experienced
  1731. users. For example, the two commands:
  1732. @smallexample
  1733. @kbd{tar cfz archive.tar.gz file}
  1734. @kbd{tar -cfz archive.tar.gz file}
  1735. @end smallexample
  1736. @noindent
  1737. are quite different. The first example uses @file{archive.tar.gz} as
  1738. the value for option @samp{f} and recognizes the option @samp{z}. The
  1739. second example, however, uses @file{z} as the value for option
  1740. @samp{f} --- probably not what was intended.
  1741. Old options are kept for compatibility with old versions of @command{tar}.
  1742. This second example could be corrected in many ways, among which the
  1743. following are equivalent:
  1744. @smallexample
  1745. @kbd{tar -czf archive.tar.gz file}
  1746. @kbd{tar -cf archive.tar.gz -z file}
  1747. @kbd{tar cf archive.tar.gz -z file}
  1748. @end smallexample
  1749. @cindex option syntax, traditional
  1750. As far as we know, all @command{tar} programs, @acronym{GNU} and
  1751. non-@acronym{GNU}, support old options. @GNUTAR{}
  1752. supports them not only for historical reasons, but also because many
  1753. people are used to them. For compatibility with Unix @command{tar},
  1754. the first argument is always treated as containing command and option
  1755. letters even if it doesn't start with @samp{-}. Thus, @samp{tar c} is
  1756. equivalent to @w{@samp{tar -c}:} both of them specify the
  1757. @option{--create} (@option{-c}) command to create an archive.
  1758. @node Mixing
  1759. @subsection Mixing Option Styles
  1760. All three styles may be intermixed in a single @command{tar} command,
  1761. so long as the rules for each style are fully
  1762. respected@footnote{Before @GNUTAR{} version 1.11.6,
  1763. a bug prevented intermixing old style options with long options in
  1764. some cases.}. Old style options and either of the modern styles of
  1765. options may be mixed within a single @command{tar} command. However,
  1766. old style options must be introduced as the first arguments only,
  1767. following the rule for old options (old options must appear directly
  1768. after the @command{tar} command and some white space). Modern options
  1769. may be given only after all arguments to the old options have been
  1770. collected. If this rule is not respected, a modern option might be
  1771. falsely interpreted as the value of the argument to one of the old
  1772. style options.
  1773. For example, all the following commands are wholly equivalent, and
  1774. illustrate the many combinations and orderings of option styles.
  1775. @smallexample
  1776. @kbd{tar --create --file=archive.tar}
  1777. @kbd{tar --create -f archive.tar}
  1778. @kbd{tar --create -farchive.tar}
  1779. @kbd{tar --file=archive.tar --create}
  1780. @kbd{tar --file=archive.tar -c}
  1781. @kbd{tar -c --file=archive.tar}
  1782. @kbd{tar -c -f archive.tar}
  1783. @kbd{tar -c -farchive.tar}
  1784. @kbd{tar -cf archive.tar}
  1785. @kbd{tar -cfarchive.tar}
  1786. @kbd{tar -f archive.tar --create}
  1787. @kbd{tar -f archive.tar -c}
  1788. @kbd{tar -farchive.tar --create}
  1789. @kbd{tar -farchive.tar -c}
  1790. @kbd{tar c --file=archive.tar}
  1791. @kbd{tar c -f archive.tar}
  1792. @kbd{tar c -farchive.tar}
  1793. @kbd{tar cf archive.tar}
  1794. @kbd{tar f archive.tar --create}
  1795. @kbd{tar f archive.tar -c}
  1796. @kbd{tar fc archive.tar}
  1797. @end smallexample
  1798. On the other hand, the following commands are @emph{not} equivalent to
  1799. the previous set:
  1800. @smallexample
  1801. @kbd{tar -f -c archive.tar}
  1802. @kbd{tar -fc archive.tar}
  1803. @kbd{tar -fcarchive.tar}
  1804. @kbd{tar -farchive.tarc}
  1805. @kbd{tar cfarchive.tar}
  1806. @end smallexample
  1807. @noindent
  1808. These last examples mean something completely different from what the
  1809. user intended (judging based on the example in the previous set which
  1810. uses long options, whose intent is therefore very clear). The first
  1811. four specify that the @command{tar} archive would be a file named
  1812. @option{-c}, @samp{c}, @samp{carchive.tar} or @samp{archive.tarc},
  1813. respectively. The first two examples also specify a single non-option,
  1814. @var{name} argument having the value @samp{archive.tar}. The last
  1815. example contains only old style option letters (repeating option
  1816. @samp{c} twice), not all of which are meaningful (eg., @samp{.},
  1817. @samp{h}, or @samp{i}), with no argument value. @FIXME{not sure i liked
  1818. the first sentence of this paragraph..}
  1819. @node All Options
  1820. @section All @command{tar} Options
  1821. The coming manual sections contain an alphabetical listing of all
  1822. @command{tar} operations and options, with brief descriptions and cross
  1823. references to more in-depth explanations in the body of the manual.
  1824. They also contain an alphabetically arranged table of the short option
  1825. forms with their corresponding long option. You can use this table as
  1826. a reference for deciphering @command{tar} commands in scripts.
  1827. @menu
  1828. * Operation Summary::
  1829. * Option Summary::
  1830. * Short Option Summary::
  1831. @end menu
  1832. @node Operation Summary
  1833. @subsection Operations
  1834. @table @option
  1835. @opsummary{append}
  1836. @item --append
  1837. @itemx -r
  1838. Appends files to the end of the archive. @xref{append}.
  1839. @opsummary{catenate}
  1840. @item --catenate
  1841. @itemx -A
  1842. Same as @option{--concatenate}. @xref{concatenate}.
  1843. @opsummary{compare}
  1844. @item --compare
  1845. @itemx -d
  1846. Compares archive members with their counterparts in the file
  1847. system, and reports differences in file size, mode, owner,
  1848. modification date and contents. @xref{compare}.
  1849. @opsummary{concatenate}
  1850. @item --concatenate
  1851. @itemx -A
  1852. Appends other @command{tar} archives to the end of the archive.
  1853. @xref{concatenate}.
  1854. @opsummary{create}
  1855. @item --create
  1856. @itemx -c
  1857. Creates a new @command{tar} archive. @xref{create}.
  1858. @opsummary{delete}
  1859. @item --delete
  1860. Deletes members from the archive. Don't try this on a archive on a
  1861. tape! @xref{delete}.
  1862. @opsummary{diff}
  1863. @item --diff
  1864. @itemx -d
  1865. Same @option{--compare}. @xref{compare}.
  1866. @opsummary{extract}
  1867. @item --extract
  1868. @itemx -x
  1869. Extracts members from the archive into the file system. @xref{extract}.
  1870. @opsummary{get}
  1871. @item --get
  1872. @itemx -x
  1873. Same as @option{--extract}. @xref{extract}.
  1874. @opsummary{list}
  1875. @item --list
  1876. @itemx -t
  1877. Lists the members in an archive. @xref{list}.
  1878. @opsummary{update}
  1879. @item --update
  1880. @itemx -u
  1881. Adds files to the end of the archive, but only if they are newer than
  1882. their counterparts already in the archive, or if they do not already
  1883. exist in the archive. @xref{update}.
  1884. @end table
  1885. @node Option Summary
  1886. @subsection @command{tar} Options
  1887. @table @option
  1888. @opsummary{absolute-names}
  1889. @item --absolute-names
  1890. @itemx -P
  1891. Normally when creating an archive, @command{tar} strips an initial
  1892. @samp{/} from member names. This option disables that behavior.
  1893. @xref{absolute}.
  1894. @opsummary{after-date}
  1895. @item --after-date
  1896. (See @option{--newer}, @pxref{after})
  1897. @opsummary{anchored}
  1898. @item --anchored
  1899. A pattern must match an initial subsequence of the name's components.
  1900. @xref{controlling pattern-matching}.
  1901. @opsummary{atime-preserve}
  1902. @item --atime-preserve
  1903. @itemx --atime-preserve=replace
  1904. @itemx --atime-preserve=system
  1905. Attempt to preserve the access time of files when reading them. This
  1906. option currently is effective only on files that you own, unless you
  1907. have superuser privileges.
  1908. @option{--atime-preserve=replace} remembers the access time of a file
  1909. before reading it, and then restores the access time afterwards. This
  1910. may cause problems if other programs are reading the file at the same
  1911. time, as the times of their accesses will be lost. On most platforms
  1912. restoring the access time also requires @command{tar} to restore the
  1913. data modification time too, so this option may also cause problems if
  1914. other programs are writing the file at the same time. (Tar attempts
  1915. to detect this situation, but cannot do so reliably due to race
  1916. conditions.) Worse, on most platforms restoring the access time also
  1917. updates the status change time, which means that this option is
  1918. incompatible with incremental backups.
  1919. @option{--atime-preserve=system} avoids changing time stamps on files,
  1920. without interfering with time stamp updates
  1921. caused by other programs, so it works better with incremental backups.
  1922. However, it requires a special @code{O_NOATIME} option from the
  1923. underlying operating and file system implementation, and it also requires
  1924. that searching directories does not update their access times. As of
  1925. this writing (November 2005) this works only with Linux, and only with
  1926. Linux kernels 2.6.8 and later. Worse, there is currently no reliable
  1927. way to know whether this feature actually works. Sometimes
  1928. @command{tar} knows that it does not work, and if you use
  1929. @option{--atime-preserve=system} then @command{tar} complains and
  1930. exits right away. But other times @command{tar} might think that the
  1931. option works when it actually does not.
  1932. Currently @option{--atime-preserve} with no operand defaults to
  1933. @option{--atime-preserve=replace}, but this may change in the future
  1934. as support for @option{--atime-preserve=system} improves.
  1935. If your operating system does not support
  1936. @option{--atime-preserve=@-system}, you might be able to preserve access
  1937. times reliably by by using the @command{mount} command. For example,
  1938. you can mount the file system read-only, or access the file system via
  1939. a read-only loopback mount, or use the @samp{noatime} mount option
  1940. available on some systems. However, mounting typically requires
  1941. superuser privileges and can be a pain to manage.
  1942. @opsummary{auto-compress}
  1943. @item --auto-compress
  1944. @itemx -a
  1945. During a @option{--create} operation, enables automatic compressed
  1946. format recognition based on the archive suffix. The effect of this
  1947. option is cancelled by @option{--no-auto-compress}. @xref{gzip}.
  1948. @opsummary{backup}
  1949. @item --backup=@var{backup-type}
  1950. Rather than deleting files from the file system, @command{tar} will
  1951. back them up using simple or numbered backups, depending upon
  1952. @var{backup-type}. @xref{backup}.
  1953. @opsummary{block-number}
  1954. @item --block-number
  1955. @itemx -R
  1956. With this option present, @command{tar} prints error messages for read errors
  1957. with the block number in the archive file. @xref{block-number}.
  1958. @opsummary{blocking-factor}
  1959. @item --blocking-factor=@var{blocking}
  1960. @itemx -b @var{blocking}
  1961. Sets the blocking factor @command{tar} uses to @var{blocking} x 512 bytes per
  1962. record. @xref{Blocking Factor}.
  1963. @opsummary{bzip2}
  1964. @item --bzip2
  1965. @itemx -j
  1966. This option tells @command{tar} to read or write archives through
  1967. @code{bzip2}. @xref{gzip}.
  1968. @opsummary{check-device}
  1969. @item --check-device
  1970. Check device numbers when creating a list of modified files for
  1971. incremental archiving. This is the default. @xref{device numbers},
  1972. for a detailed description.
  1973. @opsummary{checkpoint}
  1974. @item --checkpoint[=@var{number}]
  1975. This option directs @command{tar} to print periodic checkpoint
  1976. messages as it reads through the archive. It is intended for when you
  1977. want a visual indication that @command{tar} is still running, but
  1978. don't want to see @option{--verbose} output. You can also instruct
  1979. @command{tar} to execute a list of actions on each checkpoint, see
  1980. @option{--checklist-action} below. For a detailed description, see
  1981. @ref{checkpoints}.
  1982. @opsummary{checkpoint-action}
  1983. @item --checkpoint-action=@var{action}
  1984. Instruct @command{tar} to execute an action upon hitting a
  1985. breakpoint. Here we give only a brief outline. @xref{checkpoints},
  1986. for a complete description.
  1987. The @var{action} argument can be one of the following:
  1988. @table @asis
  1989. @item bell
  1990. Produce an audible bell on the console.
  1991. @item dot
  1992. @itemx .
  1993. Print a single dot on the standard listing stream.
  1994. @item echo
  1995. Display a textual message on the standard error, with the status and
  1996. number of the checkpoint. This is the default.
  1997. @item echo=@var{string}
  1998. Display @var{string} on the standard error. Before output, the string
  1999. is subject to meta-character expansion.
  2000. @item exec=@var{command}
  2001. Execute the given @var{command}.
  2002. @item sleep=@var{time}
  2003. Wait for @var{time} seconds.
  2004. @item ttyout=@var{string}
  2005. Output @var{string} on the current console (@file{/dev/tty}).
  2006. @end table
  2007. Several @option{--checkpoint-action} options can be specified. The
  2008. supplied actions will be executed in order of their appearance in the
  2009. command line.
  2010. Using @option{--checkpoint-action} without @option{--checkpoint}
  2011. assumes default checkpoint frequency of one checkpoint per 10 records.
  2012. @opsummary{check-links}
  2013. @item --check-links
  2014. @itemx -l
  2015. If this option was given, @command{tar} will check the number of links
  2016. dumped for each processed file. If this number does not match the
  2017. total number of hard links for the file, a warning message will be
  2018. output @footnote{Earlier versions of @GNUTAR{} understood @option{-l} as a
  2019. synonym for @option{--one-file-system}. The current semantics, which
  2020. complies to UNIX98, was introduced with version
  2021. 1.15.91. @xref{Changes}, for more information.}.
  2022. @xref{hard links}.
  2023. @opsummary{compress}
  2024. @opsummary{uncompress}
  2025. @item --compress
  2026. @itemx --uncompress
  2027. @itemx -Z
  2028. @command{tar} will use the @command{compress} program when reading or
  2029. writing the archive. This allows you to directly act on archives
  2030. while saving space. @xref{gzip}.
  2031. @opsummary{confirmation}
  2032. @item --confirmation
  2033. (See @option{--interactive}.) @xref{interactive}.
  2034. @opsummary{delay-directory-restore}
  2035. @item --delay-directory-restore
  2036. Delay setting modification times and permissions of extracted
  2037. directories until the end of extraction. @xref{Directory Modification Times and Permissions}.
  2038. @opsummary{dereference}
  2039. @item --dereference
  2040. @itemx -h
  2041. When creating a @command{tar} archive, @command{tar} will archive the
  2042. file that a symbolic link points to, rather than archiving the
  2043. symlink. @xref{dereference}.
  2044. @opsummary{directory}
  2045. @item --directory=@var{dir}
  2046. @itemx -C @var{dir}
  2047. When this option is specified, @command{tar} will change its current directory
  2048. to @var{dir} before performing any operations. When this option is used
  2049. during archive creation, it is order sensitive. @xref{directory}.
  2050. @opsummary{exclude}
  2051. @item --exclude=@var{pattern}
  2052. When performing operations, @command{tar} will skip files that match
  2053. @var{pattern}. @xref{exclude}.
  2054. @opsummary{exclude-from}
  2055. @item --exclude-from=@var{file}
  2056. @itemx -X @var{file}
  2057. Similar to @option{--exclude}, except @command{tar} will use the list of
  2058. patterns in the file @var{file}. @xref{exclude}.
  2059. @opsummary{exclude-caches}
  2060. @item --exclude-caches
  2061. Exclude from dump any directory containing a valid cache directory
  2062. tag file, but still dump the directory node and the tag file itself.
  2063. @xref{exclude}.
  2064. @opsummary{exclude-caches-under}
  2065. @item --exclude-caches-under
  2066. Exclude from dump any directory containing a valid cache directory
  2067. tag file, but still dump the directory node itself.
  2068. @xref{exclude}.
  2069. @opsummary{exclude-caches-all}
  2070. @item --exclude-caches-all
  2071. Exclude from dump any directory containing a valid cache directory
  2072. tag file. @xref{exclude}.
  2073. @opsummary{exclude-tag}
  2074. @item --exclude-tag=@var{file}
  2075. Exclude from dump any directory containing file named @var{file}, but
  2076. dump the directory node and @var{file} itself. @xref{exclude}.
  2077. @opsummary{exclude-tag-under}
  2078. @item --exclude-tag-under=@var{file}
  2079. Exclude from dump the contents of any directory containing file
  2080. named @var{file}, but dump the directory node itself. @xref{exclude}.
  2081. @opsummary{exclude-tag-all}
  2082. @item --exclude-tag-all=@var{file}
  2083. Exclude from dump any directory containing file named @var{file}.
  2084. @xref{exclude}.
  2085. @opsummary{exclude-vcs}
  2086. @item --exclude-vcs
  2087. Exclude from dump directories and files, that are internal for some
  2088. widely used version control systems.
  2089. @xref{exclude}.
  2090. @opsummary{file}
  2091. @item --file=@var{archive}
  2092. @itemx -f @var{archive}
  2093. @command{tar} will use the file @var{archive} as the @command{tar} archive it
  2094. performs operations on, rather than @command{tar}'s compilation dependent
  2095. default. @xref{file tutorial}.
  2096. @opsummary{files-from}
  2097. @item --files-from=@var{file}
  2098. @itemx -T @var{file}
  2099. @command{tar} will use the contents of @var{file} as a list of archive members
  2100. or files to operate on, in addition to those specified on the
  2101. command-line. @xref{files}.
  2102. @opsummary{force-local}
  2103. @item --force-local
  2104. Forces @command{tar} to interpret the file name given to @option{--file}
  2105. as a local file, even if it looks like a remote tape drive name.
  2106. @xref{local and remote archives}.
  2107. @opsummary{format}
  2108. @item --format=@var{format}
  2109. @itemx -H @var{format}
  2110. Selects output archive format. @var{Format} may be one of the
  2111. following:
  2112. @table @samp
  2113. @item v7
  2114. Creates an archive that is compatible with Unix V7 @command{tar}.
  2115. @item oldgnu
  2116. Creates an archive that is compatible with GNU @command{tar} version
  2117. 1.12 or earlier.
  2118. @item gnu
  2119. Creates archive in GNU tar 1.13 format. Basically it is the same as
  2120. @samp{oldgnu} with the only difference in the way it handles long
  2121. numeric fields.
  2122. @item ustar
  2123. Creates a @acronym{POSIX.1-1988} compatible archive.
  2124. @item posix
  2125. Creates a @acronym{POSIX.1-2001 archive}.
  2126. @end table
  2127. @xref{Formats}, for a detailed discussion of these formats.
  2128. @opsummary{group}
  2129. @item --group=@var{group}
  2130. Files added to the @command{tar} archive will have a group @acronym{ID} of @var{group},
  2131. rather than the group from the source file. @var{group} is first decoded
  2132. as a group symbolic name, but if this interpretation fails, it has to be
  2133. a decimal numeric group @acronym{ID}. @xref{override}.
  2134. Also see the comments for the @option{--owner=@var{user}} option.
  2135. @opsummary{gzip}
  2136. @opsummary{gunzip}
  2137. @opsummary{ungzip}
  2138. @item --gzip
  2139. @itemx --gunzip
  2140. @itemx --ungzip
  2141. @itemx -z
  2142. This option tells @command{tar} to read or write archives through
  2143. @command{gzip}, allowing @command{tar} to directly operate on several
  2144. kinds of compressed archives transparently. @xref{gzip}.
  2145. @opsummary{hard-dereference}
  2146. @item --hard-dereference
  2147. When creating an archive, dereference hard links and store the files
  2148. they refer to, instead of creating usual hard link members.
  2149. @xref{hard links}.
  2150. @opsummary{help}
  2151. @item --help
  2152. @itemx -?
  2153. @command{tar} will print out a short message summarizing the operations and
  2154. options to @command{tar} and exit. @xref{help}.
  2155. @opsummary{ignore-case}
  2156. @item --ignore-case
  2157. Ignore case when matching member or file names with
  2158. patterns. @xref{controlling pattern-matching}.
  2159. @opsummary{ignore-command-error}
  2160. @item --ignore-command-error
  2161. Ignore exit codes of subprocesses. @xref{Writing to an External Program}.
  2162. @opsummary{ignore-failed-read}
  2163. @item --ignore-failed-read
  2164. Do not exit unsuccessfully merely because an unreadable file was encountered.
  2165. @xref{Reading}.
  2166. @opsummary{ignore-zeros}
  2167. @item --ignore-zeros
  2168. @itemx -i
  2169. With this option, @command{tar} will ignore zeroed blocks in the
  2170. archive, which normally signals EOF. @xref{Reading}.
  2171. @opsummary{incremental}
  2172. @item --incremental
  2173. @itemx -G
  2174. Informs @command{tar} that it is working with an old
  2175. @acronym{GNU}-format incremental backup archive. It is intended
  2176. primarily for backwards compatibility only. @xref{Incremental Dumps},
  2177. for a detailed discussion of incremental archives.
  2178. @opsummary{index-file}
  2179. @item --index-file=@var{file}
  2180. Send verbose output to @var{file} instead of to standard output.
  2181. @opsummary{info-script}
  2182. @opsummary{new-volume-script}
  2183. @item --info-script=@var{script-file}
  2184. @itemx --new-volume-script=@var{script-file}
  2185. @itemx -F @var{script-file}
  2186. When @command{tar} is performing multi-tape backups, @var{script-file} is run
  2187. at the end of each tape. If @var{script-file} exits with nonzero status,
  2188. @command{tar} fails immediately. @xref{info-script}, for a detailed
  2189. discussion of @var{script-file}.
  2190. @opsummary{interactive}
  2191. @item --interactive
  2192. @itemx --confirmation
  2193. @itemx -w
  2194. Specifies that @command{tar} should ask the user for confirmation before
  2195. performing potentially destructive options, such as overwriting files.
  2196. @xref{interactive}.
  2197. @opsummary{keep-newer-files}
  2198. @item --keep-newer-files
  2199. Do not replace existing files that are newer than their archive copies
  2200. when extracting files from an archive.
  2201. @opsummary{keep-old-files}
  2202. @item --keep-old-files
  2203. @itemx -k
  2204. Do not overwrite existing files when extracting files from an archive.
  2205. @xref{Keep Old Files}.
  2206. @opsummary{label}
  2207. @item --label=@var{name}
  2208. @itemx -V @var{name}
  2209. When creating an archive, instructs @command{tar} to write @var{name}
  2210. as a name record in the archive. When extracting or listing archives,
  2211. @command{tar} will only operate on archives that have a label matching
  2212. the pattern specified in @var{name}. @xref{Tape Files}.
  2213. @opsummary{listed-incremental}
  2214. @item --listed-incremental=@var{snapshot-file}
  2215. @itemx -g @var{snapshot-file}
  2216. During a @option{--create} operation, specifies that the archive that
  2217. @command{tar} creates is a new @acronym{GNU}-format incremental
  2218. backup, using @var{snapshot-file} to determine which files to backup.
  2219. With other operations, informs @command{tar} that the archive is in
  2220. incremental format. @xref{Incremental Dumps}.
  2221. @opsummary{lzma}
  2222. @item --lzma
  2223. @itemx -J
  2224. This option tells @command{tar} to read or write archives through
  2225. @command{lzma}. @xref{gzip}.
  2226. @item --lzop
  2227. This option tells @command{tar} to read or write archives through
  2228. @command{lzop}. @xref{gzip}.
  2229. @opsummary{mode}
  2230. @item --mode=@var{permissions}
  2231. When adding files to an archive, @command{tar} will use
  2232. @var{permissions} for the archive members, rather than the permissions
  2233. from the files. @var{permissions} can be specified either as an octal
  2234. number or as symbolic permissions, like with
  2235. @command{chmod}. @xref{override}.
  2236. @opsummary{mtime}
  2237. @item --mtime=@var{date}
  2238. When adding files to an archive, @command{tar} will use @var{date} as
  2239. the modification time of members when creating archives, instead of
  2240. their actual modification times. The value of @var{date} can be
  2241. either a textual date representation (@pxref{Date input formats}) or a
  2242. name of the existing file, starting with @samp{/} or @samp{.}. In the
  2243. latter case, the modification time of that file is used. @xref{override}.
  2244. @opsummary{multi-volume}
  2245. @item --multi-volume
  2246. @itemx -M
  2247. Informs @command{tar} that it should create or otherwise operate on a
  2248. multi-volume @command{tar} archive. @xref{Using Multiple Tapes}.
  2249. @opsummary{new-volume-script}
  2250. @item --new-volume-script
  2251. (see --info-script)
  2252. @opsummary{newer}
  2253. @item --newer=@var{date}
  2254. @itemx --after-date=@var{date}
  2255. @itemx -N
  2256. When creating an archive, @command{tar} will only add files that have changed
  2257. since @var{date}. If @var{date} begins with @samp{/} or @samp{.}, it
  2258. is taken to be the name of a file whose data modification time specifies
  2259. the date. @xref{after}.
  2260. @opsummary{newer-mtime}
  2261. @item --newer-mtime=@var{date}
  2262. Like @option{--newer}, but add only files whose
  2263. contents have changed (as opposed to just @option{--newer}, which will
  2264. also back up files for which any status information has
  2265. changed). @xref{after}.
  2266. @opsummary{no-anchored}
  2267. @item --no-anchored
  2268. An exclude pattern can match any subsequence of the name's components.
  2269. @xref{controlling pattern-matching}.
  2270. @opsummary{no-auto-compress}
  2271. @item --no-auto-compress
  2272. Disables automatic compressed format recognition based on the archive
  2273. suffix. @xref{--auto-compress}. @xref{gzip}.
  2274. @opsummary{no-check-device}
  2275. @item --no-check-device
  2276. Do not check device numbers when creating a list of modified files
  2277. for incremental archiving. @xref{device numbers}, for
  2278. a detailed description.
  2279. @opsummary{no-delay-directory-restore}
  2280. @item --no-delay-directory-restore
  2281. Modification times and permissions of extracted
  2282. directories are set when all files from this directory have been
  2283. extracted. This is the default.
  2284. @xref{Directory Modification Times and Permissions}.
  2285. @opsummary{no-ignore-case}
  2286. @item --no-ignore-case
  2287. Use case-sensitive matching.
  2288. @xref{controlling pattern-matching}.
  2289. @opsummary{no-ignore-command-error}
  2290. @item --no-ignore-command-error
  2291. Print warnings about subprocesses that terminated with a nonzero exit
  2292. code. @xref{Writing to an External Program}.
  2293. @opsummary{no-overwrite-dir}
  2294. @item --no-overwrite-dir
  2295. Preserve metadata of existing directories when extracting files
  2296. from an archive. @xref{Overwrite Old Files}.
  2297. @opsummary{no-quote-chars}
  2298. @item --no-quote-chars=@var{string}
  2299. Remove characters listed in @var{string} from the list of quoted
  2300. characters set by the previous @option{--quote-chars} option
  2301. (@pxref{quoting styles}).
  2302. @opsummary{no-recursion}
  2303. @item --no-recursion
  2304. With this option, @command{tar} will not recurse into directories.
  2305. @xref{recurse}.
  2306. @opsummary{no-same-owner}
  2307. @item --no-same-owner
  2308. @itemx -o
  2309. When extracting an archive, do not attempt to preserve the owner
  2310. specified in the @command{tar} archive. This the default behavior
  2311. for ordinary users.
  2312. @opsummary{no-same-permissions}
  2313. @item --no-same-permissions
  2314. When extracting an archive, subtract the user's umask from files from
  2315. the permissions specified in the archive. This is the default behavior
  2316. for ordinary users.
  2317. @opsummary{no-unquote}
  2318. @item --no-unquote
  2319. Treat all input file or member names literally, do not interpret
  2320. escape sequences. @xref{input name quoting}.
  2321. @opsummary{no-wildcards}
  2322. @item --no-wildcards
  2323. Do not use wildcards.
  2324. @xref{controlling pattern-matching}.
  2325. @opsummary{no-wildcards-match-slash}
  2326. @item --no-wildcards-match-slash
  2327. Wildcards do not match @samp{/}.
  2328. @xref{controlling pattern-matching}.
  2329. @opsummary{null}
  2330. @item --null
  2331. When @command{tar} is using the @option{--files-from} option, this option
  2332. instructs @command{tar} to expect file names terminated with @acronym{NUL}, so
  2333. @command{tar} can correctly work with file names that contain newlines.
  2334. @xref{nul}.
  2335. @opsummary{numeric-owner}
  2336. @item --numeric-owner
  2337. This option will notify @command{tar} that it should use numeric user
  2338. and group IDs when creating a @command{tar} file, rather than names.
  2339. @xref{Attributes}.
  2340. @item -o
  2341. The function of this option depends on the action @command{tar} is
  2342. performing. When extracting files, @option{-o} is a synonym for
  2343. @option{--no-same-owner}, i.e., it prevents @command{tar} from
  2344. restoring ownership of files being extracted.
  2345. When creating an archive, it is a synonym for
  2346. @option{--old-archive}. This behavior is for compatibility
  2347. with previous versions of @GNUTAR{}, and will be
  2348. removed in future releases.
  2349. @xref{Changes}, for more information.
  2350. @opsummary{occurrence}
  2351. @item --occurrence[=@var{number}]
  2352. This option can be used in conjunction with one of the subcommands
  2353. @option{--delete}, @option{--diff}, @option{--extract} or
  2354. @option{--list} when a list of files is given either on the command
  2355. line or via @option{-T} option.
  2356. This option instructs @command{tar} to process only the @var{number}th
  2357. occurrence of each named file. @var{Number} defaults to 1, so
  2358. @smallexample
  2359. tar -x -f archive.tar --occurrence filename
  2360. @end smallexample
  2361. @noindent
  2362. will extract the first occurrence of the member @file{filename} from @file{archive.tar}
  2363. and will terminate without scanning to the end of the archive.
  2364. @opsummary{old-archive}
  2365. @item --old-archive
  2366. Synonym for @option{--format=v7}.
  2367. @opsummary{one-file-system}
  2368. @item --one-file-system
  2369. Used when creating an archive. Prevents @command{tar} from recursing into
  2370. directories that are on different file systems from the current
  2371. directory.
  2372. @opsummary{overwrite}
  2373. @item --overwrite
  2374. Overwrite existing files and directory metadata when extracting files
  2375. from an archive. @xref{Overwrite Old Files}.
  2376. @opsummary{overwrite-dir}
  2377. @item --overwrite-dir
  2378. Overwrite the metadata of existing directories when extracting files
  2379. from an archive. @xref{Overwrite Old Files}.
  2380. @opsummary{owner}
  2381. @item --owner=@var{user}
  2382. Specifies that @command{tar} should use @var{user} as the owner of members
  2383. when creating archives, instead of the user associated with the source
  2384. file. @var{user} is first decoded as a user symbolic name, but if
  2385. this interpretation fails, it has to be a decimal numeric user @acronym{ID}.
  2386. @xref{override}.
  2387. This option does not affect extraction from archives.
  2388. @opsummary{pax-option}
  2389. @item --pax-option=@var{keyword-list}
  2390. This option is meaningful only with @acronym{POSIX.1-2001} archives
  2391. (@pxref{posix}). It modifies the way @command{tar} handles the
  2392. extended header keywords. @var{Keyword-list} is a comma-separated
  2393. list of keyword options. @xref{PAX keywords}, for a detailed
  2394. discussion.
  2395. @opsummary{portability}
  2396. @item --portability
  2397. @itemx --old-archive
  2398. Synonym for @option{--format=v7}.
  2399. @opsummary{posix}
  2400. @item --posix
  2401. Same as @option{--format=posix}.
  2402. @opsummary{preserve}
  2403. @item --preserve
  2404. Synonymous with specifying both @option{--preserve-permissions} and
  2405. @option{--same-order}. @xref{Setting Access Permissions}.
  2406. @opsummary{preserve-order}
  2407. @item --preserve-order
  2408. (See @option{--same-order}; @pxref{Reading}.)
  2409. @opsummary{preserve-permissions}
  2410. @opsummary{same-permissions}
  2411. @item --preserve-permissions
  2412. @itemx --same-permissions
  2413. @itemx -p
  2414. When @command{tar} is extracting an archive, it normally subtracts the
  2415. users' umask from the permissions specified in the archive and uses
  2416. that number as the permissions to create the destination file.
  2417. Specifying this option instructs @command{tar} that it should use the
  2418. permissions directly from the archive. @xref{Setting Access Permissions}.
  2419. @opsummary{quote-chars}
  2420. @item --quote-chars=@var{string}
  2421. Always quote characters from @var{string}, even if the selected
  2422. quoting style would not quote them (@pxref{quoting styles}).
  2423. @opsummary{quoting-style}
  2424. @item --quoting-style=@var{style}
  2425. Set quoting style to use when printing member and file names
  2426. (@pxref{quoting styles}). Valid @var{style} values are:
  2427. @code{literal}, @code{shell}, @code{shell-always}, @code{c},
  2428. @code{escape}, @code{locale}, and @code{clocale}. Default quoting
  2429. style is @code{escape}, unless overridden while configuring the
  2430. package.
  2431. @opsummary{read-full-records}
  2432. @item --read-full-records
  2433. @itemx -B
  2434. Specifies that @command{tar} should reblock its input, for reading
  2435. from pipes on systems with buggy implementations. @xref{Reading}.
  2436. @opsummary{record-size}
  2437. @item --record-size=@var{size}
  2438. Instructs @command{tar} to use @var{size} bytes per record when accessing the
  2439. archive. @xref{Blocking Factor}.
  2440. @opsummary{recursion}
  2441. @item --recursion
  2442. With this option, @command{tar} recurses into directories (default).
  2443. @xref{recurse}.
  2444. @opsummary{recursive-unlink}
  2445. @item --recursive-unlink
  2446. Remove existing
  2447. directory hierarchies before extracting directories of the same name
  2448. from the archive. @xref{Recursive Unlink}.
  2449. @opsummary{remove-files}
  2450. @item --remove-files
  2451. Directs @command{tar} to remove the source file from the file system after
  2452. appending it to an archive. @xref{remove files}.
  2453. @opsummary{restrict}
  2454. @item --restrict
  2455. Disable use of some potentially harmful @command{tar} options.
  2456. Currently this option disables shell invocation from multi-volume menu
  2457. (@pxref{Using Multiple Tapes}).
  2458. @opsummary{rmt-command}
  2459. @item --rmt-command=@var{cmd}
  2460. Notifies @command{tar} that it should use @var{cmd} instead of
  2461. the default @file{/usr/libexec/rmt} (@pxref{Remote Tape Server}).
  2462. @opsummary{rsh-command}
  2463. @item --rsh-command=@var{cmd}
  2464. Notifies @command{tar} that is should use @var{cmd} to communicate with remote
  2465. devices. @xref{Device}.
  2466. @opsummary{same-order}
  2467. @item --same-order
  2468. @itemx --preserve-order
  2469. @itemx -s
  2470. This option is an optimization for @command{tar} when running on machines with
  2471. small amounts of memory. It informs @command{tar} that the list of file
  2472. arguments has already been sorted to match the order of files in the
  2473. archive. @xref{Reading}.
  2474. @opsummary{same-owner}
  2475. @item --same-owner
  2476. When extracting an archive, @command{tar} will attempt to preserve the owner
  2477. specified in the @command{tar} archive with this option present.
  2478. This is the default behavior for the superuser; this option has an
  2479. effect only for ordinary users. @xref{Attributes}.
  2480. @opsummary{same-permissions}
  2481. @item --same-permissions
  2482. (See @option{--preserve-permissions}; @pxref{Setting Access Permissions}.)
  2483. @opsummary{seek}
  2484. @item --seek
  2485. @itemx -n
  2486. Assume that the archive media supports seeks to arbitrary
  2487. locations. Usually @command{tar} determines automatically whether
  2488. the archive can be seeked or not. This option is intended for use
  2489. in cases when such recognition fails.
  2490. @opsummary{show-defaults}
  2491. @item --show-defaults
  2492. Displays the default options used by @command{tar} and exits
  2493. successfully. This option is intended for use in shell scripts.
  2494. Here is an example of what you can see using this option:
  2495. @smallexample
  2496. $ tar --show-defaults
  2497. --format=gnu -f- -b20 --quoting-style=escape \
  2498. --rmt-command=/usr/libexec/rmt --rsh-command=/usr/bin/rsh
  2499. @end smallexample
  2500. @opsummary{show-omitted-dirs}
  2501. @item --show-omitted-dirs
  2502. Instructs @command{tar} to mention the directories it is skipping when
  2503. operating on a @command{tar} archive. @xref{show-omitted-dirs}.
  2504. @opsummary{show-transformed-names}
  2505. @opsummary{show-stored-names}
  2506. @item --show-transformed-names
  2507. @itemx --show-stored-names
  2508. Display file or member names after applying any transformations
  2509. (@pxref{transform}). In particular, when used in conjunction with one of
  2510. the archive creation operations it instructs @command{tar} to list the
  2511. member names stored in the archive, as opposed to the actual file
  2512. names. @xref{listing member and file names}.
  2513. @opsummary{sparse}
  2514. @item --sparse
  2515. @itemx -S
  2516. Invokes a @acronym{GNU} extension when adding files to an archive that handles
  2517. sparse files efficiently. @xref{sparse}.
  2518. @opsummary{sparse-version}
  2519. @item --sparse-version=@var{version}
  2520. Specifies the @dfn{format version} to use when archiving sparse
  2521. files. Implies @option{--sparse}. @xref{sparse}. For the description
  2522. of the supported sparse formats, @xref{Sparse Formats}.
  2523. @opsummary{starting-file}
  2524. @item --starting-file=@var{name}
  2525. @itemx -K @var{name}
  2526. This option affects extraction only; @command{tar} will skip extracting
  2527. files in the archive until it finds one that matches @var{name}.
  2528. @xref{Scarce}.
  2529. @opsummary{strip-components}
  2530. @item --strip-components=@var{number}
  2531. Strip given @var{number} of leading components from file names before
  2532. extraction. For example, if archive @file{archive.tar} contained
  2533. @file{/some/file/name}, then running
  2534. @smallexample
  2535. tar --extract --file archive.tar --strip-components=2
  2536. @end smallexample
  2537. @noindent
  2538. would extract this file to file @file{name}.
  2539. @opsummary{suffix}, summary
  2540. @item --suffix=@var{suffix}
  2541. Alters the suffix @command{tar} uses when backing up files from the default
  2542. @samp{~}. @xref{backup}.
  2543. @opsummary{tape-length}
  2544. @item --tape-length=@var{num}
  2545. @itemx -L @var{num}
  2546. Specifies the length of tapes that @command{tar} is writing as being
  2547. @w{@var{num} x 1024} bytes long. @xref{Using Multiple Tapes}.
  2548. @opsummary{test-label}
  2549. @item --test-label
  2550. Reads the volume label. If an argument is specified, test whether it
  2551. matches the volume label. @xref{--test-label option}.
  2552. @opsummary{to-command}
  2553. @item --to-command=@var{command}
  2554. During extraction @command{tar} will pipe extracted files to the
  2555. standard input of @var{command}. @xref{Writing to an External Program}.
  2556. @opsummary{to-stdout}
  2557. @item --to-stdout
  2558. @itemx -O
  2559. During extraction, @command{tar} will extract files to stdout rather
  2560. than to the file system. @xref{Writing to Standard Output}.
  2561. @opsummary{totals}
  2562. @item --totals[=@var{signo}]
  2563. Displays the total number of bytes transferred when processing an
  2564. archive. If an argument is given, these data are displayed on
  2565. request, when signal @var{signo} is delivered to @command{tar}.
  2566. @xref{totals}.
  2567. @opsummary{touch}
  2568. @item --touch
  2569. @itemx -m
  2570. Sets the data modification time of extracted files to the extraction time,
  2571. rather than the data modification time stored in the archive.
  2572. @xref{Data Modification Times}.
  2573. @opsummary{transform}
  2574. @item --transform=@var{sed-expr}
  2575. Transform file or member names using @command{sed} replacement expression
  2576. @var{sed-expr}. For example,
  2577. @smallexample
  2578. $ @kbd{tar cf archive.tar --transform 's,^\./,usr/,' .}
  2579. @end smallexample
  2580. @noindent
  2581. will add to @file{archive} files from the current working directory,
  2582. replacing initial @samp{./} prefix with @samp{usr/}. For the detailed
  2583. discussion, @xref{transform}.
  2584. To see transformed member names in verbose listings, use
  2585. @option{--show-transformed-names} option
  2586. (@pxref{show-transformed-names}).
  2587. @opsummary{uncompress}
  2588. @item --uncompress
  2589. (See @option{--compress}. @pxref{gzip})
  2590. @opsummary{ungzip}
  2591. @item --ungzip
  2592. (See @option{--gzip}. @pxref{gzip})
  2593. @opsummary{unlink-first}
  2594. @item --unlink-first
  2595. @itemx -U
  2596. Directs @command{tar} to remove the corresponding file from the file
  2597. system before extracting it from the archive. @xref{Unlink First}.
  2598. @opsummary{unquote}
  2599. @item --unquote
  2600. Enable unquoting input file or member names (default). @xref{input
  2601. name quoting}.
  2602. @opsummary{use-compress-program}
  2603. @item --use-compress-program=@var{prog}
  2604. Instructs @command{tar} to access the archive through @var{prog}, which is
  2605. presumed to be a compression program of some sort. @xref{gzip}.
  2606. @opsummary{utc}
  2607. @item --utc
  2608. Display file modification dates in @acronym{UTC}. This option implies
  2609. @option{--verbose}.
  2610. @opsummary{verbose}
  2611. @item --verbose
  2612. @itemx -v
  2613. Specifies that @command{tar} should be more verbose about the
  2614. operations it is performing. This option can be specified multiple
  2615. times for some operations to increase the amount of information displayed.
  2616. @xref{verbose}.
  2617. @opsummary{verify}
  2618. @item --verify
  2619. @itemx -W
  2620. Verifies that the archive was correctly written when creating an
  2621. archive. @xref{verify}.
  2622. @opsummary{version}
  2623. @item --version
  2624. Print information about the program's name, version, origin and legal
  2625. status, all on standard output, and then exit successfully.
  2626. @xref{help}.
  2627. @opsummary{volno-file}
  2628. @item --volno-file=@var{file}
  2629. Used in conjunction with @option{--multi-volume}. @command{tar} will
  2630. keep track of which volume of a multi-volume archive it is working in
  2631. @var{file}. @xref{volno-file}.
  2632. @opsummary{wildcards}
  2633. @item --wildcards
  2634. Use wildcards when matching member names with patterns.
  2635. @xref{controlling pattern-matching}.
  2636. @opsummary{wildcards-match-slash}
  2637. @item --wildcards-match-slash
  2638. Wildcards match @samp{/}.
  2639. @xref{controlling pattern-matching}.
  2640. @end table
  2641. @node Short Option Summary
  2642. @subsection Short Options Cross Reference
  2643. Here is an alphabetized list of all of the short option forms, matching
  2644. them with the equivalent long option.
  2645. @multitable @columnfractions 0.20 0.80
  2646. @headitem Short Option @tab Reference
  2647. @item -A @tab @ref{--concatenate}.
  2648. @item -B @tab @ref{--read-full-records}.
  2649. @item -C @tab @ref{--directory}.
  2650. @item -F @tab @ref{--info-script}.
  2651. @item -G @tab @ref{--incremental}.
  2652. @item -J @tab @ref{--lzma}.
  2653. @item -K @tab @ref{--starting-file}.
  2654. @item -L @tab @ref{--tape-length}.
  2655. @item -M @tab @ref{--multi-volume}.
  2656. @item -N @tab @ref{--newer}.
  2657. @item -O @tab @ref{--to-stdout}.
  2658. @item -P @tab @ref{--absolute-names}.
  2659. @item -R @tab @ref{--block-number}.
  2660. @item -S @tab @ref{--sparse}.
  2661. @item -T @tab @ref{--files-from}.
  2662. @item -U @tab @ref{--unlink-first}.
  2663. @item -V @tab @ref{--label}.
  2664. @item -W @tab @ref{--verify}.
  2665. @item -X @tab @ref{--exclude-from}.
  2666. @item -Z @tab @ref{--compress}.
  2667. @item -b @tab @ref{--blocking-factor}.
  2668. @item -c @tab @ref{--create}.
  2669. @item -d @tab @ref{--compare}.
  2670. @item -f @tab @ref{--file}.
  2671. @item -g @tab @ref{--listed-incremental}.
  2672. @item -h @tab @ref{--dereference}.
  2673. @item -i @tab @ref{--ignore-zeros}.
  2674. @item -j @tab @ref{--bzip2}.
  2675. @item -k @tab @ref{--keep-old-files}.
  2676. @item -l @tab @ref{--check-links}.
  2677. @item -m @tab @ref{--touch}.
  2678. @item -o @tab When creating, @ref{--no-same-owner}, when extracting ---
  2679. @ref{--portability}.
  2680. The latter usage is deprecated. It is retained for compatibility with
  2681. the earlier versions of @GNUTAR{}. In future releases
  2682. @option{-o} will be equivalent to @option{--no-same-owner} only.
  2683. @item -p @tab @ref{--preserve-permissions}.
  2684. @item -r @tab @ref{--append}.
  2685. @item -s @tab @ref{--same-order}.
  2686. @item -t @tab @ref{--list}.
  2687. @item -u @tab @ref{--update}.
  2688. @item -v @tab @ref{--verbose}.
  2689. @item -w @tab @ref{--interactive}.
  2690. @item -x @tab @ref{--extract}.
  2691. @item -z @tab @ref{--gzip}.
  2692. @end multitable
  2693. @node help
  2694. @section @GNUTAR{} documentation
  2695. @cindex Getting program version number
  2696. @opindex version
  2697. @cindex Version of the @command{tar} program
  2698. Being careful, the first thing is really checking that you are using
  2699. @GNUTAR{}, indeed. The @option{--version} option
  2700. causes @command{tar} to print information about its name, version,
  2701. origin and legal status, all on standard output, and then exit
  2702. successfully. For example, @w{@samp{tar --version}} might print:
  2703. @smallexample
  2704. tar (GNU tar) @value{VERSION}
  2705. Copyright (C) 2008 Free Software Foundation, Inc.
  2706. This is free software. You may redistribute copies of it under the terms
  2707. of the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
  2708. There is NO WARRANTY, to the extent permitted by law.
  2709. Written by John Gilmore and Jay Fenlason.
  2710. @end smallexample
  2711. @noindent
  2712. The first occurrence of @samp{tar} in the result above is the program
  2713. name in the package (for example, @command{rmt} is another program),
  2714. while the second occurrence of @samp{tar} is the name of the package
  2715. itself, containing possibly many programs. The package is currently
  2716. named @samp{tar}, after the name of the main program it
  2717. contains@footnote{There are plans to merge the @command{cpio} and
  2718. @command{tar} packages into a single one which would be called
  2719. @code{paxutils}. So, who knows if, one of this days, the
  2720. @option{--version} would not output @w{@samp{tar (@acronym{GNU}
  2721. paxutils) 3.2}}}.
  2722. @cindex Obtaining help
  2723. @cindex Listing all @command{tar} options
  2724. @xopindex{help, introduction}
  2725. Another thing you might want to do is checking the spelling or meaning
  2726. of some particular @command{tar} option, without resorting to this
  2727. manual, for once you have carefully read it. @GNUTAR{}
  2728. has a short help feature, triggerable through the
  2729. @option{--help} option. By using this option, @command{tar} will
  2730. print a usage message listing all available options on standard
  2731. output, then exit successfully, without doing anything else and
  2732. ignoring all other options. Even if this is only a brief summary, it
  2733. may be several screens long. So, if you are not using some kind of
  2734. scrollable window, you might prefer to use something like:
  2735. @smallexample
  2736. $ @kbd{tar --help | less}
  2737. @end smallexample
  2738. @noindent
  2739. presuming, here, that you like using @command{less} for a pager. Other
  2740. popular pagers are @command{more} and @command{pg}. If you know about some
  2741. @var{keyword} which interests you and do not want to read all the
  2742. @option{--help} output, another common idiom is doing:
  2743. @smallexample
  2744. tar --help | grep @var{keyword}
  2745. @end smallexample
  2746. @noindent
  2747. for getting only the pertinent lines. Notice, however, that some
  2748. @command{tar} options have long description lines and the above
  2749. command will list only the first of them.
  2750. The exact look of the option summary displayed by @kbd{tar --help} is
  2751. configurable. @xref{Configuring Help Summary}, for a detailed description.
  2752. @opindex usage
  2753. If you only wish to check the spelling of an option, running @kbd{tar
  2754. --usage} may be a better choice. This will display a terse list of
  2755. @command{tar} option without accompanying explanations.
  2756. The short help output is quite succinct, and you might have to get
  2757. back to the full documentation for precise points. If you are reading
  2758. this paragraph, you already have the @command{tar} manual in some
  2759. form. This manual is available in a variety of forms from
  2760. @url{http://www.gnu.org/software/tar/manual}. It may be printed out of the @GNUTAR{}
  2761. distribution, provided you have @TeX{} already installed somewhere,
  2762. and a laser printer around. Just configure the distribution, execute
  2763. the command @w{@samp{make dvi}}, then print @file{doc/tar.dvi} the
  2764. usual way (contact your local guru to know how). If @GNUTAR{}
  2765. has been conveniently installed at your place, this
  2766. manual is also available in interactive, hypertextual form as an Info
  2767. file. Just call @w{@samp{info tar}} or, if you do not have the
  2768. @command{info} program handy, use the Info reader provided within
  2769. @acronym{GNU} Emacs, calling @samp{tar} from the main Info menu.
  2770. There is currently no @code{man} page for @GNUTAR{}.
  2771. If you observe such a @code{man} page on the system you are running,
  2772. either it does not belong to @GNUTAR{}, or it has not
  2773. been produced by @acronym{GNU}. Some package maintainers convert
  2774. @kbd{tar --help} output to a man page, using @command{help2man}. In
  2775. any case, please bear in mind that the authoritative source of
  2776. information about @GNUTAR{} is this Texinfo documentation.
  2777. @node defaults
  2778. @section Obtaining @GNUTAR{} default values
  2779. @opindex show-defaults
  2780. @GNUTAR{} has some predefined defaults that are used when you do not
  2781. explicitly specify another values. To obtain a list of such
  2782. defaults, use @option{--show-defaults} option. This will output the
  2783. values in the form of @command{tar} command line options:
  2784. @smallexample
  2785. @group
  2786. @kbd{tar --show-defaults}
  2787. --format=gnu -f- -b20 --quoting-style=escape
  2788. --rmt-command=/etc/rmt --rsh-command=/usr/bin/rsh
  2789. @end group
  2790. @end smallexample
  2791. @noindent
  2792. Notice, that this option outputs only one line. The example output above
  2793. has been split to fit page boundaries.
  2794. @noindent
  2795. The above output shows that this version of @GNUTAR{} defaults to
  2796. using @samp{gnu} archive format (@pxref{Formats}), it uses standard
  2797. output as the archive, if no @option{--file} option has been given
  2798. (@pxref{file tutorial}), the default blocking factor is 20
  2799. (@pxref{Blocking Factor}). It also shows the default locations where
  2800. @command{tar} will look for @command{rmt} and @command{rsh} binaries.
  2801. @node verbose
  2802. @section Checking @command{tar} progress
  2803. Typically, @command{tar} performs most operations without reporting any
  2804. information to the user except error messages. When using @command{tar}
  2805. with many options, particularly ones with complicated or
  2806. difficult-to-predict behavior, it is possible to make serious mistakes.
  2807. @command{tar} provides several options that make observing @command{tar}
  2808. easier. These options cause @command{tar} to print information as it
  2809. progresses in its job, and you might want to use them just for being
  2810. more careful about what is going on, or merely for entertaining
  2811. yourself. If you have encountered a problem when operating on an
  2812. archive, however, you may need more information than just an error
  2813. message in order to solve the problem. The following options can be
  2814. helpful diagnostic tools.
  2815. @cindex Verbose operation
  2816. @opindex verbose
  2817. Normally, the @option{--list} (@option{-t}) command to list an archive
  2818. prints just the file names (one per line) and the other commands are
  2819. silent. When used with most operations, the @option{--verbose}
  2820. (@option{-v}) option causes @command{tar} to print the name of each
  2821. file or archive member as it is processed. This and the other options
  2822. which make @command{tar} print status information can be useful in
  2823. monitoring @command{tar}.
  2824. With @option{--create} or @option{--extract}, @option{--verbose} used
  2825. once just prints the names of the files or members as they are processed.
  2826. Using it twice causes @command{tar} to print a longer listing
  2827. (@xref{verbose member listing}, for the description) for each member.
  2828. Since @option{--list} already prints the names of the members,
  2829. @option{--verbose} used once with @option{--list} causes @command{tar}
  2830. to print an @samp{ls -l} type listing of the files in the archive.
  2831. The following examples both extract members with long list output:
  2832. @smallexample
  2833. $ @kbd{tar --extract --file=archive.tar --verbose --verbose}
  2834. $ @kbd{tar xvvf archive.tar}
  2835. @end smallexample
  2836. Verbose output appears on the standard output except when an archive is
  2837. being written to the standard output, as with @samp{tar --create
  2838. --file=- --verbose} (@samp{tar cfv -}, or even @samp{tar cv}---if the
  2839. installer let standard output be the default archive). In that case
  2840. @command{tar} writes verbose output to the standard error stream.
  2841. If @option{--index-file=@var{file}} is specified, @command{tar} sends
  2842. verbose output to @var{file} rather than to standard output or standard
  2843. error.
  2844. @anchor{totals}
  2845. @cindex Obtaining total status information
  2846. @opindex totals
  2847. The @option{--totals} option causes @command{tar} to print on the
  2848. standard error the total amount of bytes transferred when processing
  2849. an archive. When creating or appending to an archive, this option
  2850. prints the number of bytes written to the archive and the average
  2851. speed at which they have been written, e.g.:
  2852. @smallexample
  2853. @group
  2854. $ @kbd{tar -c -f archive.tar --totals /home}
  2855. Total bytes written: 7924664320 (7.4GiB, 85MiB/s)
  2856. @end group
  2857. @end smallexample
  2858. When reading an archive, this option displays the number of bytes
  2859. read:
  2860. @smallexample
  2861. @group
  2862. $ @kbd{tar -x -f archive.tar --totals}
  2863. Total bytes read: 7924664320 (7.4GiB, 95MiB/s)
  2864. @end group
  2865. @end smallexample
  2866. Finally, when deleting from an archive, the @option{--totals} option
  2867. displays both numbers plus number of bytes removed from the archive:
  2868. @smallexample
  2869. @group
  2870. $ @kbd{tar --delete -f foo.tar --totals --wildcards '*~'}
  2871. Total bytes read: 9543680 (9.2MiB, 201MiB/s)
  2872. Total bytes written: 3829760 (3.7MiB, 81MiB/s)
  2873. Total bytes deleted: 1474048
  2874. @end group
  2875. @end smallexample
  2876. You can also obtain this information on request. When
  2877. @option{--totals} is used with an argument, this argument is
  2878. interpreted as a symbolic name of a signal, upon delivery of which the
  2879. statistics is to be printed:
  2880. @table @option
  2881. @item --totals=@var{signo}
  2882. Print statistics upon delivery of signal @var{signo}. Valid arguments
  2883. are: @code{SIGHUP}, @code{SIGQUIT}, @code{SIGINT}, @code{SIGUSR1} and
  2884. @code{SIGUSR2}. Shortened names without @samp{SIG} prefix are also
  2885. accepted.
  2886. @end table
  2887. Both forms of @option{--totals} option can be used simultaneously.
  2888. Thus, @kbd{tar -x --totals --totals=USR1} instructs @command{tar} to
  2889. extract all members from its default archive and print statistics
  2890. after finishing the extraction, as well as when receiving signal
  2891. @code{SIGUSR1}.
  2892. @anchor{Progress information}
  2893. @cindex Progress information
  2894. The @option{--checkpoint} option prints an occasional message
  2895. as @command{tar} reads or writes the archive. It is designed for
  2896. those who don't need the more detailed (and voluminous) output of
  2897. @option{--block-number} (@option{-R}), but do want visual confirmation
  2898. that @command{tar} is actually making forward progress. By default it
  2899. prints a message each 10 records read or written. This can be changed
  2900. by giving it a numeric argument after an equal sign:
  2901. @smallexample
  2902. $ @kbd{tar -c --checkpoint=1000} /var
  2903. tar: Write checkpoint 1000
  2904. tar: Write checkpoint 2000
  2905. tar: Write checkpoint 3000
  2906. @end smallexample
  2907. This example shows the default checkpoint message used by
  2908. @command{tar}. If you place a dot immediately after the equal
  2909. sign, it will print a @samp{.} at each checkpoint@footnote{This is
  2910. actually a shortcut for @option{--checkpoint=@var{n}
  2911. --checkpoint-action=dot}. @xref{checkpoints, dot}.}. For example:
  2912. @smallexample
  2913. $ @kbd{tar -c --checkpoint=.1000} /var
  2914. ...
  2915. @end smallexample
  2916. The @option{--checkpoint} option provides a flexible mechanism for
  2917. executing arbitrary actions upon hitting checkpoints, see the next
  2918. section (@pxref{checkpoints}), for more information on it.
  2919. @opindex show-omitted-dirs
  2920. @anchor{show-omitted-dirs}
  2921. The @option{--show-omitted-dirs} option, when reading an archive---with
  2922. @option{--list} or @option{--extract}, for example---causes a message
  2923. to be printed for each directory in the archive which is skipped.
  2924. This happens regardless of the reason for skipping: the directory might
  2925. not have been named on the command line (implicitly or explicitly),
  2926. it might be excluded by the use of the
  2927. @option{--exclude=@var{pattern}} option, or some other reason.
  2928. @opindex block-number
  2929. @cindex Block number where error occurred
  2930. @anchor{block-number}
  2931. If @option{--block-number} (@option{-R}) is used, @command{tar} prints, along with
  2932. every message it would normally produce, the block number within the
  2933. archive where the message was triggered. Also, supplementary messages
  2934. are triggered when reading blocks full of NULs, or when hitting end of
  2935. file on the archive. As of now, if the archive if properly terminated
  2936. with a NUL block, the reading of the file may stop before end of file
  2937. is met, so the position of end of file will not usually show when
  2938. @option{--block-number} (@option{-R}) is used. Note that @GNUTAR{}
  2939. drains the archive before exiting when reading the
  2940. archive from a pipe.
  2941. @cindex Error message, block number of
  2942. This option is especially useful when reading damaged archives, since
  2943. it helps pinpoint the damaged sections. It can also be used with
  2944. @option{--list} (@option{-t}) when listing a file-system backup tape, allowing you to
  2945. choose among several backup tapes when retrieving a file later, in
  2946. favor of the tape where the file appears earliest (closest to the
  2947. front of the tape). @xref{backup}.
  2948. @node checkpoints
  2949. @section Checkpoints
  2950. @cindex checkpoints, defined
  2951. @opindex checkpoint
  2952. @opindex checkpoint-action
  2953. A @dfn{checkpoint} is a moment of time before writing @var{n}th record to
  2954. the archive (a @dfn{write checkpoint}), or before reading @var{n}th record
  2955. from the archive (a @dfn{read checkpoint}). Checkpoints allow to
  2956. periodically execute arbitrary actions.
  2957. The checkpoint facility is enabled using the following option:
  2958. @table @option
  2959. @xopindex{checkpoint, defined}
  2960. @item --checkpoint[=@var{n}]
  2961. Schedule checkpoints before writing or reading each @var{n}th record.
  2962. The default value for @var{n} is 10.
  2963. @end table
  2964. A list of arbitrary @dfn{actions} can be executed at each checkpoint.
  2965. These actions include: pausing, displaying textual messages, and
  2966. executing arbitrary external programs. Actions are defined using
  2967. the @option{--checkpoint-action} option.
  2968. @table @option
  2969. @xopindex{checkpoint-action, defined}
  2970. @item --checkpoint-action=@var{action}
  2971. Execute an @var{action} at each checkpoint.
  2972. @end table
  2973. @cindex @code{echo}, checkpoint action
  2974. The simplest value of @var{action} is @samp{echo}. It instructs
  2975. @command{tar} to display the default message on the standard error
  2976. stream upon arriving at each checkpoint. The default message is (in
  2977. @acronym{POSIX} locale) @samp{Write checkpoint @var{n}}, for write
  2978. checkpoints, and @samp{Read checkpoint @var{n}}, for read checkpoints.
  2979. Here, @var{n} represents ordinal number of the checkpoint.
  2980. In another locales, translated versions of this message are used.
  2981. This is the default action, so running:
  2982. @smallexample
  2983. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=echo} /var
  2984. @end smallexample
  2985. @noindent
  2986. is equivalent to:
  2987. @smallexample
  2988. $ @kbd{tar -c --checkpoint=1000} /var
  2989. @end smallexample
  2990. The @samp{echo} action also allows to supply a customized message.
  2991. You do so by placing an equals sign and the message right after it,
  2992. e.g.:
  2993. @smallexample
  2994. --checkpoint-action="echo=Hit %s checkpoint #%u"
  2995. @end smallexample
  2996. The @samp{%s} and @samp{%u} in the above example are
  2997. @dfn{meta-characters}. The @samp{%s} meta-character is replaced with
  2998. the @dfn{type} of the checkpoint: @samp{write} or
  2999. @samp{read} (or a corresponding translated version in locales other
  3000. than @acronym{POSIX}). The @samp{%u} meta-character is replaced with
  3001. the ordinal number of the checkpoint. Thus, the above example could
  3002. produce the following output when used with the @option{--create}
  3003. option:
  3004. @smallexample
  3005. tar: Hit write checkpoint #10
  3006. tar: Hit write checkpoint #20
  3007. tar: Hit write checkpoint #30
  3008. @end smallexample
  3009. Aside from meta-character expansion, the message string is subject to
  3010. @dfn{unquoting}, during which the backslash @dfn{escape sequences} are
  3011. replaced with their corresponding @acronym{ASCII} characters
  3012. (@pxref{escape sequences}). E.g. the following action will produce an
  3013. audible bell and the message described above at each checkpoint:
  3014. @smallexample
  3015. --checkpoint-action='echo=\aHit %s checkpoint #%u'
  3016. @end smallexample
  3017. @cindex @code{bell}, checkpoint action
  3018. There is also a special action which produces an audible signal:
  3019. @samp{bell}. It is not equivalent to @samp{echo='\a'}, because
  3020. @samp{bell} sends the bell directly to the console (@file{/dev/tty}),
  3021. whereas @samp{echo='\a'} sends it to the standard error.
  3022. @cindex @code{ttyout}, checkpoint action
  3023. The @samp{ttyout=@var{string}} action outputs @var{string} to
  3024. @file{/dev/tty}, so it can be used even if the standard output is
  3025. redirected elsewhere. The @var{string} is subject to the same
  3026. modifications as with @samp{echo} action. In contrast to the latter,
  3027. @samp{ttyout} does not prepend @command{tar} executable name to the
  3028. string, nor does it output a newline after it. For example, the
  3029. following action will print the checkpoint message at the same screen
  3030. line, overwriting any previous message:
  3031. @smallexample
  3032. --checkpoint-action="ttyout=\rHit %s checkpoint #%u"
  3033. @end smallexample
  3034. @cindex @code{dot}, checkpoint action
  3035. Another available checkpoint action is @samp{dot} (or @samp{.}). It
  3036. instructs @command{tar} to print a single dot on the standard listing
  3037. stream, e.g.:
  3038. @smallexample
  3039. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=dot} /var
  3040. ...
  3041. @end smallexample
  3042. For compatibility with previous @GNUTAR{} versions, this action can
  3043. be abbreviated by placing a dot in front of the checkpoint frequency,
  3044. as shown in the previous section.
  3045. @cindex @code{sleep}, checkpoint action
  3046. Yet another action, @samp{sleep}, pauses @command{tar} for a specified
  3047. amount of seconds. The following example will stop for 30 seconds at each
  3048. checkpoint:
  3049. @smallexample
  3050. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=sleep=30}
  3051. @end smallexample
  3052. @cindex @code{exec}, checkpoint action
  3053. Finally, the @code{exec} action executes a given external program.
  3054. For example:
  3055. @smallexample
  3056. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=exec=/sbin/cpoint}
  3057. @end smallexample
  3058. This program is executed using @command{/bin/sh -c}, with no
  3059. additional arguments. Its exit code is ignored. It gets a copy of
  3060. @command{tar}'s environment plus the following variables:
  3061. @table @env
  3062. @vrindex TAR_VERSION, checkpoint script environment
  3063. @item TAR_VERSION
  3064. @GNUTAR{} version number.
  3065. @vrindex TAR_ARCHIVE, checkpoint script environment
  3066. @item TAR_ARCHIVE
  3067. The name of the archive @command{tar} is processing.
  3068. @vrindex TAR_BLOCKING_FACTOR, checkpoint script environment
  3069. @item TAR_BLOCKING_FACTOR
  3070. Current blocking factor (@pxref{Blocking}.
  3071. @vrindex TAR_CHECKPOINT, checkpoint script environment
  3072. @item TAR_CHECKPOINT
  3073. The checkpoint number.
  3074. @vrindex TAR_SUBCOMMAND, checkpoint script environment
  3075. @item TAR_SUBCOMMAND
  3076. A short option describing the operation @command{tar} is executing
  3077. @xref{Operations}, for a complete list of subcommand options.
  3078. @vrindex TAR_FORMAT, checkpoint script environment
  3079. @item TAR_FORMAT
  3080. Format of the archive being processed. @xref{Formats}, for a complete
  3081. list of archive format names.
  3082. @end table
  3083. Any number of actions can be defined, by supplying several
  3084. @option{--checkpoint-action} options in the command line. For
  3085. example, the command below displays two messages, pauses
  3086. execution for 30 seconds and executes the @file{/sbin/cpoint} script:
  3087. @example
  3088. @group
  3089. $ @kbd{tar -c -f arc.tar \
  3090. --checkpoint-action='\aecho=Hit %s checkpoint #%u' \
  3091. --checkpoint-action='echo=Sleeping for 30 seconds' \
  3092. --checkpoint-action='sleep=30' \
  3093. --checkpoint-action='exec=/sbin/cpoint'}
  3094. @end group
  3095. @end example
  3096. This example also illustrates the fact that
  3097. @option{--checkpoint-action} can be used without
  3098. @option{--checkpoint}. In this case, the default checkpoint frequency
  3099. (at each 10th record) is assumed.
  3100. @node interactive
  3101. @section Asking for Confirmation During Operations
  3102. @cindex Interactive operation
  3103. Typically, @command{tar} carries out a command without stopping for
  3104. further instructions. In some situations however, you may want to
  3105. exclude some files and archive members from the operation (for instance
  3106. if disk or storage space is tight). You can do this by excluding
  3107. certain files automatically (@pxref{Choosing}), or by performing
  3108. an operation interactively, using the @option{--interactive} (@option{-w}) option.
  3109. @command{tar} also accepts @option{--confirmation} for this option.
  3110. @opindex interactive
  3111. When the @option{--interactive} (@option{-w}) option is specified, before
  3112. reading, writing, or deleting files, @command{tar} first prints a message
  3113. for each such file, telling what operation it intends to take, then asks
  3114. for confirmation on the terminal. The actions which require
  3115. confirmation include adding a file to the archive, extracting a file
  3116. from the archive, deleting a file from the archive, and deleting a file
  3117. from disk. To confirm the action, you must type a line of input
  3118. beginning with @samp{y}. If your input line begins with anything other
  3119. than @samp{y}, @command{tar} skips that file.
  3120. If @command{tar} is reading the archive from the standard input,
  3121. @command{tar} opens the file @file{/dev/tty} to support the interactive
  3122. communications.
  3123. Verbose output is normally sent to standard output, separate from
  3124. other error messages. However, if the archive is produced directly
  3125. on standard output, then verbose output is mixed with errors on
  3126. @code{stderr}. Producing the archive on standard output may be used
  3127. as a way to avoid using disk space, when the archive is soon to be
  3128. consumed by another process reading it, say. Some people felt the need
  3129. of producing an archive on stdout, still willing to segregate between
  3130. verbose output and error output. A possible approach would be using a
  3131. named pipe to receive the archive, and having the consumer process to
  3132. read from that named pipe. This has the advantage of letting standard
  3133. output free to receive verbose output, all separate from errors.
  3134. @node operations
  3135. @chapter @GNUTAR{} Operations
  3136. @menu
  3137. * Basic tar::
  3138. * Advanced tar::
  3139. * create options::
  3140. * extract options::
  3141. * backup::
  3142. * Applications::
  3143. * looking ahead::
  3144. @end menu
  3145. @node Basic tar
  3146. @section Basic @GNUTAR{} Operations
  3147. The basic @command{tar} operations, @option{--create} (@option{-c}),
  3148. @option{--list} (@option{-t}) and @option{--extract} (@option{--get},
  3149. @option{-x}), are currently presented and described in the tutorial
  3150. chapter of this manual. This section provides some complementary notes
  3151. for these operations.
  3152. @table @option
  3153. @xopindex{create, complementary notes}
  3154. @item --create
  3155. @itemx -c
  3156. Creating an empty archive would have some kind of elegance. One can
  3157. initialize an empty archive and later use @option{--append}
  3158. (@option{-r}) for adding all members. Some applications would not
  3159. welcome making an exception in the way of adding the first archive
  3160. member. On the other hand, many people reported that it is
  3161. dangerously too easy for @command{tar} to destroy a magnetic tape with
  3162. an empty archive@footnote{This is well described in @cite{Unix-haters
  3163. Handbook}, by Simson Garfinkel, Daniel Weise & Steven Strassmann, IDG
  3164. Books, ISBN 1-56884-203-1.}. The two most common errors are:
  3165. @enumerate
  3166. @item
  3167. Mistakingly using @code{create} instead of @code{extract}, when the
  3168. intent was to extract the full contents of an archive. This error
  3169. is likely: keys @kbd{c} and @kbd{x} are right next to each other on
  3170. the QWERTY keyboard. Instead of being unpacked, the archive then
  3171. gets wholly destroyed. When users speak about @dfn{exploding} an
  3172. archive, they usually mean something else :-).
  3173. @item
  3174. Forgetting the argument to @code{file}, when the intent was to create
  3175. an archive with a single file in it. This error is likely because a
  3176. tired user can easily add the @kbd{f} key to the cluster of option
  3177. letters, by the mere force of habit, without realizing the full
  3178. consequence of doing so. The usual consequence is that the single
  3179. file, which was meant to be saved, is rather destroyed.
  3180. @end enumerate
  3181. So, recognizing the likelihood and the catastrophic nature of these
  3182. errors, @GNUTAR{} now takes some distance from elegance, and
  3183. cowardly refuses to create an archive when @option{--create} option is
  3184. given, there are no arguments besides options, and
  3185. @option{--files-from} (@option{-T}) option is @emph{not} used. To get
  3186. around the cautiousness of @GNUTAR{} and nevertheless create an
  3187. archive with nothing in it, one may still use, as the value for the
  3188. @option{--files-from} option, a file with no names in it, as shown in
  3189. the following commands:
  3190. @smallexample
  3191. @kbd{tar --create --file=empty-archive.tar --files-from=/dev/null}
  3192. @kbd{tar cfT empty-archive.tar /dev/null}
  3193. @end smallexample
  3194. @xopindex{extract, complementary notes}
  3195. @item --extract
  3196. @itemx --get
  3197. @itemx -x
  3198. A socket is stored, within a @GNUTAR{} archive, as a pipe.
  3199. @item @option{--list} (@option{-t})
  3200. @GNUTAR{} now shows dates as @samp{1996-08-30},
  3201. while it used to show them as @samp{Aug 30 1996}. Preferably,
  3202. people should get used to ISO 8601 dates. Local American dates should
  3203. be made available again with full date localization support, once
  3204. ready. In the meantime, programs not being localizable for dates
  3205. should prefer international dates, that's really the way to go.
  3206. Look up @url{http://www.cl.cam.ac.uk/@/~mgk25/@/iso-time.html} if you
  3207. are curious, it contains a detailed explanation of the ISO 8601 standard.
  3208. @end table
  3209. @node Advanced tar
  3210. @section Advanced @GNUTAR{} Operations
  3211. Now that you have learned the basics of using @GNUTAR{}, you may want
  3212. to learn about further ways in which @command{tar} can help you.
  3213. This chapter presents five, more advanced operations which you probably
  3214. won't use on a daily basis, but which serve more specialized functions.
  3215. We also explain the different styles of options and why you might want
  3216. to use one or another, or a combination of them in your @command{tar}
  3217. commands. Additionally, this chapter includes options which allow you to
  3218. define the output from @command{tar} more carefully, and provide help and
  3219. error correction in special circumstances.
  3220. @FIXME{check this after the chapter is actually revised to make sure
  3221. it still introduces the info in the chapter correctly : ).}
  3222. @menu
  3223. * Operations::
  3224. * append::
  3225. * update::
  3226. * concatenate::
  3227. * delete::
  3228. * compare::
  3229. @end menu
  3230. @node Operations
  3231. @subsection The Five Advanced @command{tar} Operations
  3232. @UNREVISED
  3233. In the last chapter, you learned about the first three operations to
  3234. @command{tar}. This chapter presents the remaining five operations to
  3235. @command{tar}: @option{--append}, @option{--update}, @option{--concatenate},
  3236. @option{--delete}, and @option{--compare}.
  3237. You are not likely to use these operations as frequently as those
  3238. covered in the last chapter; however, since they perform specialized
  3239. functions, they are quite useful when you do need to use them. We
  3240. will give examples using the same directory and files that you created
  3241. in the last chapter. As you may recall, the directory is called
  3242. @file{practice}, the files are @samp{jazz}, @samp{blues}, @samp{folk},
  3243. @samp{rock}, and the two archive files you created are
  3244. @samp{collection.tar} and @samp{music.tar}.
  3245. We will also use the archive files @samp{afiles.tar} and
  3246. @samp{bfiles.tar}. The archive @samp{afiles.tar} contains the members @samp{apple},
  3247. @samp{angst}, and @samp{aspic}; @samp{bfiles.tar} contains the members
  3248. @samp{./birds}, @samp{baboon}, and @samp{./box}.
  3249. Unless we state otherwise, all practicing you do and examples you follow
  3250. in this chapter will take place in the @file{practice} directory that
  3251. you created in the previous chapter; see @ref{prepare for examples}.
  3252. (Below in this section, we will remind you of the state of the examples
  3253. where the last chapter left them.)
  3254. The five operations that we will cover in this chapter are:
  3255. @table @option
  3256. @item --append
  3257. @itemx -r
  3258. Add new entries to an archive that already exists.
  3259. @item --update
  3260. @itemx -r
  3261. Add more recent copies of archive members to the end of an archive, if
  3262. they exist.
  3263. @item --concatenate
  3264. @itemx --catenate
  3265. @itemx -A
  3266. Add one or more pre-existing archives to the end of another archive.
  3267. @item --delete
  3268. Delete items from an archive (does not work on tapes).
  3269. @item --compare
  3270. @itemx --diff
  3271. @itemx -d
  3272. Compare archive members to their counterparts in the file system.
  3273. @end table
  3274. @node append
  3275. @subsection How to Add Files to Existing Archives: @option{--append}
  3276. @UNREVISED
  3277. @opindex append
  3278. If you want to add files to an existing archive, you don't need to
  3279. create a new archive; you can use @option{--append} (@option{-r}).
  3280. The archive must already exist in order to use @option{--append}. (A
  3281. related operation is the @option{--update} operation; you can use this
  3282. to add newer versions of archive members to an existing archive. To learn how to
  3283. do this with @option{--update}, @pxref{update}.)
  3284. If you use @option{--append} to add a file that has the same name as an
  3285. archive member to an archive containing that archive member, then the
  3286. old member is not deleted. What does happen, however, is somewhat
  3287. complex. @command{tar} @emph{allows} you to have infinite number of files
  3288. with the same name. Some operations treat these same-named members no
  3289. differently than any other set of archive members: for example, if you
  3290. view an archive with @option{--list} (@option{-t}), you will see all
  3291. of those members listed, with their data modification times, owners, etc.
  3292. Other operations don't deal with these members as perfectly as you might
  3293. prefer; if you were to use @option{--extract} to extract the archive,
  3294. only the most recently added copy of a member with the same name as four
  3295. other members would end up in the working directory. This is because
  3296. @option{--extract} extracts an archive in the order the members appeared
  3297. in the archive; the most recently archived members will be extracted
  3298. last. Additionally, an extracted member will @emph{replace} a file of
  3299. the same name which existed in the directory already, and @command{tar}
  3300. will not prompt you about this@footnote{Unless you give it
  3301. @option{--keep-old-files} option, or the disk copy is newer than the
  3302. the one in the archive and you invoke @command{tar} with
  3303. @option{--keep-newer-files} option}. Thus, only the most recently archived
  3304. member will end up being extracted, as it will replace the one
  3305. extracted before it, and so on.
  3306. There exists a special option that allows you to get around this
  3307. behavior and extract (or list) only a particular copy of the file.
  3308. This is @option{--occurrence} option. If you run @command{tar} with
  3309. this option, it will extract only the first copy of the file. You
  3310. may also give this option an argument specifying the number of
  3311. copy to be extracted. Thus, for example if the archive
  3312. @file{archive.tar} contained three copies of file @file{myfile}, then
  3313. the command
  3314. @smallexample
  3315. tar --extract --file archive.tar --occurrence=2 myfile
  3316. @end smallexample
  3317. @noindent
  3318. would extract only the second copy. @xref{Option
  3319. Summary,---occurrence}, for the description of @option{--occurrence}
  3320. option.
  3321. @FIXME{ hag -- you might want to incorporate some of the above into the
  3322. MMwtSN node; not sure. i didn't know how to make it simpler...
  3323. There are a few ways to get around this. (maybe xref Multiple Members
  3324. with the Same Name.}
  3325. @cindex Members, replacing with other members
  3326. @cindex Replacing members with other members
  3327. If you want to replace an archive member, use @option{--delete} to
  3328. delete the member you want to remove from the archive, , and then use
  3329. @option{--append} to add the member you want to be in the archive. Note
  3330. that you can not change the order of the archive; the most recently
  3331. added member will still appear last. In this sense, you cannot truly
  3332. ``replace'' one member with another. (Replacing one member with another
  3333. will not work on certain types of media, such as tapes; see @ref{delete}
  3334. and @ref{Media}, for more information.)
  3335. @menu
  3336. * appending files:: Appending Files to an Archive
  3337. * multiple::
  3338. @end menu
  3339. @node appending files
  3340. @subsubsection Appending Files to an Archive
  3341. @UNREVISED
  3342. @cindex Adding files to an Archive
  3343. @cindex Appending files to an Archive
  3344. @cindex Archives, Appending files to
  3345. The simplest way to add a file to an already existing archive is the
  3346. @option{--append} (@option{-r}) operation, which writes specified
  3347. files into the archive whether or not they are already among the
  3348. archived files.
  3349. When you use @option{--append}, you @emph{must} specify file name
  3350. arguments, as there is no default. If you specify a file that already
  3351. exists in the archive, another copy of the file will be added to the
  3352. end of the archive. As with other operations, the member names of the
  3353. newly added files will be exactly the same as their names given on the
  3354. command line. The @option{--verbose} (@option{-v}) option will print
  3355. out the names of the files as they are written into the archive.
  3356. @option{--append} cannot be performed on some tape drives, unfortunately,
  3357. due to deficiencies in the formats those tape drives use. The archive
  3358. must be a valid @command{tar} archive, or else the results of using this
  3359. operation will be unpredictable. @xref{Media}.
  3360. To demonstrate using @option{--append} to add a file to an archive,
  3361. create a file called @file{rock} in the @file{practice} directory.
  3362. Make sure you are in the @file{practice} directory. Then, run the
  3363. following @command{tar} command to add @file{rock} to
  3364. @file{collection.tar}:
  3365. @smallexample
  3366. $ @kbd{tar --append --file=collection.tar rock}
  3367. @end smallexample
  3368. @noindent
  3369. If you now use the @option{--list} (@option{-t}) operation, you will see that
  3370. @file{rock} has been added to the archive:
  3371. @smallexample
  3372. $ @kbd{tar --list --file=collection.tar}
  3373. -rw-r--r-- me user 28 1996-10-18 16:31 jazz
  3374. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3375. -rw-r--r-- me user 20 1996-09-23 16:44 folk
  3376. -rw-r--r-- me user 20 1996-09-23 16:44 rock
  3377. @end smallexample
  3378. @node multiple
  3379. @subsubsection Multiple Members with the Same Name
  3380. You can use @option{--append} (@option{-r}) to add copies of files
  3381. which have been updated since the archive was created. (However, we
  3382. do not recommend doing this since there is another @command{tar}
  3383. option called @option{--update}; @xref{update}, for more information.
  3384. We describe this use of @option{--append} here for the sake of
  3385. completeness.) When you extract the archive, the older version will
  3386. be effectively lost. This works because files are extracted from an
  3387. archive in the order in which they were archived. Thus, when the
  3388. archive is extracted, a file archived later in time will replace a
  3389. file of the same name which was archived earlier, even though the
  3390. older version of the file will remain in the archive unless you delete
  3391. all versions of the file.
  3392. Supposing you change the file @file{blues} and then append the changed
  3393. version to @file{collection.tar}. As you saw above, the original
  3394. @file{blues} is in the archive @file{collection.tar}. If you change the
  3395. file and append the new version of the file to the archive, there will
  3396. be two copies in the archive. When you extract the archive, the older
  3397. version of the file will be extracted first, and then replaced by the
  3398. newer version when it is extracted.
  3399. You can append the new, changed copy of the file @file{blues} to the
  3400. archive in this way:
  3401. @smallexample
  3402. $ @kbd{tar --append --verbose --file=collection.tar blues}
  3403. blues
  3404. @end smallexample
  3405. @noindent
  3406. Because you specified the @option{--verbose} option, @command{tar} has
  3407. printed the name of the file being appended as it was acted on. Now
  3408. list the contents of the archive:
  3409. @smallexample
  3410. $ @kbd{tar --list --verbose --file=collection.tar}
  3411. -rw-r--r-- me user 28 1996-10-18 16:31 jazz
  3412. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3413. -rw-r--r-- me user 20 1996-09-23 16:44 folk
  3414. -rw-r--r-- me user 20 1996-09-23 16:44 rock
  3415. -rw-r--r-- me user 58 1996-10-24 18:30 blues
  3416. @end smallexample
  3417. @noindent
  3418. The newest version of @file{blues} is now at the end of the archive
  3419. (note the different creation dates and file sizes). If you extract
  3420. the archive, the older version of the file @file{blues} will be
  3421. replaced by the newer version. You can confirm this by extracting
  3422. the archive and running @samp{ls} on the directory.
  3423. If you wish to extract the first occurrence of the file @file{blues}
  3424. from the archive, use @option{--occurrence} option, as shown in
  3425. the following example:
  3426. @smallexample
  3427. $ @kbd{tar --extract -vv --occurrence --file=collection.tar blues}
  3428. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3429. @end smallexample
  3430. @xref{Writing}, for more information on @option{--extract} and
  3431. @xref{Option Summary, --occurrence}, for the description of
  3432. @option{--occurrence} option.
  3433. @node update
  3434. @subsection Updating an Archive
  3435. @UNREVISED
  3436. @cindex Updating an archive
  3437. @opindex update
  3438. In the previous section, you learned how to use @option{--append} to
  3439. add a file to an existing archive. A related operation is
  3440. @option{--update} (@option{-u}). The @option{--update} operation
  3441. updates a @command{tar} archive by comparing the date of the specified
  3442. archive members against the date of the file with the same name. If
  3443. the file has been modified more recently than the archive member, then
  3444. the newer version of the file is added to the archive (as with
  3445. @option{--append}).
  3446. Unfortunately, you cannot use @option{--update} with magnetic tape drives.
  3447. The operation will fail.
  3448. @FIXME{other examples of media on which --update will fail? need to ask
  3449. charles and/or mib/thomas/dave shevett..}
  3450. Both @option{--update} and @option{--append} work by adding to the end
  3451. of the archive. When you extract a file from the archive, only the
  3452. version stored last will wind up in the file system, unless you use
  3453. the @option{--backup} option. @xref{multiple}, for a detailed discussion.
  3454. @menu
  3455. * how to update::
  3456. @end menu
  3457. @node how to update
  3458. @subsubsection How to Update an Archive Using @option{--update}
  3459. You must use file name arguments with the @option{--update}
  3460. (@option{-u}) operation. If you don't specify any files,
  3461. @command{tar} won't act on any files and won't tell you that it didn't
  3462. do anything (which may end up confusing you).
  3463. @c note: the above parenthetical added because in fact, this
  3464. @c behavior just confused the author. :-)
  3465. To see the @option{--update} option at work, create a new file,
  3466. @file{classical}, in your practice directory, and some extra text to the
  3467. file @file{blues}, using any text editor. Then invoke @command{tar} with
  3468. the @samp{update} operation and the @option{--verbose} (@option{-v})
  3469. option specified, using the names of all the files in the practice
  3470. directory as file name arguments:
  3471. @smallexample
  3472. $ @kbd{tar --update -v -f collection.tar blues folk rock classical}
  3473. blues
  3474. classical
  3475. $
  3476. @end smallexample
  3477. @noindent
  3478. Because we have specified verbose mode, @command{tar} prints out the names
  3479. of the files it is working on, which in this case are the names of the
  3480. files that needed to be updated. If you run @samp{tar --list} and look
  3481. at the archive, you will see @file{blues} and @file{classical} at its
  3482. end. There will be a total of two versions of the member @samp{blues};
  3483. the one at the end will be newer and larger, since you added text before
  3484. updating it.
  3485. (The reason @command{tar} does not overwrite the older file when updating
  3486. it is because writing to the middle of a section of tape is a difficult
  3487. process. Tapes are not designed to go backward. @xref{Media}, for more
  3488. information about tapes.
  3489. @option{--update} (@option{-u}) is not suitable for performing backups for two
  3490. reasons: it does not change directory content entries, and it
  3491. lengthens the archive every time it is used. The @GNUTAR{}
  3492. options intended specifically for backups are more
  3493. efficient. If you need to run backups, please consult @ref{Backups}.
  3494. @node concatenate
  3495. @subsection Combining Archives with @option{--concatenate}
  3496. @cindex Adding archives to an archive
  3497. @cindex Concatenating Archives
  3498. @opindex concatenate
  3499. @opindex catenate
  3500. @c @cindex @option{-A} described
  3501. Sometimes it may be convenient to add a second archive onto the end of
  3502. an archive rather than adding individual files to the archive. To add
  3503. one or more archives to the end of another archive, you should use the
  3504. @option{--concatenate} (@option{--catenate}, @option{-A}) operation.
  3505. To use @option{--concatenate}, give the first archive with
  3506. @option{--file} option and name the rest of archives to be
  3507. concatenated on the command line. The members, and their member
  3508. names, will be copied verbatim from those archives to the first one.
  3509. @footnote{This can cause multiple members to have the same name, for
  3510. information on how this affects reading the archive, @ref{multiple}.}
  3511. The new, concatenated archive will be called by the same name as the
  3512. one given with the @option{--file} option. As usual, if you omit
  3513. @option{--file}, @command{tar} will use the value of the environment
  3514. variable @env{TAPE}, or, if this has not been set, the default archive name.
  3515. @FIXME{There is no way to specify a new name...}
  3516. To demonstrate how @option{--concatenate} works, create two small archives
  3517. called @file{bluesrock.tar} and @file{folkjazz.tar}, using the relevant
  3518. files from @file{practice}:
  3519. @smallexample
  3520. $ @kbd{tar -cvf bluesrock.tar blues rock}
  3521. blues
  3522. rock
  3523. $ @kbd{tar -cvf folkjazz.tar folk jazz}
  3524. folk
  3525. jazz
  3526. @end smallexample
  3527. @noindent
  3528. If you like, You can run @samp{tar --list} to make sure the archives
  3529. contain what they are supposed to:
  3530. @smallexample
  3531. $ @kbd{tar -tvf bluesrock.tar}
  3532. -rw-r--r-- melissa user 105 1997-01-21 19:42 blues
  3533. -rw-r--r-- melissa user 33 1997-01-20 15:34 rock
  3534. $ @kbd{tar -tvf jazzfolk.tar}
  3535. -rw-r--r-- melissa user 20 1996-09-23 16:44 folk
  3536. -rw-r--r-- melissa user 65 1997-01-30 14:15 jazz
  3537. @end smallexample
  3538. We can concatenate these two archives with @command{tar}:
  3539. @smallexample
  3540. $ @kbd{cd ..}
  3541. $ @kbd{tar --concatenate --file=bluesrock.tar jazzfolk.tar}
  3542. @end smallexample
  3543. If you now list the contents of the @file{bluesrock.tar}, you will see
  3544. that now it also contains the archive members of @file{jazzfolk.tar}:
  3545. @smallexample
  3546. $ @kbd{tar --list --file=bluesrock.tar}
  3547. blues
  3548. rock
  3549. folk
  3550. jazz
  3551. @end smallexample
  3552. When you use @option{--concatenate}, the source and target archives must
  3553. already exist and must have been created using compatible format
  3554. parameters. Notice, that @command{tar} does not check whether the
  3555. archives it concatenates have compatible formats, it does not
  3556. even check if the files are really tar archives.
  3557. Like @option{--append} (@option{-r}), this operation cannot be performed on some
  3558. tape drives, due to deficiencies in the formats those tape drives use.
  3559. @cindex @code{concatenate} vs @command{cat}
  3560. @cindex @command{cat} vs @code{concatenate}
  3561. It may seem more intuitive to you to want or try to use @command{cat} to
  3562. concatenate two archives instead of using the @option{--concatenate}
  3563. operation; after all, @command{cat} is the utility for combining files.
  3564. However, @command{tar} archives incorporate an end-of-file marker which
  3565. must be removed if the concatenated archives are to be read properly as
  3566. one archive. @option{--concatenate} removes the end-of-archive marker
  3567. from the target archive before each new archive is appended. If you use
  3568. @command{cat} to combine the archives, the result will not be a valid
  3569. @command{tar} format archive. If you need to retrieve files from an
  3570. archive that was added to using the @command{cat} utility, use the
  3571. @option{--ignore-zeros} (@option{-i}) option. @xref{Ignore Zeros}, for further
  3572. information on dealing with archives improperly combined using the
  3573. @command{cat} shell utility.
  3574. @node delete
  3575. @subsection Removing Archive Members Using @option{--delete}
  3576. @UNREVISED
  3577. @cindex Deleting files from an archive
  3578. @cindex Removing files from an archive
  3579. @opindex delete
  3580. You can remove members from an archive by using the @option{--delete}
  3581. option. Specify the name of the archive with @option{--file}
  3582. (@option{-f}) and then specify the names of the members to be deleted;
  3583. if you list no member names, nothing will be deleted. The
  3584. @option{--verbose} option will cause @command{tar} to print the names
  3585. of the members as they are deleted. As with @option{--extract}, you
  3586. must give the exact member names when using @samp{tar --delete}.
  3587. @option{--delete} will remove all versions of the named file from the
  3588. archive. The @option{--delete} operation can run very slowly.
  3589. Unlike other operations, @option{--delete} has no short form.
  3590. @cindex Tapes, using @option{--delete} and
  3591. @cindex Deleting from tape archives
  3592. This operation will rewrite the archive. You can only use
  3593. @option{--delete} on an archive if the archive device allows you to
  3594. write to any point on the media, such as a disk; because of this, it
  3595. does not work on magnetic tapes. Do not try to delete an archive member
  3596. from a magnetic tape; the action will not succeed, and you will be
  3597. likely to scramble the archive and damage your tape. There is no safe
  3598. way (except by completely re-writing the archive) to delete files from
  3599. most kinds of magnetic tape. @xref{Media}.
  3600. To delete all versions of the file @file{blues} from the archive
  3601. @file{collection.tar} in the @file{practice} directory, make sure you
  3602. are in that directory, and then,
  3603. @smallexample
  3604. $ @kbd{tar --list --file=collection.tar}
  3605. blues
  3606. folk
  3607. jazz
  3608. rock
  3609. $ @kbd{tar --delete --file=collection.tar blues}
  3610. $ @kbd{tar --list --file=collection.tar}
  3611. folk
  3612. jazz
  3613. rock
  3614. $
  3615. @end smallexample
  3616. @FIXME{Check if the above listing is actually produced after running
  3617. all the examples on collection.tar.}
  3618. The @option{--delete} option has been reported to work properly when
  3619. @command{tar} acts as a filter from @code{stdin} to @code{stdout}.
  3620. @node compare
  3621. @subsection Comparing Archive Members with the File System
  3622. @cindex Verifying the currency of an archive
  3623. @UNREVISED
  3624. @opindex compare
  3625. The @option{--compare} (@option{-d}), or @option{--diff} operation compares
  3626. specified archive members against files with the same names, and then
  3627. reports differences in file size, mode, owner, modification date and
  3628. contents. You should @emph{only} specify archive member names, not file
  3629. names. If you do not name any members, then @command{tar} will compare the
  3630. entire archive. If a file is represented in the archive but does not
  3631. exist in the file system, @command{tar} reports a difference.
  3632. You have to specify the record size of the archive when modifying an
  3633. archive with a non-default record size.
  3634. @command{tar} ignores files in the file system that do not have
  3635. corresponding members in the archive.
  3636. The following example compares the archive members @file{rock},
  3637. @file{blues} and @file{funk} in the archive @file{bluesrock.tar} with
  3638. files of the same name in the file system. (Note that there is no file,
  3639. @file{funk}; @command{tar} will report an error message.)
  3640. @smallexample
  3641. $ @kbd{tar --compare --file=bluesrock.tar rock blues funk}
  3642. rock
  3643. blues
  3644. tar: funk not found in archive
  3645. @end smallexample
  3646. The spirit behind the @option{--compare} (@option{--diff},
  3647. @option{-d}) option is to check whether the archive represents the
  3648. current state of files on disk, more than validating the integrity of
  3649. the archive media. For this later goal, @xref{verify}.
  3650. @node create options
  3651. @section Options Used by @option{--create}
  3652. @xopindex{create, additional options}
  3653. The previous chapter described the basics of how to use
  3654. @option{--create} (@option{-c}) to create an archive from a set of files.
  3655. @xref{create}. This section described advanced options to be used with
  3656. @option{--create}.
  3657. @menu
  3658. * override:: Overriding File Metadata.
  3659. * Ignore Failed Read::
  3660. @end menu
  3661. @node override
  3662. @subsection Overriding File Metadata
  3663. As described above, a @command{tar} archive keeps, for each member it contains,
  3664. its @dfn{metadata}, such as modification time, mode and ownership of
  3665. the file. @GNUTAR{} allows to replace these data with other values
  3666. when adding files to the archive. The options described in this
  3667. section affect creation of archives of any type. For POSIX archives,
  3668. see also @ref{PAX keywords}, for additional ways of controlling
  3669. metadata, stored in the archive.
  3670. @table @option
  3671. @opindex mode
  3672. @item --mode=@var{permissions}
  3673. When adding files to an archive, @command{tar} will use
  3674. @var{permissions} for the archive members, rather than the permissions
  3675. from the files. @var{permissions} can be specified either as an octal
  3676. number or as symbolic permissions, like with
  3677. @command{chmod} (@xref{File permissions, Permissions, File
  3678. permissions, fileutils, @acronym{GNU} file utilities}. This reference
  3679. also has useful information for those not being overly familiar with
  3680. the UNIX permission system). Using latter syntax allows for
  3681. more flexibility. For example, the value @samp{a+rw} adds read and write
  3682. permissions for everybody, while retaining executable bits on directories
  3683. or on any other file already marked as executable:
  3684. @smallexample
  3685. $ @kbd{tar -c -f archive.tar --mode='a+rw' .}
  3686. @end smallexample
  3687. @item --mtime=@var{date}
  3688. @opindex mtime
  3689. When adding files to an archive, @command{tar} will use @var{date} as
  3690. the modification time of members when creating archives, instead of
  3691. their actual modification times. The argument @var{date} can be
  3692. either a textual date representation in almost arbitrary format
  3693. (@pxref{Date input formats}) or a name of the existing file, starting
  3694. with @samp{/} or @samp{.}. In the latter case, the modification time
  3695. of that file will be used.
  3696. The following example will set the modification date to 00:00:00 UTC,
  3697. January 1, 1970:
  3698. @smallexample
  3699. $ @kbd{tar -c -f archive.tar --mtime='1970-01-01' .}
  3700. @end smallexample
  3701. @noindent
  3702. When used with @option{--verbose} (@pxref{verbose tutorial}) @GNUTAR{}
  3703. will try to convert the specified date back to its textual
  3704. representation and compare it with the one given with
  3705. @option{--mtime} options. If the two dates differ, @command{tar} will
  3706. print a warning saying what date it will use. This is to help user
  3707. ensure he is using the right date.
  3708. For example:
  3709. @smallexample
  3710. $ @kbd{tar -c -f archive.tar -v --mtime=yesterday .}
  3711. tar: Option --mtime: Treating date `yesterday' as 2006-06-20
  3712. 13:06:29.152478
  3713. @dots{}
  3714. @end smallexample
  3715. @item --owner=@var{user}
  3716. @opindex owner
  3717. Specifies that @command{tar} should use @var{user} as the owner of members
  3718. when creating archives, instead of the user associated with the source
  3719. file. The argument @var{user} can be either an existing user symbolic
  3720. name, or a decimal numeric user @acronym{ID}.
  3721. There is no value indicating a missing number, and @samp{0} usually means
  3722. @code{root}. Some people like to force @samp{0} as the value to offer in
  3723. their distributions for the owner of files, because the @code{root} user is
  3724. anonymous anyway, so that might as well be the owner of anonymous
  3725. archives. For example:
  3726. @smallexample
  3727. @group
  3728. $ @kbd{tar -c -f archive.tar --owner=0 .}
  3729. # @r{Or:}
  3730. $ @kbd{tar -c -f archive.tar --owner=root .}
  3731. @end group
  3732. @end smallexample
  3733. @item --group=@var{group}
  3734. @opindex group
  3735. Files added to the @command{tar} archive will have a group @acronym{ID} of @var{group},
  3736. rather than the group from the source file. The argument @var{group}
  3737. can be either an existing group symbolic name, or a decimal numeric group @acronym{ID}.
  3738. @end table
  3739. @node Ignore Failed Read
  3740. @subsection Ignore Fail Read
  3741. @table @option
  3742. @item --ignore-failed-read
  3743. @opindex ignore-failed-read
  3744. Do not exit with nonzero on unreadable files or directories.
  3745. @end table
  3746. @node extract options
  3747. @section Options Used by @option{--extract}
  3748. @UNREVISED
  3749. @xopindex{extract, additional options}
  3750. The previous chapter showed how to use @option{--extract} to extract
  3751. an archive into the file system. Various options cause @command{tar} to
  3752. extract more information than just file contents, such as the owner,
  3753. the permissions, the modification date, and so forth. This section
  3754. presents options to be used with @option{--extract} when certain special
  3755. considerations arise. You may review the information presented in
  3756. @ref{extract} for more basic information about the
  3757. @option{--extract} operation.
  3758. @menu
  3759. * Reading:: Options to Help Read Archives
  3760. * Writing:: Changing How @command{tar} Writes Files
  3761. * Scarce:: Coping with Scarce Resources
  3762. @end menu
  3763. @node Reading
  3764. @subsection Options to Help Read Archives
  3765. @cindex Options when reading archives
  3766. @UNREVISED
  3767. @cindex Reading incomplete records
  3768. @cindex Records, incomplete
  3769. @opindex read-full-records
  3770. Normally, @command{tar} will request data in full record increments from
  3771. an archive storage device. If the device cannot return a full record,
  3772. @command{tar} will report an error. However, some devices do not always
  3773. return full records, or do not require the last record of an archive to
  3774. be padded out to the next record boundary. To keep reading until you
  3775. obtain a full record, or to accept an incomplete record if it contains
  3776. an end-of-archive marker, specify the @option{--read-full-records} (@option{-B}) option
  3777. in conjunction with the @option{--extract} or @option{--list} operations.
  3778. @xref{Blocking}.
  3779. The @option{--read-full-records} (@option{-B}) option is turned on by default when
  3780. @command{tar} reads an archive from standard input, or from a remote
  3781. machine. This is because on @acronym{BSD} Unix systems, attempting to read a
  3782. pipe returns however much happens to be in the pipe, even if it is
  3783. less than was requested. If this option were not enabled, @command{tar}
  3784. would fail as soon as it read an incomplete record from the pipe.
  3785. If you're not sure of the blocking factor of an archive, you can
  3786. read the archive by specifying @option{--read-full-records} (@option{-B}) and
  3787. @option{--blocking-factor=@var{512-size}} (@option{-b
  3788. @var{512-size}}), using a blocking factor larger than what the archive
  3789. uses. This lets you avoid having to determine the blocking factor
  3790. of an archive. @xref{Blocking Factor}.
  3791. @menu
  3792. * read full records::
  3793. * Ignore Zeros::
  3794. @end menu
  3795. @node read full records
  3796. @unnumberedsubsubsec Reading Full Records
  3797. @FIXME{need sentence or so of intro here}
  3798. @table @option
  3799. @opindex read-full-records
  3800. @item --read-full-records
  3801. @item -B
  3802. Use in conjunction with @option{--extract} (@option{--get},
  3803. @option{-x}) to read an archive which contains incomplete records, or
  3804. one which has a blocking factor less than the one specified.
  3805. @end table
  3806. @node Ignore Zeros
  3807. @unnumberedsubsubsec Ignoring Blocks of Zeros
  3808. @cindex End-of-archive blocks, ignoring
  3809. @cindex Ignoring end-of-archive blocks
  3810. @opindex ignore-zeros
  3811. Normally, @command{tar} stops reading when it encounters a block of zeros
  3812. between file entries (which usually indicates the end of the archive).
  3813. @option{--ignore-zeros} (@option{-i}) allows @command{tar} to
  3814. completely read an archive which contains a block of zeros before the
  3815. end (i.e., a damaged archive, or one that was created by concatenating
  3816. several archives together).
  3817. The @option{--ignore-zeros} (@option{-i}) option is turned off by default because many
  3818. versions of @command{tar} write garbage after the end-of-archive entry,
  3819. since that part of the media is never supposed to be read. @GNUTAR{}
  3820. does not write after the end of an archive, but seeks to
  3821. maintain compatibility among archiving utilities.
  3822. @table @option
  3823. @item --ignore-zeros
  3824. @itemx -i
  3825. To ignore blocks of zeros (i.e., end-of-archive entries) which may be
  3826. encountered while reading an archive. Use in conjunction with
  3827. @option{--extract} or @option{--list}.
  3828. @end table
  3829. @node Writing
  3830. @subsection Changing How @command{tar} Writes Files
  3831. @UNREVISED
  3832. @FIXME{Introductory paragraph}
  3833. @menu
  3834. * Dealing with Old Files::
  3835. * Overwrite Old Files::
  3836. * Keep Old Files::
  3837. * Keep Newer Files::
  3838. * Unlink First::
  3839. * Recursive Unlink::
  3840. * Data Modification Times::
  3841. * Setting Access Permissions::
  3842. * Directory Modification Times and Permissions::
  3843. * Writing to Standard Output::
  3844. * Writing to an External Program::
  3845. * remove files::
  3846. @end menu
  3847. @node Dealing with Old Files
  3848. @unnumberedsubsubsec Options Controlling the Overwriting of Existing Files
  3849. @xopindex{overwrite-dir, introduced}
  3850. When extracting files, if @command{tar} discovers that the extracted
  3851. file already exists, it normally replaces the file by removing it before
  3852. extracting it, to prevent confusion in the presence of hard or symbolic
  3853. links. (If the existing file is a symbolic link, it is removed, not
  3854. followed.) However, if a directory cannot be removed because it is
  3855. nonempty, @command{tar} normally overwrites its metadata (ownership,
  3856. permission, etc.). The @option{--overwrite-dir} option enables this
  3857. default behavior. To be more cautious and preserve the metadata of
  3858. such a directory, use the @option{--no-overwrite-dir} option.
  3859. @cindex Overwriting old files, prevention
  3860. @xopindex{keep-old-files, introduced}
  3861. To be even more cautious and prevent existing files from being replaced, use
  3862. the @option{--keep-old-files} (@option{-k}) option. It causes @command{tar} to refuse
  3863. to replace or update a file that already exists, i.e., a file with the
  3864. same name as an archive member prevents extraction of that archive
  3865. member. Instead, it reports an error.
  3866. @xopindex{overwrite, introduced}
  3867. To be more aggressive about altering existing files, use the
  3868. @option{--overwrite} option. It causes @command{tar} to overwrite
  3869. existing files and to follow existing symbolic links when extracting.
  3870. @cindex Protecting old files
  3871. Some people argue that @GNUTAR{} should not hesitate
  3872. to overwrite files with other files when extracting. When extracting
  3873. a @command{tar} archive, they expect to see a faithful copy of the
  3874. state of the file system when the archive was created. It is debatable
  3875. that this would always be a proper behavior. For example, suppose one
  3876. has an archive in which @file{usr/local} is a link to
  3877. @file{usr/local2}. Since then, maybe the site removed the link and
  3878. renamed the whole hierarchy from @file{/usr/local2} to
  3879. @file{/usr/local}. Such things happen all the time. I guess it would
  3880. not be welcome at all that @GNUTAR{} removes the
  3881. whole hierarchy just to make room for the link to be reinstated
  3882. (unless it @emph{also} simultaneously restores the full
  3883. @file{/usr/local2}, of course!) @GNUTAR{} is indeed
  3884. able to remove a whole hierarchy to reestablish a symbolic link, for
  3885. example, but @emph{only if} @option{--recursive-unlink} is specified
  3886. to allow this behavior. In any case, single files are silently
  3887. removed.
  3888. @xopindex{unlink-first, introduced}
  3889. Finally, the @option{--unlink-first} (@option{-U}) option can improve performance in
  3890. some cases by causing @command{tar} to remove files unconditionally
  3891. before extracting them.
  3892. @node Overwrite Old Files
  3893. @unnumberedsubsubsec Overwrite Old Files
  3894. @table @option
  3895. @opindex overwrite
  3896. @item --overwrite
  3897. Overwrite existing files and directory metadata when extracting files
  3898. from an archive.
  3899. This causes @command{tar} to write extracted files into the file system without
  3900. regard to the files already on the system; i.e., files with the same
  3901. names as archive members are overwritten when the archive is extracted.
  3902. It also causes @command{tar} to extract the ownership, permissions,
  3903. and time stamps onto any preexisting files or directories.
  3904. If the name of a corresponding file name is a symbolic link, the file
  3905. pointed to by the symbolic link will be overwritten instead of the
  3906. symbolic link itself (if this is possible). Moreover, special devices,
  3907. empty directories and even symbolic links are automatically removed if
  3908. they are in the way of extraction.
  3909. Be careful when using the @option{--overwrite} option, particularly when
  3910. combined with the @option{--absolute-names} (@option{-P}) option, as this combination
  3911. can change the contents, ownership or permissions of any file on your
  3912. system. Also, many systems do not take kindly to overwriting files that
  3913. are currently being executed.
  3914. @opindex overwrite-dir
  3915. @item --overwrite-dir
  3916. Overwrite the metadata of directories when extracting files from an
  3917. archive, but remove other files before extracting.
  3918. @end table
  3919. @node Keep Old Files
  3920. @unnumberedsubsubsec Keep Old Files
  3921. @table @option
  3922. @opindex keep-old-files
  3923. @item --keep-old-files
  3924. @itemx -k
  3925. Do not replace existing files from archive. The
  3926. @option{--keep-old-files} (@option{-k}) option prevents @command{tar}
  3927. from replacing existing files with files with the same name from the
  3928. archive. The @option{--keep-old-files} option is meaningless with
  3929. @option{--list} (@option{-t}). Prevents @command{tar} from replacing
  3930. files in the file system during extraction.
  3931. @end table
  3932. @node Keep Newer Files
  3933. @unnumberedsubsubsec Keep Newer Files
  3934. @table @option
  3935. @opindex keep-newer-files
  3936. @item --keep-newer-files
  3937. Do not replace existing files that are newer than their archive
  3938. copies. This option is meaningless with @option{--list} (@option{-t}).
  3939. @end table
  3940. @node Unlink First
  3941. @unnumberedsubsubsec Unlink First
  3942. @table @option
  3943. @opindex unlink-first
  3944. @item --unlink-first
  3945. @itemx -U
  3946. Remove files before extracting over them.
  3947. This can make @command{tar} run a bit faster if you know in advance
  3948. that the extracted files all need to be removed. Normally this option
  3949. slows @command{tar} down slightly, so it is disabled by default.
  3950. @end table
  3951. @node Recursive Unlink
  3952. @unnumberedsubsubsec Recursive Unlink
  3953. @table @option
  3954. @opindex recursive-unlink
  3955. @item --recursive-unlink
  3956. When this option is specified, try removing files and directory hierarchies
  3957. before extracting over them. @emph{This is a dangerous option!}
  3958. @end table
  3959. If you specify the @option{--recursive-unlink} option,
  3960. @command{tar} removes @emph{anything} that keeps you from extracting a file
  3961. as far as current permissions will allow it. This could include removal
  3962. of the contents of a full directory hierarchy.
  3963. @node Data Modification Times
  3964. @unnumberedsubsubsec Setting Data Modification Times
  3965. @cindex Data modification times of extracted files
  3966. @cindex Modification times of extracted files
  3967. Normally, @command{tar} sets the data modification times of extracted
  3968. files to the corresponding times recorded for the files in the archive, but
  3969. limits the permissions of extracted files by the current @code{umask}
  3970. setting.
  3971. To set the data modification times of extracted files to the time when
  3972. the files were extracted, use the @option{--touch} (@option{-m}) option in
  3973. conjunction with @option{--extract} (@option{--get}, @option{-x}).
  3974. @table @option
  3975. @opindex touch
  3976. @item --touch
  3977. @itemx -m
  3978. Sets the data modification time of extracted archive members to the time
  3979. they were extracted, not the time recorded for them in the archive.
  3980. Use in conjunction with @option{--extract} (@option{--get}, @option{-x}).
  3981. @end table
  3982. @node Setting Access Permissions
  3983. @unnumberedsubsubsec Setting Access Permissions
  3984. @cindex Permissions of extracted files
  3985. @cindex Modes of extracted files
  3986. To set the modes (access permissions) of extracted files to those
  3987. recorded for those files in the archive, use @option{--same-permissions}
  3988. in conjunction with the @option{--extract} (@option{--get},
  3989. @option{-x}) operation.
  3990. @table @option
  3991. @opindex preserve-permissions
  3992. @opindex same-permissions
  3993. @item --preserve-permissions
  3994. @itemx --same-permissions
  3995. @c @itemx --ignore-umask
  3996. @itemx -p
  3997. Set modes of extracted archive members to those recorded in the
  3998. archive, instead of current umask settings. Use in conjunction with
  3999. @option{--extract} (@option{--get}, @option{-x}).
  4000. @end table
  4001. @node Directory Modification Times and Permissions
  4002. @unnumberedsubsubsec Directory Modification Times and Permissions
  4003. After successfully extracting a file member, @GNUTAR{} normally
  4004. restores its permissions and modification times, as described in the
  4005. previous sections. This cannot be done for directories, because
  4006. after extracting a directory @command{tar} will almost certainly
  4007. extract files into that directory and this will cause the directory
  4008. modification time to be updated. Moreover, restoring that directory
  4009. permissions may not permit file creation within it. Thus, restoring
  4010. directory permissions and modification times must be delayed at least
  4011. until all files have been extracted into that directory. @GNUTAR{}
  4012. restores directories using the following approach.
  4013. The extracted directories are created with the mode specified in the
  4014. archive, as modified by the umask of the user, which gives sufficient
  4015. permissions to allow file creation. The meta-information about the
  4016. directory is recorded in the temporary list of directories. When
  4017. preparing to extract next archive member, @GNUTAR{} checks if the
  4018. directory prefix of this file contains the remembered directory. If
  4019. it does not, the program assumes that all files have been extracted
  4020. into that directory, restores its modification time and permissions
  4021. and removes its entry from the internal list. This approach allows
  4022. to correctly restore directory meta-information in the majority of
  4023. cases, while keeping memory requirements sufficiently small. It is
  4024. based on the fact, that most @command{tar} archives use the predefined
  4025. order of members: first the directory, then all the files and
  4026. subdirectories in that directory.
  4027. However, this is not always true. The most important exception are
  4028. incremental archives (@pxref{Incremental Dumps}). The member order in
  4029. an incremental archive is reversed: first all directory members are
  4030. stored, followed by other (non-directory) members. So, when extracting
  4031. from incremental archives, @GNUTAR{} alters the above procedure. It
  4032. remembers all restored directories, and restores their meta-data
  4033. only after the entire archive has been processed. Notice, that you do
  4034. not need to specify any special options for that, as @GNUTAR{}
  4035. automatically detects archives in incremental format.
  4036. There may be cases, when such processing is required for normal archives
  4037. too. Consider the following example:
  4038. @smallexample
  4039. @group
  4040. $ @kbd{tar --no-recursion -cvf archive \
  4041. foo foo/file1 bar bar/file foo/file2}
  4042. foo/
  4043. foo/file1
  4044. bar/
  4045. bar/file
  4046. foo/file2
  4047. @end group
  4048. @end smallexample
  4049. During the normal operation, after encountering @file{bar}
  4050. @GNUTAR{} will assume that all files from the directory @file{foo}
  4051. were already extracted and will therefore restore its timestamp and
  4052. permission bits. However, after extracting @file{foo/file2} the
  4053. directory timestamp will be offset again.
  4054. To correctly restore directory meta-information in such cases, use
  4055. @option{delay-directory-restore} command line option:
  4056. @table @option
  4057. @opindex delay-directory-restore
  4058. @item --delay-directory-restore
  4059. Delays restoring of the modification times and permissions of extracted
  4060. directories until the end of extraction. This way, correct
  4061. meta-information is restored even if the archive has unusual member
  4062. ordering.
  4063. @opindex no-delay-directory-restore
  4064. @item --no-delay-directory-restore
  4065. Cancel the effect of the previous @option{--delay-directory-restore}.
  4066. Use this option if you have used @option{--delay-directory-restore} in
  4067. @env{TAR_OPTIONS} variable (@pxref{TAR_OPTIONS}) and wish to
  4068. temporarily disable it.
  4069. @end table
  4070. @node Writing to Standard Output
  4071. @unnumberedsubsubsec Writing to Standard Output
  4072. @cindex Writing extracted files to standard output
  4073. @cindex Standard output, writing extracted files to
  4074. To write the extracted files to the standard output, instead of
  4075. creating the files on the file system, use @option{--to-stdout} (@option{-O}) in
  4076. conjunction with @option{--extract} (@option{--get}, @option{-x}). This option is useful if you are
  4077. extracting files to send them through a pipe, and do not need to
  4078. preserve them in the file system. If you extract multiple members,
  4079. they appear on standard output concatenated, in the order they are
  4080. found in the archive.
  4081. @table @option
  4082. @opindex to-stdout
  4083. @item --to-stdout
  4084. @itemx -O
  4085. Writes files to the standard output. Use only in conjunction with
  4086. @option{--extract} (@option{--get}, @option{-x}). When this option is
  4087. used, instead of creating the files specified, @command{tar} writes
  4088. the contents of the files extracted to its standard output. This may
  4089. be useful if you are only extracting the files in order to send them
  4090. through a pipe. This option is meaningless with @option{--list}
  4091. (@option{-t}).
  4092. @end table
  4093. This can be useful, for example, if you have a tar archive containing
  4094. a big file and don't want to store the file on disk before processing
  4095. it. You can use a command like this:
  4096. @smallexample
  4097. tar -xOzf foo.tgz bigfile | process
  4098. @end smallexample
  4099. or even like this if you want to process the concatenation of the files:
  4100. @smallexample
  4101. tar -xOzf foo.tgz bigfile1 bigfile2 | process
  4102. @end smallexample
  4103. However, @option{--to-command} may be more convenient for use with
  4104. multiple files. See the next section.
  4105. @node Writing to an External Program
  4106. @unnumberedsubsubsec Writing to an External Program
  4107. You can instruct @command{tar} to send the contents of each extracted
  4108. file to the standard input of an external program:
  4109. @table @option
  4110. @opindex to-command
  4111. @item --to-command=@var{command}
  4112. Extract files and pipe their contents to the standard input of
  4113. @var{command}. When this option is used, instead of creating the
  4114. files specified, @command{tar} invokes @var{command} and pipes the
  4115. contents of the files to its standard output. @var{Command} may
  4116. contain command line arguments. The program is executed via
  4117. @code{sh -c}. Notice, that @var{command} is executed once for each regular file
  4118. extracted. Non-regular files (directories, etc.) are ignored when this
  4119. option is used.
  4120. @end table
  4121. The command can obtain the information about the file it processes
  4122. from the following environment variables:
  4123. @table @env
  4124. @vrindex TAR_FILETYPE, to-command environment
  4125. @item TAR_FILETYPE
  4126. Type of the file. It is a single letter with the following meaning:
  4127. @multitable @columnfractions 0.10 0.90
  4128. @item f @tab Regular file
  4129. @item d @tab Directory
  4130. @item l @tab Symbolic link
  4131. @item h @tab Hard link
  4132. @item b @tab Block device
  4133. @item c @tab Character device
  4134. @end multitable
  4135. Currently only regular files are supported.
  4136. @vrindex TAR_MODE, to-command environment
  4137. @item TAR_MODE
  4138. File mode, an octal number.
  4139. @vrindex TAR_FILENAME, to-command environment
  4140. @item TAR_FILENAME
  4141. The name of the file.
  4142. @vrindex TAR_REALNAME, to-command environment
  4143. @item TAR_REALNAME
  4144. Name of the file as stored in the archive.
  4145. @vrindex TAR_UNAME, to-command environment
  4146. @item TAR_UNAME
  4147. Name of the file owner.
  4148. @vrindex TAR_GNAME, to-command environment
  4149. @item TAR_GNAME
  4150. Name of the file owner group.
  4151. @vrindex TAR_ATIME, to-command environment
  4152. @item TAR_ATIME
  4153. Time of last access. It is a decimal number, representing seconds
  4154. since the epoch. If the archive provides times with nanosecond
  4155. precision, the nanoseconds are appended to the timestamp after a
  4156. decimal point.
  4157. @vrindex TAR_MTIME, to-command environment
  4158. @item TAR_MTIME
  4159. Time of last modification.
  4160. @vrindex TAR_CTIME, to-command environment
  4161. @item TAR_CTIME
  4162. Time of last status change.
  4163. @vrindex TAR_SIZE, to-command environment
  4164. @item TAR_SIZE
  4165. Size of the file.
  4166. @vrindex TAR_UID, to-command environment
  4167. @item TAR_UID
  4168. UID of the file owner.
  4169. @vrindex TAR_GID, to-command environment
  4170. @item TAR_GID
  4171. GID of the file owner.
  4172. @end table
  4173. In addition to these variables, @env{TAR_VERSION} contains the
  4174. @GNUTAR{} version number.
  4175. If @var{command} exits with a non-0 status, @command{tar} will print
  4176. an error message similar to the following:
  4177. @smallexample
  4178. tar: 2345: Child returned status 1
  4179. @end smallexample
  4180. Here, @samp{2345} is the PID of the finished process.
  4181. If this behavior is not wanted, use @option{--ignore-command-error}:
  4182. @table @option
  4183. @opindex ignore-command-error
  4184. @item --ignore-command-error
  4185. Ignore exit codes of subprocesses. Notice that if the program
  4186. exits on signal or otherwise terminates abnormally, the error message
  4187. will be printed even if this option is used.
  4188. @opindex no-ignore-command-error
  4189. @item --no-ignore-command-error
  4190. Cancel the effect of any previous @option{--ignore-command-error}
  4191. option. This option is useful if you have set
  4192. @option{--ignore-command-error} in @env{TAR_OPTIONS}
  4193. (@pxref{TAR_OPTIONS}) and wish to temporarily cancel it.
  4194. @end table
  4195. @node remove files
  4196. @unnumberedsubsubsec Removing Files
  4197. @FIXME{The section is too terse. Something more to add? An example,
  4198. maybe?}
  4199. @table @option
  4200. @opindex remove-files
  4201. @item --remove-files
  4202. Remove files after adding them to the archive.
  4203. @end table
  4204. @node Scarce
  4205. @subsection Coping with Scarce Resources
  4206. @UNREVISED
  4207. @cindex Small memory
  4208. @cindex Running out of space
  4209. @menu
  4210. * Starting File::
  4211. * Same Order::
  4212. @end menu
  4213. @node Starting File
  4214. @unnumberedsubsubsec Starting File
  4215. @table @option
  4216. @opindex starting-file
  4217. @item --starting-file=@var{name}
  4218. @itemx -K @var{name}
  4219. Starts an operation in the middle of an archive. Use in conjunction
  4220. with @option{--extract} (@option{--get}, @option{-x}) or @option{--list} (@option{-t}).
  4221. @end table
  4222. @cindex Middle of the archive, starting in the
  4223. If a previous attempt to extract files failed due to lack of disk
  4224. space, you can use @option{--starting-file=@var{name}} (@option{-K
  4225. @var{name}}) to start extracting only after member @var{name} of the
  4226. archive. This assumes, of course, that there is now free space, or
  4227. that you are now extracting into a different file system. (You could
  4228. also choose to suspend @command{tar}, remove unnecessary files from
  4229. the file system, and then restart the same @command{tar} operation.
  4230. In this case, @option{--starting-file} is not necessary.
  4231. @xref{Incremental Dumps}, @xref{interactive}, and @ref{exclude}.)
  4232. @node Same Order
  4233. @unnumberedsubsubsec Same Order
  4234. @table @option
  4235. @cindex Large lists of file names on small machines
  4236. @opindex same-order
  4237. @opindex preserve-order
  4238. @item --same-order
  4239. @itemx --preserve-order
  4240. @itemx -s
  4241. To process large lists of file names on machines with small amounts of
  4242. memory. Use in conjunction with @option{--compare} (@option{--diff},
  4243. @option{-d}), @option{--list} (@option{-t}) or @option{--extract}
  4244. (@option{--get}, @option{-x}).
  4245. @end table
  4246. The @option{--same-order} (@option{--preserve-order}, @option{-s}) option tells @command{tar} that the list of file
  4247. names to be listed or extracted is sorted in the same order as the
  4248. files in the archive. This allows a large list of names to be used,
  4249. even on a small machine that would not otherwise be able to hold all
  4250. the names in memory at the same time. Such a sorted list can easily be
  4251. created by running @samp{tar -t} on the archive and editing its output.
  4252. This option is probably never needed on modern computer systems.
  4253. @node backup
  4254. @section Backup options
  4255. @cindex backup options
  4256. @GNUTAR{} offers options for making backups of files
  4257. before writing new versions. These options control the details of
  4258. these backups. They may apply to the archive itself before it is
  4259. created or rewritten, as well as individual extracted members. Other
  4260. @acronym{GNU} programs (@command{cp}, @command{install}, @command{ln},
  4261. and @command{mv}, for example) offer similar options.
  4262. Backup options may prove unexpectedly useful when extracting archives
  4263. containing many members having identical name, or when extracting archives
  4264. on systems having file name limitations, making different members appear
  4265. has having similar names through the side-effect of name truncation.
  4266. (This is true only if we have a good scheme for truncated backup names,
  4267. which I'm not sure at all: I suspect work is needed in this area.)
  4268. When any existing file is backed up before being overwritten by extraction,
  4269. then clashing files are automatically be renamed to be unique, and the
  4270. true name is kept for only the last file of a series of clashing files.
  4271. By using verbose mode, users may track exactly what happens.
  4272. At the detail level, some decisions are still experimental, and may
  4273. change in the future, we are waiting comments from our users. So, please
  4274. do not learn to depend blindly on the details of the backup features.
  4275. For example, currently, directories themselves are never renamed through
  4276. using these options, so, extracting a file over a directory still has
  4277. good chances to fail. Also, backup options apply to created archives,
  4278. not only to extracted members. For created archives, backups will not
  4279. be attempted when the archive is a block or character device, or when it
  4280. refers to a remote file.
  4281. For the sake of simplicity and efficiency, backups are made by renaming old
  4282. files prior to creation or extraction, and not by copying. The original
  4283. name is restored if the file creation fails. If a failure occurs after a
  4284. partial extraction of a file, both the backup and the partially extracted
  4285. file are kept.
  4286. @table @samp
  4287. @item --backup[=@var{method}]
  4288. @opindex backup
  4289. @vindex VERSION_CONTROL
  4290. @cindex backups
  4291. Back up files that are about to be overwritten or removed.
  4292. Without this option, the original versions are destroyed.
  4293. Use @var{method} to determine the type of backups made.
  4294. If @var{method} is not specified, use the value of the @env{VERSION_CONTROL}
  4295. environment variable. And if @env{VERSION_CONTROL} is not set,
  4296. use the @samp{existing} method.
  4297. @vindex version-control @r{Emacs variable}
  4298. This option corresponds to the Emacs variable @samp{version-control};
  4299. the same values for @var{method} are accepted as in Emacs. This option
  4300. also allows more descriptive names. The valid @var{method}s are:
  4301. @table @samp
  4302. @item t
  4303. @itemx numbered
  4304. @cindex numbered @r{backup method}
  4305. Always make numbered backups.
  4306. @item nil
  4307. @itemx existing
  4308. @cindex existing @r{backup method}
  4309. Make numbered backups of files that already have them, simple backups
  4310. of the others.
  4311. @item never
  4312. @itemx simple
  4313. @cindex simple @r{backup method}
  4314. Always make simple backups.
  4315. @end table
  4316. @item --suffix=@var{suffix}
  4317. @opindex suffix
  4318. @cindex backup suffix
  4319. @vindex SIMPLE_BACKUP_SUFFIX
  4320. Append @var{suffix} to each backup file made with @option{--backup}. If this
  4321. option is not specified, the value of the @env{SIMPLE_BACKUP_SUFFIX}
  4322. environment variable is used. And if @env{SIMPLE_BACKUP_SUFFIX} is not
  4323. set, the default is @samp{~}, just as in Emacs.
  4324. @end table
  4325. @node Applications
  4326. @section Notable @command{tar} Usages
  4327. @UNREVISED
  4328. @FIXME{Using Unix file linking capability to recreate directory
  4329. structures---linking files into one subdirectory and then
  4330. @command{tar}ring that directory.}
  4331. @FIXME{Nice hairy example using absolute-names, newer, etc.}
  4332. @findex uuencode
  4333. You can easily use archive files to transport a group of files from
  4334. one system to another: put all relevant files into an archive on one
  4335. computer system, transfer the archive to another system, and extract
  4336. the contents there. The basic transfer medium might be magnetic tape,
  4337. Internet FTP, or even electronic mail (though you must encode the
  4338. archive with @command{uuencode} in order to transport it properly by
  4339. mail). Both machines do not have to use the same operating system, as
  4340. long as they both support the @command{tar} program.
  4341. For example, here is how you might copy a directory's contents from
  4342. one disk to another, while preserving the dates, modes, owners and
  4343. link-structure of all the files therein. In this case, the transfer
  4344. medium is a @dfn{pipe}, which is one a Unix redirection mechanism:
  4345. @smallexample
  4346. $ @kbd{(cd sourcedir; tar -cf - .) | (cd targetdir; tar -xf -)}
  4347. @end smallexample
  4348. @noindent
  4349. You can avoid subshells by using @option{-C} option:
  4350. @smallexample
  4351. $ @kbd{tar -C sourcedir -cf - . | tar -C targetdir -xf -}
  4352. @end smallexample
  4353. @noindent
  4354. The command also works using short option forms:
  4355. @smallexample
  4356. $ @kbd{(cd sourcedir; tar --create --file=- . ) \
  4357. | (cd targetdir; tar --extract --file=-)}
  4358. # Or:
  4359. $ @kbd{tar --directory sourcedir --create --file=- . ) \
  4360. | tar --directory targetdir --extract --file=-}
  4361. @end smallexample
  4362. @noindent
  4363. This is one of the easiest methods to transfer a @command{tar} archive.
  4364. @node looking ahead
  4365. @section Looking Ahead: The Rest of this Manual
  4366. You have now seen how to use all eight of the operations available to
  4367. @command{tar}, and a number of the possible options. The next chapter
  4368. explains how to choose and change file and archive names, how to use
  4369. files to store names of other files which you can then call as
  4370. arguments to @command{tar} (this can help you save time if you expect to
  4371. archive the same list of files a number of times), and so forth.
  4372. @FIXME{in case it's not obvious, i'm making this up in some sense
  4373. based on my limited memory of what the next chapter *really* does. i
  4374. just wanted to flesh out this final section a little bit so i'd
  4375. remember to stick it in here. :-)}
  4376. If there are too many files to conveniently list on the command line,
  4377. you can list the names in a file, and @command{tar} will read that file.
  4378. @xref{files}.
  4379. There are various ways of causing @command{tar} to skip over some files,
  4380. and not archive them. @xref{Choosing}.
  4381. @node Backups
  4382. @chapter Performing Backups and Restoring Files
  4383. @UNREVISED
  4384. @GNUTAR{} is distributed along with the scripts
  4385. which the Free Software Foundation uses for performing backups. There
  4386. is no corresponding scripts available yet for doing restoration of
  4387. files. Even if there is a good chance those scripts may be satisfying
  4388. to you, they are not the only scripts or methods available for doing
  4389. backups and restore. You may well create your own, or use more
  4390. sophisticated packages dedicated to that purpose.
  4391. Some users are enthusiastic about @code{Amanda} (The Advanced Maryland
  4392. Automatic Network Disk Archiver), a backup system developed by James
  4393. da Silva @file{jds@@cs.umd.edu} and available on many Unix systems.
  4394. This is free software, and it is available at these places:
  4395. @smallexample
  4396. http://www.cs.umd.edu/projects/amanda/amanda.html
  4397. ftp://ftp.cs.umd.edu/pub/amanda
  4398. @end smallexample
  4399. @FIXME{
  4400. Here is a possible plan for a future documentation about the backuping
  4401. scripts which are provided within the @GNUTAR{}
  4402. distribution.
  4403. @itemize @bullet
  4404. @item dumps
  4405. @itemize @minus
  4406. @item what are dumps
  4407. @item different levels of dumps
  4408. @itemize +
  4409. @item full dump = dump everything
  4410. @item level 1, level 2 dumps etc
  4411. A level @var{n} dump dumps everything changed since the last level
  4412. @var{n}-1 dump (?)
  4413. @end itemize
  4414. @item how to use scripts for dumps (ie, the concept)
  4415. @itemize +
  4416. @item scripts to run after editing backup specs (details)
  4417. @end itemize
  4418. @item Backup Specs, what is it.
  4419. @itemize +
  4420. @item how to customize
  4421. @item actual text of script [/sp/dump/backup-specs]
  4422. @end itemize
  4423. @item Problems
  4424. @itemize +
  4425. @item rsh doesn't work
  4426. @item rtape isn't installed
  4427. @item (others?)
  4428. @end itemize
  4429. @item the @option{--incremental} option of tar
  4430. @item tapes
  4431. @itemize +
  4432. @item write protection
  4433. @item types of media, different sizes and types, useful for different things
  4434. @item files and tape marks
  4435. one tape mark between files, two at end.
  4436. @item positioning the tape
  4437. MT writes two at end of write,
  4438. backspaces over one when writing again.
  4439. @end itemize
  4440. @end itemize
  4441. @end itemize
  4442. }
  4443. This chapter documents both the provided shell scripts and @command{tar}
  4444. options which are more specific to usage as a backup tool.
  4445. To @dfn{back up} a file system means to create archives that contain
  4446. all the files in that file system. Those archives can then be used to
  4447. restore any or all of those files (for instance if a disk crashes or a
  4448. file is accidentally deleted). File system @dfn{backups} are also
  4449. called @dfn{dumps}.
  4450. @menu
  4451. * Full Dumps:: Using @command{tar} to Perform Full Dumps
  4452. * Incremental Dumps:: Using @command{tar} to Perform Incremental Dumps
  4453. * Backup Levels:: Levels of Backups
  4454. * Backup Parameters:: Setting Parameters for Backups and Restoration
  4455. * Scripted Backups:: Using the Backup Scripts
  4456. * Scripted Restoration:: Using the Restore Script
  4457. @end menu
  4458. @node Full Dumps
  4459. @section Using @command{tar} to Perform Full Dumps
  4460. @UNREVISED
  4461. @cindex full dumps
  4462. @cindex dumps, full
  4463. @cindex corrupted archives
  4464. Full dumps should only be made when no other people or programs
  4465. are modifying files in the file system. If files are modified while
  4466. @command{tar} is making the backup, they may not be stored properly in
  4467. the archive, in which case you won't be able to restore them if you
  4468. have to. (Files not being modified are written with no trouble, and do
  4469. not corrupt the entire archive.)
  4470. You will want to use the @option{--label=@var{archive-label}}
  4471. (@option{-V @var{archive-label}}) option to give the archive a
  4472. volume label, so you can tell what this archive is even if the label
  4473. falls off the tape, or anything like that.
  4474. Unless the file system you are dumping is guaranteed to fit on
  4475. one volume, you will need to use the @option{--multi-volume} (@option{-M}) option.
  4476. Make sure you have enough tapes on hand to complete the backup.
  4477. If you want to dump each file system separately you will need to use
  4478. the @option{--one-file-system} option to prevent
  4479. @command{tar} from crossing file system boundaries when storing
  4480. (sub)directories.
  4481. The @option{--incremental} (@option{-G}) (@pxref{Incremental Dumps})
  4482. option is not needed, since this is a complete copy of everything in
  4483. the file system, and a full restore from this backup would only be
  4484. done onto a completely
  4485. empty disk.
  4486. Unless you are in a hurry, and trust the @command{tar} program (and your
  4487. tapes), it is a good idea to use the @option{--verify} (@option{-W})
  4488. option, to make sure your files really made it onto the dump properly.
  4489. This will also detect cases where the file was modified while (or just
  4490. after) it was being archived. Not all media (notably cartridge tapes)
  4491. are capable of being verified, unfortunately.
  4492. @node Incremental Dumps
  4493. @section Using @command{tar} to Perform Incremental Dumps
  4494. @dfn{Incremental backup} is a special form of @GNUTAR{} archive that
  4495. stores additional metadata so that exact state of the file system
  4496. can be restored when extracting the archive.
  4497. @GNUTAR{} currently offers two options for handling incremental
  4498. backups: @option{--listed-incremental=@var{snapshot-file}} (@option{-g
  4499. @var{snapshot-file}}) and @option{--incremental} (@option{-G}).
  4500. @opindex listed-incremental
  4501. The option @option{--listed-incremental} instructs tar to operate on
  4502. an incremental archive with additional metadata stored in a standalone
  4503. file, called a @dfn{snapshot file}. The purpose of this file is to help
  4504. determine which files have been changed, added or deleted since the
  4505. last backup, so that the next incremental backup will contain only
  4506. modified files. The name of the snapshot file is given as an argument
  4507. to the option:
  4508. @table @option
  4509. @item --listed-incremental=@var{file}
  4510. @itemx -g @var{file}
  4511. Handle incremental backups with snapshot data in @var{file}.
  4512. @end table
  4513. To create an incremental backup, you would use
  4514. @option{--listed-incremental} together with @option{--create}
  4515. (@pxref{create}). For example:
  4516. @smallexample
  4517. $ @kbd{tar --create \
  4518. --file=archive.1.tar \
  4519. --listed-incremental=/var/log/usr.snar \
  4520. /usr}
  4521. @end smallexample
  4522. This will create in @file{archive.1.tar} an incremental backup of
  4523. the @file{/usr} file system, storing additional metadata in the file
  4524. @file{/var/log/usr.snar}. If this file does not exist, it will be
  4525. created. The created archive will then be a @dfn{level 0 backup};
  4526. please see the next section for more on backup levels.
  4527. Otherwise, if the file @file{/var/log/usr.snar} exists, it
  4528. determines which files are modified. In this case only these files will be
  4529. stored in the archive. Suppose, for example, that after running the
  4530. above command, you delete file @file{/usr/doc/old} and create
  4531. directory @file{/usr/local/db} with the following contents:
  4532. @smallexample
  4533. $ @kbd{ls /usr/local/db}
  4534. /usr/local/db/data
  4535. /usr/local/db/index
  4536. @end smallexample
  4537. Some time later you create another incremental backup. You will
  4538. then see:
  4539. @smallexample
  4540. $ @kbd{tar --create \
  4541. --file=archive.2.tar \
  4542. --listed-incremental=/var/log/usr.snar \
  4543. /usr}
  4544. tar: usr/local/db: Directory is new
  4545. usr/local/db/
  4546. usr/local/db/data
  4547. usr/local/db/index
  4548. @end smallexample
  4549. @noindent
  4550. The created archive @file{archive.2.tar} will contain only these
  4551. three members. This archive is called a @dfn{level 1 backup}. Notice
  4552. that @file{/var/log/usr.snar} will be updated with the new data, so if
  4553. you plan to create more @samp{level 1} backups, it is necessary to
  4554. create a working copy of the snapshot file before running
  4555. @command{tar}. The above example will then be modified as follows:
  4556. @smallexample
  4557. $ @kbd{cp /var/log/usr.snar /var/log/usr.snar-1}
  4558. $ @kbd{tar --create \
  4559. --file=archive.2.tar \
  4560. --listed-incremental=/var/log/usr.snar-1 \
  4561. /usr}
  4562. @end smallexample
  4563. Incremental dumps depend crucially on time stamps, so the results are
  4564. unreliable if you modify a file's time stamps during dumping (e.g.,
  4565. with the @option{--atime-preserve=replace} option), or if you set the clock
  4566. backwards.
  4567. @anchor{device numbers}
  4568. @cindex Device numbers, using in incremental backups
  4569. Metadata stored in snapshot files include device numbers, which,
  4570. obviously are supposed to be a non-volatile values. However, it turns
  4571. out that @acronym{NFS} devices have undependable values when an automounter
  4572. gets in the picture. This can lead to a great deal of spurious
  4573. redumping in incremental dumps, so it is somewhat useless to compare
  4574. two @acronym{NFS} devices numbers over time. The solution implemented
  4575. currently is to considers all @acronym{NFS} devices as being equal
  4576. when it comes to comparing directories; this is fairly gross, but
  4577. there does not seem to be a better way to go.
  4578. Apart from using @acronym{NFS}, there are a number of cases where
  4579. relying on device numbers can cause spurious redumping of unmodified
  4580. files. For example, this occurs when archiving @acronym{LVM} snapshot
  4581. volumes. To avoid this, use @option{--no-check-device} option:
  4582. @table @option
  4583. @xopindex{no-check-device, described}
  4584. @item --no-check-device
  4585. Do not rely on device numbers when preparing a list of changed files
  4586. for an incremental dump.
  4587. @xopindex{check-device, described}
  4588. @item --check-device
  4589. Use device numbers when preparing a list of changed files
  4590. for an incremental dump. This is the default behavior. The purpose
  4591. of this option is to undo the effect of the @option{--no-check-device}
  4592. if it was given in @env{TAR_OPTIONS} environment variable
  4593. (@pxref{TAR_OPTIONS}).
  4594. @end table
  4595. There is also another way to cope with changing device numbers. It is
  4596. described in detail in @ref{Fixing Snapshot Files}.
  4597. Note that incremental archives use @command{tar} extensions and may
  4598. not be readable by non-@acronym{GNU} versions of the @command{tar} program.
  4599. @xopindex{listed-incremental, using with @option{--extract}}
  4600. @xopindex{extract, using with @option{--listed-incremental}}
  4601. To extract from the incremental dumps, use
  4602. @option{--listed-incremental} together with @option{--extract}
  4603. option (@pxref{extracting files}). In this case, @command{tar} does
  4604. not need to access snapshot file, since all the data necessary for
  4605. extraction are stored in the archive itself. So, when extracting, you
  4606. can give whatever argument to @option{--listed-incremental}, the usual
  4607. practice is to use @option{--listed-incremental=/dev/null}.
  4608. Alternatively, you can use @option{--incremental}, which needs no
  4609. arguments. In general, @option{--incremental} (@option{-G}) can be
  4610. used as a shortcut for @option{--listed-incremental} when listing or
  4611. extracting incremental backups (for more information, regarding this
  4612. option, @pxref{incremental-op}).
  4613. When extracting from the incremental backup @GNUTAR{} attempts to
  4614. restore the exact state the file system had when the archive was
  4615. created. In particular, it will @emph{delete} those files in the file
  4616. system that did not exist in their directories when the archive was
  4617. created. If you have created several levels of incremental files,
  4618. then in order to restore the exact contents the file system had when
  4619. the last level was created, you will need to restore from all backups
  4620. in turn. Continuing our example, to restore the state of @file{/usr}
  4621. file system, one would do@footnote{Notice, that since both archives
  4622. were created without @option{-P} option (@pxref{absolute}), these
  4623. commands should be run from the root file system.}:
  4624. @smallexample
  4625. $ @kbd{tar --extract \
  4626. --listed-incremental=/dev/null \
  4627. --file archive.1.tar}
  4628. $ @kbd{tar --extract \
  4629. --listed-incremental=/dev/null \
  4630. --file archive.2.tar}
  4631. @end smallexample
  4632. To list the contents of an incremental archive, use @option{--list}
  4633. (@pxref{list}), as usual. To obtain more information about the
  4634. archive, use @option{--listed-incremental} or @option{--incremental}
  4635. combined with two @option{--verbose} options@footnote{Two
  4636. @option{--verbose} options were selected to avoid breaking usual
  4637. verbose listing output (@option{--list --verbose}) when using in
  4638. scripts.
  4639. @xopindex{incremental, using with @option{--list}}
  4640. @xopindex{listed-incremental, using with @option{--list}}
  4641. @xopindex{list, using with @option{--incremental}}
  4642. @xopindex{list, using with @option{--listed-incremental}}
  4643. Versions of @GNUTAR{} up to 1.15.1 used to dump verbatim binary
  4644. contents of the DUMPDIR header (with terminating nulls) when
  4645. @option{--incremental} or @option{--listed-incremental} option was
  4646. given, no matter what the verbosity level. This behavior, and,
  4647. especially, the binary output it produced were considered inconvenient
  4648. and were changed in version 1.16}:
  4649. @smallexample
  4650. @kbd{tar --list --incremental --verbose --verbose archive.tar}
  4651. @end smallexample
  4652. This command will print, for each directory in the archive, the list
  4653. of files in that directory at the time the archive was created. This
  4654. information is put out in a format which is both human-readable and
  4655. unambiguous for a program: each file name is printed as
  4656. @smallexample
  4657. @var{x} @var{file}
  4658. @end smallexample
  4659. @noindent
  4660. where @var{x} is a letter describing the status of the file: @samp{Y}
  4661. if the file is present in the archive, @samp{N} if the file is not
  4662. included in the archive, or a @samp{D} if the file is a directory (and
  4663. is included in the archive). @xref{Dumpdir}, for the detailed
  4664. description of dumpdirs and status codes. Each such
  4665. line is terminated by a newline character. The last line is followed
  4666. by an additional newline to indicate the end of the data.
  4667. @anchor{incremental-op}The option @option{--incremental} (@option{-G})
  4668. gives the same behavior as @option{--listed-incremental} when used
  4669. with @option{--list} and @option{--extract} options. When used with
  4670. @option{--create} option, it creates an incremental archive without
  4671. creating snapshot file. Thus, it is impossible to create several
  4672. levels of incremental backups with @option{--incremental} option.
  4673. @node Backup Levels
  4674. @section Levels of Backups
  4675. An archive containing all the files in the file system is called a
  4676. @dfn{full backup} or @dfn{full dump}. You could insure your data by
  4677. creating a full dump every day. This strategy, however, would waste a
  4678. substantial amount of archive media and user time, as unchanged files
  4679. are daily re-archived.
  4680. It is more efficient to do a full dump only occasionally. To back up
  4681. files between full dumps, you can use @dfn{incremental dumps}. A @dfn{level
  4682. one} dump archives all the files that have changed since the last full
  4683. dump.
  4684. A typical dump strategy would be to perform a full dump once a week,
  4685. and a level one dump once a day. This means some versions of files
  4686. will in fact be archived more than once, but this dump strategy makes
  4687. it possible to restore a file system to within one day of accuracy by
  4688. only extracting two archives---the last weekly (full) dump and the
  4689. last daily (level one) dump. The only information lost would be in
  4690. files changed or created since the last daily backup. (Doing dumps
  4691. more than once a day is usually not worth the trouble).
  4692. @GNUTAR{} comes with scripts you can use to do full
  4693. and level-one (actually, even level-two and so on) dumps. Using
  4694. scripts (shell programs) to perform backups and restoration is a
  4695. convenient and reliable alternative to typing out file name lists
  4696. and @command{tar} commands by hand.
  4697. Before you use these scripts, you need to edit the file
  4698. @file{backup-specs}, which specifies parameters used by the backup
  4699. scripts and by the restore script. This file is usually located
  4700. in @file{/etc/backup} directory. @xref{Backup Parameters}, for its
  4701. detailed description. Once the backup parameters are set, you can
  4702. perform backups or restoration by running the appropriate script.
  4703. The name of the backup script is @code{backup}. The name of the
  4704. restore script is @code{restore}. The following sections describe
  4705. their use in detail.
  4706. @emph{Please Note:} The backup and restoration scripts are
  4707. designed to be used together. While it is possible to restore files by
  4708. hand from an archive which was created using a backup script, and to create
  4709. an archive by hand which could then be extracted using the restore script,
  4710. it is easier to use the scripts. @xref{Incremental Dumps}, before
  4711. making such an attempt.
  4712. @node Backup Parameters
  4713. @section Setting Parameters for Backups and Restoration
  4714. The file @file{backup-specs} specifies backup parameters for the
  4715. backup and restoration scripts provided with @command{tar}. You must
  4716. edit @file{backup-specs} to fit your system configuration and schedule
  4717. before using these scripts.
  4718. Syntactically, @file{backup-specs} is a shell script, containing
  4719. mainly variable assignments. However, any valid shell construct
  4720. is allowed in this file. Particularly, you may wish to define
  4721. functions within that script (e.g., see @code{RESTORE_BEGIN} below).
  4722. For more information about shell script syntax, please refer to
  4723. @url{http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#ta
  4724. g_02, the definition of the Shell Command Language}. See also
  4725. @ref{Top,,Bash Features,bashref,Bash Reference Manual}.
  4726. The shell variables controlling behavior of @code{backup} and
  4727. @code{restore} are described in the following subsections.
  4728. @menu
  4729. * General-Purpose Variables::
  4730. * Magnetic Tape Control::
  4731. * User Hooks::
  4732. * backup-specs example:: An Example Text of @file{Backup-specs}
  4733. @end menu
  4734. @node General-Purpose Variables
  4735. @subsection General-Purpose Variables
  4736. @defvr {Backup variable} ADMINISTRATOR
  4737. The user name of the backup administrator. @code{Backup} scripts
  4738. sends a backup report to this address.
  4739. @end defvr
  4740. @defvr {Backup variable} BACKUP_HOUR
  4741. The hour at which the backups are done. This can be a number from 0
  4742. to 23, or the time specification in form @var{hours}:@var{minutes},
  4743. or the string @samp{now}.
  4744. This variable is used by @code{backup}. Its value may be overridden
  4745. using @option{--time} option (@pxref{Scripted Backups}).
  4746. @end defvr
  4747. @defvr {Backup variable} TAPE_FILE
  4748. The device @command{tar} writes the archive to. If @var{TAPE_FILE}
  4749. is a remote archive (@pxref{remote-dev}), backup script will suppose
  4750. that your @command{mt} is able to access remote devices. If @var{RSH}
  4751. (@pxref{RSH}) is set, @option{--rsh-command} option will be added to
  4752. invocations of @command{mt}.
  4753. @end defvr
  4754. @defvr {Backup variable} BLOCKING
  4755. The blocking factor @command{tar} will use when writing the dump archive.
  4756. @xref{Blocking Factor}.
  4757. @end defvr
  4758. @defvr {Backup variable} BACKUP_DIRS
  4759. A list of file systems to be dumped (for @code{backup}), or restored
  4760. (for @code{restore}). You can include any directory
  4761. name in the list --- subdirectories on that file system will be
  4762. included, regardless of how they may look to other networked machines.
  4763. Subdirectories on other file systems will be ignored.
  4764. The host name specifies which host to run @command{tar} on, and should
  4765. normally be the host that actually contains the file system. However,
  4766. the host machine must have @GNUTAR{} installed, and
  4767. must be able to access the directory containing the backup scripts and
  4768. their support files using the same file name that is used on the
  4769. machine where the scripts are run (i.e., what @command{pwd} will print
  4770. when in that directory on that machine). If the host that contains
  4771. the file system does not have this capability, you can specify another
  4772. host as long as it can access the file system through @acronym{NFS}.
  4773. If the list of file systems is very long you may wish to put it
  4774. in a separate file. This file is usually named
  4775. @file{/etc/backup/dirs}, but this name may be overridden in
  4776. @file{backup-specs} using @code{DIRLIST} variable.
  4777. @end defvr
  4778. @defvr {Backup variable} DIRLIST
  4779. The name of the file that contains a list of file systems to backup
  4780. or restore. By default it is @file{/etc/backup/dirs}.
  4781. @end defvr
  4782. @defvr {Backup variable} BACKUP_FILES
  4783. A list of individual files to be dumped (for @code{backup}), or restored
  4784. (for @code{restore}). These should be accessible from the machine on
  4785. which the backup script is run.
  4786. If the list of file systems is very long you may wish to store it
  4787. in a separate file. This file is usually named
  4788. @file{/etc/backup/files}, but this name may be overridden in
  4789. @file{backup-specs} using @code{FILELIST} variable.
  4790. @end defvr
  4791. @defvr {Backup variable} FILELIST
  4792. The name of the file that contains a list of individual files to backup
  4793. or restore. By default it is @file{/etc/backup/files}.
  4794. @end defvr
  4795. @defvr {Backup variable} MT
  4796. Full file name of @command{mt} binary.
  4797. @end defvr
  4798. @defvr {Backup variable} RSH
  4799. @anchor{RSH}
  4800. Full file name of @command{rsh} binary or its equivalent. You may wish to
  4801. set it to @code{ssh}, to improve security. In this case you will have
  4802. to use public key authentication.
  4803. @end defvr
  4804. @defvr {Backup variable} RSH_COMMAND
  4805. Full file name of @command{rsh} binary on remote machines. This will
  4806. be passed via @option{--rsh-command} option to the remote invocation
  4807. of @GNUTAR{}.
  4808. @end defvr
  4809. @defvr {Backup variable} VOLNO_FILE
  4810. Name of temporary file to hold volume numbers. This needs to be accessible
  4811. by all the machines which have file systems to be dumped.
  4812. @end defvr
  4813. @defvr {Backup variable} XLIST
  4814. Name of @dfn{exclude file list}. An @dfn{exclude file list} is a file
  4815. located on the remote machine and containing the list of files to
  4816. be excluded from the backup. Exclude file lists are searched in
  4817. /etc/tar-backup directory. A common use for exclude file lists
  4818. is to exclude files containing security-sensitive information
  4819. (e.g., @file{/etc/shadow} from backups).
  4820. This variable affects only @code{backup}.
  4821. @end defvr
  4822. @defvr {Backup variable} SLEEP_TIME
  4823. Time to sleep between dumps of any two successive file systems
  4824. This variable affects only @code{backup}.
  4825. @end defvr
  4826. @defvr {Backup variable} DUMP_REMIND_SCRIPT
  4827. Script to be run when it's time to insert a new tape in for the next
  4828. volume. Administrators may want to tailor this script for their site.
  4829. If this variable isn't set, @GNUTAR{} will display its built-in
  4830. prompt, and will expect confirmation from the console. For the
  4831. description of the default prompt, see @ref{change volume prompt}.
  4832. @end defvr
  4833. @defvr {Backup variable} SLEEP_MESSAGE
  4834. Message to display on the terminal while waiting for dump time. Usually
  4835. this will just be some literal text.
  4836. @end defvr
  4837. @defvr {Backup variable} TAR
  4838. Full file name of the @GNUTAR{} executable. If this is not set, backup
  4839. scripts will search @command{tar} in the current shell path.
  4840. @end defvr
  4841. @node Magnetic Tape Control
  4842. @subsection Magnetic Tape Control
  4843. Backup scripts access tape device using special @dfn{hook functions}.
  4844. These functions take a single argument -- the name of the tape
  4845. device. Their names are kept in the following variables:
  4846. @defvr {Backup variable} MT_BEGIN
  4847. The name of @dfn{begin} function. This function is called before
  4848. accessing the drive. By default it retensions the tape:
  4849. @smallexample
  4850. MT_BEGIN=mt_begin
  4851. mt_begin() @{
  4852. mt -f "$1" retension
  4853. @}
  4854. @end smallexample
  4855. @end defvr
  4856. @defvr {Backup variable} MT_REWIND
  4857. The name of @dfn{rewind} function. The default definition is as
  4858. follows:
  4859. @smallexample
  4860. MT_REWIND=mt_rewind
  4861. mt_rewind() @{
  4862. mt -f "$1" rewind
  4863. @}
  4864. @end smallexample
  4865. @end defvr
  4866. @defvr {Backup variable} MT_OFFLINE
  4867. The name of the function switching the tape off line. By default
  4868. it is defined as follows:
  4869. @smallexample
  4870. MT_OFFLINE=mt_offline
  4871. mt_offline() @{
  4872. mt -f "$1" offl
  4873. @}
  4874. @end smallexample
  4875. @end defvr
  4876. @defvr {Backup variable} MT_STATUS
  4877. The name of the function used to obtain the status of the archive device,
  4878. including error count. Default definition:
  4879. @smallexample
  4880. MT_STATUS=mt_status
  4881. mt_status() @{
  4882. mt -f "$1" status
  4883. @}
  4884. @end smallexample
  4885. @end defvr
  4886. @node User Hooks
  4887. @subsection User Hooks
  4888. @dfn{User hooks} are shell functions executed before and after
  4889. each @command{tar} invocation. Thus, there are @dfn{backup
  4890. hooks}, which are executed before and after dumping each file
  4891. system, and @dfn{restore hooks}, executed before and
  4892. after restoring a file system. Each user hook is a shell function
  4893. taking four arguments:
  4894. @deffn {User Hook Function} hook @var{level} @var{host} @var{fs} @var{fsname}
  4895. Its arguments are:
  4896. @table @var
  4897. @item level
  4898. Current backup or restore level.
  4899. @item host
  4900. Name or IP address of the host machine being dumped or restored.
  4901. @item fs
  4902. Full file name of the file system being dumped or restored.
  4903. @item fsname
  4904. File system name with directory separators replaced with colons. This
  4905. is useful, e.g., for creating unique files.
  4906. @end table
  4907. @end deffn
  4908. Following variables keep the names of user hook functions
  4909. @defvr {Backup variable} DUMP_BEGIN
  4910. Dump begin function. It is executed before dumping the file system.
  4911. @end defvr
  4912. @defvr {Backup variable} DUMP_END
  4913. Executed after dumping the file system.
  4914. @end defvr
  4915. @defvr {Backup variable} RESTORE_BEGIN
  4916. Executed before restoring the file system.
  4917. @end defvr
  4918. @defvr {Backup variable} RESTORE_END
  4919. Executed after restoring the file system.
  4920. @end defvr
  4921. @node backup-specs example
  4922. @subsection An Example Text of @file{Backup-specs}
  4923. The following is an example of @file{backup-specs}:
  4924. @smallexample
  4925. # site-specific parameters for file system backup.
  4926. ADMINISTRATOR=friedman
  4927. BACKUP_HOUR=1
  4928. TAPE_FILE=/dev/nrsmt0
  4929. # Use @code{ssh} instead of the less secure @code{rsh}
  4930. RSH=/usr/bin/ssh
  4931. RSH_COMMAND=/usr/bin/ssh
  4932. # Override MT_STATUS function:
  4933. my_status() @{
  4934. mts -t $TAPE_FILE
  4935. @}
  4936. MT_STATUS=my_status
  4937. # Disable MT_OFFLINE function
  4938. MT_OFFLINE=:
  4939. BLOCKING=124
  4940. BACKUP_DIRS="
  4941. albert:/fs/fsf
  4942. apple-gunkies:/gd
  4943. albert:/fs/gd2
  4944. albert:/fs/gp
  4945. geech:/usr/jla
  4946. churchy:/usr/roland
  4947. albert:/
  4948. albert:/usr
  4949. apple-gunkies:/
  4950. apple-gunkies:/usr
  4951. gnu:/hack
  4952. gnu:/u
  4953. apple-gunkies:/com/mailer/gnu
  4954. apple-gunkies:/com/archive/gnu"
  4955. BACKUP_FILES="/com/mailer/aliases /com/mailer/league*[a-z]"
  4956. @end smallexample
  4957. @node Scripted Backups
  4958. @section Using the Backup Scripts
  4959. The syntax for running a backup script is:
  4960. @smallexample
  4961. backup --level=@var{level} --time=@var{time}
  4962. @end smallexample
  4963. The @option{level} option requests the dump level. Thus, to produce
  4964. a full dump, specify @code{--level=0} (this is the default, so
  4965. @option{--level} may be omitted if its value is @code{0}).
  4966. @footnote{For backward compatibility, the @code{backup} will also
  4967. try to deduce the requested dump level from the name of the
  4968. script itself. If the name consists of a string @samp{level-}
  4969. followed by a single decimal digit, that digit is taken as
  4970. the dump level number. Thus, you may create a link from @code{backup}
  4971. to @code{level-1} and then run @code{level-1} whenever you need to
  4972. create a level one dump.}
  4973. The @option{--time} option determines when should the backup be
  4974. run. @var{Time} may take three forms:
  4975. @table @asis
  4976. @item @var{hh}:@var{mm}
  4977. The dump must be run at @var{hh} hours @var{mm} minutes.
  4978. @item @var{hh}
  4979. The dump must be run at @var{hh} hours
  4980. @item now
  4981. The dump must be run immediately.
  4982. @end table
  4983. You should start a script with a tape or disk mounted. Once you
  4984. start a script, it prompts you for new tapes or disks as it
  4985. needs them. Media volumes don't have to correspond to archive
  4986. files --- a multi-volume archive can be started in the middle of a
  4987. tape that already contains the end of another multi-volume archive.
  4988. The @code{restore} script prompts for media by its archive volume,
  4989. so to avoid an error message you should keep track of which tape
  4990. (or disk) contains which volume of the archive (@pxref{Scripted
  4991. Restoration}).
  4992. The backup scripts write two files on the file system. The first is a
  4993. record file in @file{/etc/tar-backup/}, which is used by the scripts
  4994. to store and retrieve information about which files were dumped. This
  4995. file is not meant to be read by humans, and should not be deleted by
  4996. them. @xref{Snapshot Files}, for a more detailed explanation of this
  4997. file.
  4998. The second file is a log file containing the names of the file systems
  4999. and files dumped, what time the backup was made, and any error
  5000. messages that were generated, as well as how much space was left in
  5001. the media volume after the last volume of the archive was written.
  5002. You should check this log file after every backup. The file name is
  5003. @file{log-@var{mm-dd-yyyy}-level-@var{n}}, where @var{mm-dd-yyyy}
  5004. represents current date, and @var{n} represents current dump level number.
  5005. The script also prints the name of each system being dumped to the
  5006. standard output.
  5007. Following is the full list of options accepted by @code{backup}
  5008. script:
  5009. @table @option
  5010. @item -l @var{level}
  5011. @itemx --level=@var{level}
  5012. Do backup level @var{level} (default 0).
  5013. @item -f
  5014. @itemx --force
  5015. Force backup even if today's log file already exists.
  5016. @item -v[@var{level}]
  5017. @itemx --verbose[=@var{level}]
  5018. Set verbosity level. The higher the level is, the more debugging
  5019. information will be output during execution. Default @var{level}
  5020. is 100, which means the highest debugging level.
  5021. @item -t @var{start-time}
  5022. @itemx --time=@var{start-time}
  5023. Wait till @var{time}, then do backup.
  5024. @item -h
  5025. @itemx --help
  5026. Display short help message and exit.
  5027. @item -V
  5028. @itemx --version
  5029. Display information about the program's name, version, origin and legal
  5030. status, all on standard output, and then exit successfully.
  5031. @end table
  5032. @node Scripted Restoration
  5033. @section Using the Restore Script
  5034. To restore files that were archived using a scripted backup, use the
  5035. @code{restore} script. Its usage is quite straightforward. In the
  5036. simplest form, invoke @code{restore --all}, it will
  5037. then restore all the file systems and files specified in
  5038. @file{backup-specs} (@pxref{General-Purpose Variables,BACKUP_DIRS}).
  5039. You may select the file systems (and/or files) to restore by
  5040. giving @code{restore} list of @dfn{patterns} in its command
  5041. line. For example, running
  5042. @smallexample
  5043. restore 'albert:*'
  5044. @end smallexample
  5045. @noindent
  5046. will restore all file systems on the machine @samp{albert}. A more
  5047. complicated example:
  5048. @smallexample
  5049. restore 'albert:*' '*:/var'
  5050. @end smallexample
  5051. @noindent
  5052. This command will restore all file systems on the machine @samp{albert}
  5053. as well as @file{/var} file system on all machines.
  5054. By default @code{restore} will start restoring files from the lowest
  5055. available dump level (usually zero) and will continue through
  5056. all available dump levels. There may be situations where such a
  5057. thorough restore is not necessary. For example, you may wish to
  5058. restore only files from the recent level one backup. To do so,
  5059. use @option{--level} option, as shown in the example below:
  5060. @smallexample
  5061. restore --level=1
  5062. @end smallexample
  5063. The full list of options accepted by @code{restore} follows:
  5064. @table @option
  5065. @item -a
  5066. @itemx --all
  5067. Restore all file systems and files specified in @file{backup-specs}
  5068. @item -l @var{level}
  5069. @itemx --level=@var{level}
  5070. Start restoring from the given backup level, instead of the default 0.
  5071. @item -v[@var{level}]
  5072. @itemx --verbose[=@var{level}]
  5073. Set verbosity level. The higher the level is, the more debugging
  5074. information will be output during execution. Default @var{level}
  5075. is 100, which means the highest debugging level.
  5076. @item -h
  5077. @itemx --help
  5078. Display short help message and exit.
  5079. @item -V
  5080. @itemx --version
  5081. Display information about the program's name, version, origin and legal
  5082. status, all on standard output, and then exit successfully.
  5083. @end table
  5084. You should start the restore script with the media containing the
  5085. first volume of the archive mounted. The script will prompt for other
  5086. volumes as they are needed. If the archive is on tape, you don't need
  5087. to rewind the tape to to its beginning---if the tape head is
  5088. positioned past the beginning of the archive, the script will rewind
  5089. the tape as needed. @xref{Tape Positioning}, for a discussion of tape
  5090. positioning.
  5091. @quotation
  5092. @strong{Warning:} The script will delete files from the active file
  5093. system if they were not in the file system when the archive was made.
  5094. @end quotation
  5095. @xref{Incremental Dumps}, for an explanation of how the script makes
  5096. that determination.
  5097. @node Choosing
  5098. @chapter Choosing Files and Names for @command{tar}
  5099. @UNREVISED
  5100. Certain options to @command{tar} enable you to specify a name for your
  5101. archive. Other options let you decide which files to include or exclude
  5102. from the archive, based on when or whether files were modified, whether
  5103. the file names do or don't match specified patterns, or whether files
  5104. are in specified directories.
  5105. This chapter discusses these options in detail.
  5106. @menu
  5107. * file:: Choosing the Archive's Name
  5108. * Selecting Archive Members::
  5109. * files:: Reading Names from a File
  5110. * exclude:: Excluding Some Files
  5111. * wildcards:: Wildcards Patterns and Matching
  5112. * quoting styles:: Ways of Quoting Special Characters in Names
  5113. * transform:: Modifying File and Member Names
  5114. * after:: Operating Only on New Files
  5115. * recurse:: Descending into Directories
  5116. * one:: Crossing File System Boundaries
  5117. @end menu
  5118. @node file
  5119. @section Choosing and Naming Archive Files
  5120. @UNREVISED
  5121. @cindex Naming an archive
  5122. @cindex Archive Name
  5123. @cindex Choosing an archive file
  5124. @cindex Where is the archive?
  5125. By default, @command{tar} uses an archive file name that was compiled when
  5126. it was built on the system; usually this name refers to some physical
  5127. tape drive on the machine. However, the person who installed @command{tar}
  5128. on the system may not have set the default to a meaningful value as far as
  5129. most users are concerned. As a result, you will usually want to tell
  5130. @command{tar} where to find (or create) the archive. The
  5131. @option{--file=@var{archive-name}} (@option{-f @var{archive-name}})
  5132. option allows you to either specify or name a file to use as the archive
  5133. instead of the default archive file location.
  5134. @table @option
  5135. @xopindex{file, short description}
  5136. @item --file=@var{archive-name}
  5137. @itemx -f @var{archive-name}
  5138. Name the archive to create or operate on. Use in conjunction with
  5139. any operation.
  5140. @end table
  5141. For example, in this @command{tar} command,
  5142. @smallexample
  5143. $ @kbd{tar -cvf collection.tar blues folk jazz}
  5144. @end smallexample
  5145. @noindent
  5146. @file{collection.tar} is the name of the archive. It must directly
  5147. follow the @option{-f} option, since whatever directly follows @option{-f}
  5148. @emph{will} end up naming the archive. If you neglect to specify an
  5149. archive name, you may end up overwriting a file in the working directory
  5150. with the archive you create since @command{tar} will use this file's name
  5151. for the archive name.
  5152. An archive can be saved as a file in the file system, sent through a
  5153. pipe or over a network, or written to an I/O device such as a tape,
  5154. floppy disk, or CD write drive.
  5155. @cindex Writing new archives
  5156. @cindex Archive creation
  5157. If you do not name the archive, @command{tar} uses the value of the
  5158. environment variable @env{TAPE} as the file name for the archive. If
  5159. that is not available, @command{tar} uses a default, compiled-in archive
  5160. name, usually that for tape unit zero (i.e., @file{/dev/tu00}).
  5161. @cindex Standard input and output
  5162. @cindex tar to standard input and output
  5163. If you use @file{-} as an @var{archive-name}, @command{tar} reads the
  5164. archive from standard input (when listing or extracting files), or
  5165. writes it to standard output (when creating an archive). If you use
  5166. @file{-} as an @var{archive-name} when modifying an archive,
  5167. @command{tar} reads the original archive from its standard input and
  5168. writes the entire new archive to its standard output.
  5169. The following example is a convenient way of copying directory
  5170. hierarchy from @file{sourcedir} to @file{targetdir}.
  5171. @smallexample
  5172. $ @kbd{(cd sourcedir; tar -cf - .) | (cd targetdir; tar -xpf -)}
  5173. @end smallexample
  5174. The @option{-C} option allows to avoid using subshells:
  5175. @smallexample
  5176. $ @kbd{tar -C sourcedir -cf - . | tar -C targetdir -xpf -}
  5177. @end smallexample
  5178. In both examples above, the leftmost @command{tar} invocation archives
  5179. the contents of @file{sourcedir} to the standard output, while the
  5180. rightmost one reads this archive from its standard input and
  5181. extracts it. The @option{-p} option tells it to restore permissions
  5182. of the extracted files.
  5183. @cindex Remote devices
  5184. @cindex tar to a remote device
  5185. @anchor{remote-dev}
  5186. To specify an archive file on a device attached to a remote machine,
  5187. use the following:
  5188. @smallexample
  5189. @kbd{--file=@var{hostname}:/@var{dev}/@var{file-name}}
  5190. @end smallexample
  5191. @noindent
  5192. @command{tar} will complete the remote connection, if possible, and
  5193. prompt you for a username and password. If you use
  5194. @option{--file=@@@var{hostname}:/@var{dev}/@var{file-name}}, @command{tar}
  5195. will complete the remote connection, if possible, using your username
  5196. as the username on the remote machine.
  5197. @cindex Local and remote archives
  5198. @anchor{local and remote archives}
  5199. If the archive file name includes a colon (@samp{:}), then it is assumed
  5200. to be a file on another machine. If the archive file is
  5201. @samp{@var{user}@@@var{host}:@var{file}}, then @var{file} is used on the
  5202. host @var{host}. The remote host is accessed using the @command{rsh}
  5203. program, with a username of @var{user}. If the username is omitted
  5204. (along with the @samp{@@} sign), then your user name will be used.
  5205. (This is the normal @command{rsh} behavior.) It is necessary for the
  5206. remote machine, in addition to permitting your @command{rsh} access, to
  5207. have the @file{rmt} program installed (This command is included in
  5208. the @GNUTAR{} distribution and by default is installed under
  5209. @file{@var{prefix}/libexec/rmt}, were @var{prefix} means your
  5210. installation prefix). If you need to use a file whose name includes a
  5211. colon, then the remote tape drive behavior
  5212. can be inhibited by using the @option{--force-local} option.
  5213. When the archive is being created to @file{/dev/null}, @GNUTAR{}
  5214. tries to minimize input and output operations. The Amanda backup
  5215. system, when used with @GNUTAR{}, has an initial sizing pass which
  5216. uses this feature.
  5217. @node Selecting Archive Members
  5218. @section Selecting Archive Members
  5219. @cindex Specifying files to act on
  5220. @cindex Specifying archive members
  5221. @dfn{File Name arguments} specify which files in the file system
  5222. @command{tar} operates on, when creating or adding to an archive, or which
  5223. archive members @command{tar} operates on, when reading or deleting from
  5224. an archive. @xref{Operations}.
  5225. To specify file names, you can include them as the last arguments on
  5226. the command line, as follows:
  5227. @smallexample
  5228. @kbd{tar} @var{operation} [@var{option1} @var{option2} @dots{}] [@var{file name-1} @var{file name-2} @dots{}]
  5229. @end smallexample
  5230. If a file name begins with dash (@samp{-}), precede it with
  5231. @option{--add-file} option to prevent it from being treated as an
  5232. option.
  5233. @anchor{input name quoting}
  5234. By default @GNUTAR{} attempts to @dfn{unquote} each file or member
  5235. name, replacing @dfn{escape sequences} according to the following
  5236. table:
  5237. @multitable @columnfractions 0.20 0.60
  5238. @headitem Escape @tab Replaced with
  5239. @item \a @tab Audible bell (@acronym{ASCII} 7)
  5240. @item \b @tab Backspace (@acronym{ASCII} 8)
  5241. @item \f @tab Form feed (@acronym{ASCII} 12)
  5242. @item \n @tab New line (@acronym{ASCII} 10)
  5243. @item \r @tab Carriage return (@acronym{ASCII} 13)
  5244. @item \t @tab Horizontal tabulation (@acronym{ASCII} 9)
  5245. @item \v @tab Vertical tabulation (@acronym{ASCII} 11)
  5246. @item \? @tab @acronym{ASCII} 127
  5247. @item \@var{n} @tab @acronym{ASCII} @var{n} (@var{n} should be an octal number
  5248. of up to 3 digits)
  5249. @end multitable
  5250. A backslash followed by any other symbol is retained.
  5251. This default behavior is controlled by the following command line
  5252. option:
  5253. @table @option
  5254. @opindex unquote
  5255. @item --unquote
  5256. Enable unquoting input file or member names (default).
  5257. @opindex no-unquote
  5258. @item --no-unquote
  5259. Disable unquoting input file or member names.
  5260. @end table
  5261. If you specify a directory name as a file name argument, all the files
  5262. in that directory are operated on by @command{tar}.
  5263. If you do not specify files, @command{tar} behavior differs depending
  5264. on the operation mode as described below:
  5265. When @command{tar} is invoked with @option{--create} (@option{-c}),
  5266. @command{tar} will stop immediately, reporting the following:
  5267. @smallexample
  5268. @group
  5269. $ @kbd{tar cf a.tar}
  5270. tar: Cowardly refusing to create an empty archive
  5271. Try `tar --help' or `tar --usage' for more information.
  5272. @end group
  5273. @end smallexample
  5274. If you specify either @option{--list} (@option{-t}) or
  5275. @option{--extract} (@option{--get}, @option{-x}), @command{tar}
  5276. operates on all the archive members in the archive.
  5277. If run with @option{--diff} option, tar will compare the archive with
  5278. the contents of the current working directory.
  5279. If you specify any other operation, @command{tar} does nothing.
  5280. By default, @command{tar} takes file names from the command line. However,
  5281. there are other ways to specify file or member names, or to modify the
  5282. manner in which @command{tar} selects the files or members upon which to
  5283. operate. In general, these methods work both for specifying the names
  5284. of files and archive members.
  5285. @node files
  5286. @section Reading Names from a File
  5287. @cindex Reading file names from a file
  5288. @cindex Lists of file names
  5289. @cindex File Name arguments, alternatives
  5290. Instead of giving the names of files or archive members on the command
  5291. line, you can put the names into a file, and then use the
  5292. @option{--files-from=@var{file-of-names}} (@option{-T
  5293. @var{file-of-names}}) option to @command{tar}. Give the name of the
  5294. file which contains the list of files to include as the argument to
  5295. @option{--files-from}. In the list, the file names should be separated by
  5296. newlines. You will frequently use this option when you have generated
  5297. the list of files to archive with the @command{find} utility.
  5298. @table @option
  5299. @opindex files-from
  5300. @item --files-from=@var{file-name}
  5301. @itemx -T @var{file-name}
  5302. Get names to extract or create from file @var{file-name}.
  5303. @end table
  5304. If you give a single dash as a file name for @option{--files-from}, (i.e.,
  5305. you specify either @code{--files-from=-} or @code{-T -}), then the file
  5306. names are read from standard input.
  5307. Unless you are running @command{tar} with @option{--create}, you can not use
  5308. both @code{--files-from=-} and @code{--file=-} (@code{-f -}) in the same
  5309. command.
  5310. Any number of @option{-T} options can be given in the command line.
  5311. The following example shows how to use @command{find} to generate a list of
  5312. files smaller than 400K in length and put that list into a file
  5313. called @file{small-files}. You can then use the @option{-T} option to
  5314. @command{tar} to specify the files from that file, @file{small-files}, to
  5315. create the archive @file{little.tgz}. (The @option{-z} option to
  5316. @command{tar} compresses the archive with @command{gzip}; @pxref{gzip} for
  5317. more information.)
  5318. @smallexample
  5319. $ @kbd{find . -size -400 -print > small-files}
  5320. $ @kbd{tar -c -v -z -T small-files -f little.tgz}
  5321. @end smallexample
  5322. @noindent
  5323. In the file list given by @option{-T} option, any file name beginning
  5324. with @samp{-} character is considered a @command{tar} option and is
  5325. processed accordingly.@footnote{Versions of @GNUTAR{} up to 1.15.1
  5326. recognized only @option{-C} option in file lists, and only if the
  5327. option and its argument occupied two consecutive lines.} For example,
  5328. the common use of this feature is to change to another directory by
  5329. specifying @option{-C} option:
  5330. @smallexample
  5331. @group
  5332. $ @kbd{cat list}
  5333. -C/etc
  5334. passwd
  5335. hosts
  5336. -C/lib
  5337. libc.a
  5338. $ @kbd{tar -c -f foo.tar --files-from list}
  5339. @end group
  5340. @end smallexample
  5341. @noindent
  5342. In this example, @command{tar} will first switch to @file{/etc}
  5343. directory and add files @file{passwd} and @file{hosts} to the
  5344. archive. Then it will change to @file{/lib} directory and will archive
  5345. the file @file{libc.a}. Thus, the resulting archive @file{foo.tar} will
  5346. contain:
  5347. @smallexample
  5348. @group
  5349. $ @kbd{tar tf foo.tar}
  5350. passwd
  5351. hosts
  5352. libc.a
  5353. @end group
  5354. @end smallexample
  5355. @noindent
  5356. @xopindex{directory, using in @option{--files-from} argument}
  5357. Notice that the option parsing algorithm used with @option{-T} is
  5358. stricter than the one used by shell. Namely, when specifying option
  5359. arguments, you should observe the following rules:
  5360. @itemize @bullet
  5361. @item
  5362. When using short (single-letter) option form, its argument must
  5363. immediately follow the option letter, without any intervening
  5364. whitespace. For example: @code{-Cdir}.
  5365. @item
  5366. When using long option form, the option argument must be separated
  5367. from the option by a single equal sign. No whitespace is allowed on
  5368. any side of the equal sign. For example: @code{--directory=dir}.
  5369. @item
  5370. For both short and long option forms, the option argument can be given
  5371. on the next line after the option name, e.g.:
  5372. @smallexample
  5373. @group
  5374. --directory
  5375. dir
  5376. @end group
  5377. @end smallexample
  5378. @noindent
  5379. and
  5380. @smallexample
  5381. @group
  5382. -C
  5383. dir
  5384. @end group
  5385. @end smallexample
  5386. @end itemize
  5387. @opindex add-file
  5388. If you happen to have a file whose name starts with @samp{-},
  5389. precede it with @option{--add-file} option to prevent it from
  5390. being recognized as an option. For example: @code{--add-file=--my-file}.
  5391. @menu
  5392. * nul::
  5393. @end menu
  5394. @node nul
  5395. @subsection @code{NUL} Terminated File Names
  5396. @cindex File names, terminated by @code{NUL}
  5397. @cindex @code{NUL} terminated file names
  5398. The @option{--null} option causes
  5399. @option{--files-from=@var{file-of-names}} (@option{-T @var{file-of-names}})
  5400. to read file names terminated by a @code{NUL} instead of a newline, so
  5401. files whose names contain newlines can be archived using
  5402. @option{--files-from}.
  5403. @table @option
  5404. @opindex null
  5405. @item --null
  5406. Only consider @code{NUL} terminated file names, instead of files that
  5407. terminate in a newline.
  5408. @end table
  5409. The @option{--null} option is just like the one in @acronym{GNU}
  5410. @command{xargs} and @command{cpio}, and is useful with the
  5411. @option{-print0} predicate of @acronym{GNU} @command{find}. In
  5412. @command{tar}, @option{--null} also disables special handling for
  5413. file names that begin with dash.
  5414. This example shows how to use @command{find} to generate a list of files
  5415. larger than 800K in length and put that list into a file called
  5416. @file{long-files}. The @option{-print0} option to @command{find} is just
  5417. like @option{-print}, except that it separates files with a @code{NUL}
  5418. rather than with a newline. You can then run @command{tar} with both the
  5419. @option{--null} and @option{-T} options to specify that @command{tar} get the
  5420. files from that file, @file{long-files}, to create the archive
  5421. @file{big.tgz}. The @option{--null} option to @command{tar} will cause
  5422. @command{tar} to recognize the @code{NUL} separator between files.
  5423. @smallexample
  5424. $ @kbd{find . -size +800 -print0 > long-files}
  5425. $ @kbd{tar -c -v --null --files-from=long-files --file=big.tar}
  5426. @end smallexample
  5427. @FIXME{say anything else here to conclude the section?}
  5428. @node exclude
  5429. @section Excluding Some Files
  5430. @UNREVISED
  5431. @cindex File names, excluding files by
  5432. @cindex Excluding files by name and pattern
  5433. @cindex Excluding files by file system
  5434. To avoid operating on files whose names match a particular pattern,
  5435. use the @option{--exclude} or @option{--exclude-from} options.
  5436. @table @option
  5437. @opindex exclude
  5438. @item --exclude=@var{pattern}
  5439. Causes @command{tar} to ignore files that match the @var{pattern}.
  5440. @end table
  5441. @findex exclude
  5442. The @option{--exclude=@var{pattern}} option prevents any file or
  5443. member whose name matches the shell wildcard (@var{pattern}) from
  5444. being operated on.
  5445. For example, to create an archive with all the contents of the directory
  5446. @file{src} except for files whose names end in @file{.o}, use the
  5447. command @samp{tar -cf src.tar --exclude='*.o' src}.
  5448. You may give multiple @option{--exclude} options.
  5449. @table @option
  5450. @opindex exclude-from
  5451. @item --exclude-from=@var{file}
  5452. @itemx -X @var{file}
  5453. Causes @command{tar} to ignore files that match the patterns listed in
  5454. @var{file}.
  5455. @end table
  5456. @findex exclude-from
  5457. Use the @option{--exclude-from} option to read a
  5458. list of patterns, one per line, from @var{file}; @command{tar} will
  5459. ignore files matching those patterns. Thus if @command{tar} is
  5460. called as @w{@samp{tar -c -X foo .}} and the file @file{foo} contains a
  5461. single line @file{*.o}, no files whose names end in @file{.o} will be
  5462. added to the archive.
  5463. Notice, that lines from @var{file} are read verbatim. One of the
  5464. frequent errors is leaving some extra whitespace after a file name,
  5465. which is difficult to catch using text editors.
  5466. However, empty lines are OK.
  5467. @cindex version control system, excluding files
  5468. @cindex VCS, excluding files
  5469. @cindex SCCS, excluding files
  5470. @cindex RCS, excluding files
  5471. @cindex CVS, excluding files
  5472. @cindex SVN, excluding files
  5473. @cindex git, excluding files
  5474. @cindex Bazaar, excluding files
  5475. @cindex Arch, excluding files
  5476. @cindex Mercurial, excluding files
  5477. @cindex Darcs, excluding files
  5478. @table @option
  5479. @opindex exclude-vcs
  5480. @item --exclude-vcs
  5481. Exclude files and directories used by following version control
  5482. systems: @samp{CVS}, @samp{RCS}, @samp{SCCS}, @samp{SVN}, @samp{Arch},
  5483. @samp{Bazaar}, @samp{Mercurial}, and @samp{Darcs}.
  5484. @end table
  5485. As of version @value{VERSION}, the following files are excluded:
  5486. @itemize @bullet
  5487. @item @file{CVS/}, and everything under it
  5488. @item @file{RCS/}, and everything under it
  5489. @item @file{SCCS/}, and everything under it
  5490. @item @file{.git/}, and everything under it
  5491. @item @file{.gitignore}
  5492. @item @file{.cvsignore}
  5493. @item @file{.svn/}, and everything under it
  5494. @item @file{.arch-ids/}, and everything under it
  5495. @item @file{@{arch@}/}, and everything under it
  5496. @item @file{=RELEASE-ID}
  5497. @item @file{=meta-update}
  5498. @item @file{=update}
  5499. @item @file{.bzr}
  5500. @item @file{.bzrignore}
  5501. @item @file{.bzrtags}
  5502. @item @file{.hg}
  5503. @item @file{.hgignore}
  5504. @item @file{.hgrags}
  5505. @item @file{_darcs}
  5506. @end itemize
  5507. @findex exclude-caches
  5508. When creating an archive, the @option{--exclude-caches} option family
  5509. causes @command{tar} to exclude all directories that contain a @dfn{cache
  5510. directory tag}. A cache directory tag is a short file with the
  5511. well-known name @file{CACHEDIR.TAG} and having a standard header
  5512. specified in @url{http://www.brynosaurus.com/cachedir/spec.html}.
  5513. Various applications write cache directory tags into directories they
  5514. use to hold regenerable, non-precious data, so that such data can be
  5515. more easily excluded from backups.
  5516. There are three @samp{exclude-caches} options, each providing a different
  5517. exclusion semantics:
  5518. @table @option
  5519. @opindex exclude-caches
  5520. @item --exclude-caches
  5521. Do not archive the contents of the directory, but archive the
  5522. directory itself and the @file{CACHEDIR.TAG} file.
  5523. @opindex exclude-caches-under
  5524. @item --exclude-caches-under
  5525. Do not archive the contents of the directory, nor the
  5526. @file{CACHEDIR.TAG} file, archive only the directory itself.
  5527. @opindex exclude-caches-all
  5528. @item --exclude-caches-all
  5529. Omit directories containing @file{CACHEDIR.TAG} file entirely.
  5530. @end table
  5531. @findex exclude-tag
  5532. Another option family, @option{--exclude-tag}, provides a generalization of
  5533. this concept. It takes a single argument, a file name to look for.
  5534. Any directory that contains this file will be excluded from the dump.
  5535. Similarly to @samp{exclude-caches}, there are three options in this
  5536. option family:
  5537. @table @option
  5538. @opindex exclude-tag
  5539. @item --exclude-tag=@var{file}
  5540. Do not dump the contents of the directory, but dump the
  5541. directory itself and the @var{file}.
  5542. @opindex exclude-tag-under
  5543. @item --exclude-tag-under=@var{file}
  5544. Do not dump the contents of the directory, nor the
  5545. @var{file}, archive only the directory itself.
  5546. @opindex exclude-tag-all
  5547. @item --exclude-tag-all=@var{file}
  5548. Omit directories containing @var{file} file entirely.
  5549. @end table
  5550. Multiple @option{--exclude-tag*} options can be given.
  5551. For example, given this directory:
  5552. @smallexample
  5553. @group
  5554. $ @kbd{find dir}
  5555. dir
  5556. dir/blues
  5557. dir/jazz
  5558. dir/folk
  5559. dir/folk/tagfile
  5560. dir/folk/sanjuan
  5561. dir/folk/trote
  5562. @end group
  5563. @end smallexample
  5564. The @option{--exclude-tag} will produce the following:
  5565. @smallexample
  5566. $ @kbd{tar -cf archive.tar --exclude-tag=tagfile -v dir}
  5567. dir/
  5568. dir/blues
  5569. dir/jazz
  5570. dir/folk/
  5571. tar: dir/folk/: contains a cache directory tag tagfile;
  5572. contents not dumped
  5573. dir/folk/tagfile
  5574. @end smallexample
  5575. Both the @file{dir/folk} directory and its tagfile are preserved in
  5576. the archive, however the rest of files in this directory are not.
  5577. Now, using the @option{--exclude-tag-under} option will exclude
  5578. @file{tagfile} from the dump, while still preserving the directory
  5579. itself, as shown in this example:
  5580. @smallexample
  5581. $ @kbd{tar -cf archive.tar --exclude-tag-under=tagfile -v dir}
  5582. dir/
  5583. dir/blues
  5584. dir/jazz
  5585. dir/folk/
  5586. ./tar: dir/folk/: contains a cache directory tag tagfile;
  5587. contents not dumped
  5588. @end smallexample
  5589. Finally, using @option{--exclude-tag-all} omits the @file{dir/folk}
  5590. directory entirely:
  5591. @smallexample
  5592. $ @kbd{tar -cf archive.tar --exclude-tag-all=tagfile -v dir}
  5593. dir/
  5594. dir/blues
  5595. dir/jazz
  5596. ./tar: dir/folk/: contains a cache directory tag tagfile;
  5597. directory not dumped
  5598. @end smallexample
  5599. @menu
  5600. * problems with exclude::
  5601. @end menu
  5602. @node problems with exclude
  5603. @unnumberedsubsec Problems with Using the @code{exclude} Options
  5604. @xopindex{exclude, potential problems with}
  5605. Some users find @samp{exclude} options confusing. Here are some common
  5606. pitfalls:
  5607. @itemize @bullet
  5608. @item
  5609. The main operating mode of @command{tar} does not act on a file name
  5610. explicitly listed on the command line, if one of its file name
  5611. components is excluded. In the example above, if
  5612. you create an archive and exclude files that end with @samp{*.o}, but
  5613. explicitly name the file @samp{dir.o/foo} after all the options have been
  5614. listed, @samp{dir.o/foo} will be excluded from the archive.
  5615. @item
  5616. You can sometimes confuse the meanings of @option{--exclude} and
  5617. @option{--exclude-from}. Be careful: use @option{--exclude} when files
  5618. to be excluded are given as a pattern on the command line. Use
  5619. @option{--exclude-from} to introduce the name of a file which contains
  5620. a list of patterns, one per line; each of these patterns can exclude
  5621. zero, one, or many files.
  5622. @item
  5623. When you use @option{--exclude=@var{pattern}}, be sure to quote the
  5624. @var{pattern} parameter, so @GNUTAR{} sees wildcard characters
  5625. like @samp{*}. If you do not do this, the shell might expand the
  5626. @samp{*} itself using files at hand, so @command{tar} might receive a
  5627. list of files instead of one pattern, or none at all, making the
  5628. command somewhat illegal. This might not correspond to what you want.
  5629. For example, write:
  5630. @smallexample
  5631. $ @kbd{tar -c -f @var{archive.tar} --exclude '*.o' @var{directory}}
  5632. @end smallexample
  5633. @noindent
  5634. rather than:
  5635. @smallexample
  5636. # @emph{Wrong!}
  5637. $ @kbd{tar -c -f @var{archive.tar} --exclude *.o @var{directory}}
  5638. @end smallexample
  5639. @item
  5640. You must use use shell syntax, or globbing, rather than @code{regexp}
  5641. syntax, when using exclude options in @command{tar}. If you try to use
  5642. @code{regexp} syntax to describe files to be excluded, your command
  5643. might fail.
  5644. @item
  5645. @FIXME{The change in semantics must have occurred before 1.11,
  5646. so I doubt if it is worth mentioning at all. Anyway, should at
  5647. least specify in which version the semantics changed.}
  5648. In earlier versions of @command{tar}, what is now the
  5649. @option{--exclude-from} option was called @option{--exclude} instead.
  5650. Now, @option{--exclude} applies to patterns listed on the command
  5651. line and @option{--exclude-from} applies to patterns listed in a
  5652. file.
  5653. @end itemize
  5654. @node wildcards
  5655. @section Wildcards Patterns and Matching
  5656. @dfn{Globbing} is the operation by which @dfn{wildcard} characters,
  5657. @samp{*} or @samp{?} for example, are replaced and expanded into all
  5658. existing files matching the given pattern. @GNUTAR{} can use wildcard
  5659. patterns for matching (or globbing) archive members when extracting
  5660. from or listing an archive. Wildcard patterns are also used for
  5661. verifying volume labels of @command{tar} archives. This section has the
  5662. purpose of explaining wildcard syntax for @command{tar}.
  5663. @FIXME{the next few paragraphs need work.}
  5664. A @var{pattern} should be written according to shell syntax, using wildcard
  5665. characters to effect globbing. Most characters in the pattern stand
  5666. for themselves in the matched string, and case is significant: @samp{a}
  5667. will match only @samp{a}, and not @samp{A}. The character @samp{?} in the
  5668. pattern matches any single character in the matched string. The character
  5669. @samp{*} in the pattern matches zero, one, or more single characters in
  5670. the matched string. The character @samp{\} says to take the following
  5671. character of the pattern @emph{literally}; it is useful when one needs to
  5672. match the @samp{?}, @samp{*}, @samp{[} or @samp{\} characters, themselves.
  5673. The character @samp{[}, up to the matching @samp{]}, introduces a character
  5674. class. A @dfn{character class} is a list of acceptable characters
  5675. for the next single character of the matched string. For example,
  5676. @samp{[abcde]} would match any of the first five letters of the alphabet.
  5677. Note that within a character class, all of the ``special characters''
  5678. listed above other than @samp{\} lose their special meaning; for example,
  5679. @samp{[-\\[*?]]} would match any of the characters, @samp{-}, @samp{\},
  5680. @samp{[}, @samp{*}, @samp{?}, or @samp{]}. (Due to parsing constraints,
  5681. the characters @samp{-} and @samp{]} must either come @emph{first} or
  5682. @emph{last} in a character class.)
  5683. @cindex Excluding characters from a character class
  5684. @cindex Character class, excluding characters from
  5685. If the first character of the class after the opening @samp{[}
  5686. is @samp{!} or @samp{^}, then the meaning of the class is reversed.
  5687. Rather than listing character to match, it lists those characters which
  5688. are @emph{forbidden} as the next single character of the matched string.
  5689. Other characters of the class stand for themselves. The special
  5690. construction @samp{[@var{a}-@var{e}]}, using an hyphen between two
  5691. letters, is meant to represent all characters between @var{a} and
  5692. @var{e}, inclusive.
  5693. @FIXME{need to add a sentence or so here to make this clear for those
  5694. who don't have dan around.}
  5695. Periods (@samp{.}) or forward slashes (@samp{/}) are not considered
  5696. special for wildcard matches. However, if a pattern completely matches
  5697. a directory prefix of a matched string, then it matches the full matched
  5698. string: thus, excluding a directory also excludes all the files beneath it.
  5699. @menu
  5700. * controlling pattern-matching::
  5701. @end menu
  5702. @node controlling pattern-matching
  5703. @unnumberedsubsec Controlling Pattern-Matching
  5704. For the purposes of this section, we call @dfn{exclusion members} all
  5705. member names obtained while processing @option{--exclude} and
  5706. @option{--exclude-from} options, and @dfn{inclusion members} those
  5707. member names that were given in the command line or read from the file
  5708. specified with @option{--files-from} option.
  5709. These two pairs of member lists are used in the following operations:
  5710. @option{--diff}, @option{--extract}, @option{--list},
  5711. @option{--update}.
  5712. There are no inclusion members in create mode (@option{--create} and
  5713. @option{--append}), since in this mode the names obtained from the
  5714. command line refer to @emph{files}, not archive members.
  5715. By default, inclusion members are compared with archive members
  5716. literally @footnote{Notice that earlier @GNUTAR{} versions used
  5717. globbing for inclusion members, which contradicted to UNIX98
  5718. specification and was not documented. @xref{Changes}, for more
  5719. information on this and other changes.} and exclusion members are
  5720. treated as globbing patterns. For example:
  5721. @smallexample
  5722. @group
  5723. $ @kbd{tar tf foo.tar}
  5724. a.c
  5725. b.c
  5726. a.txt
  5727. [remarks]
  5728. # @i{Member names are used verbatim:}
  5729. $ @kbd{tar -xf foo.tar -v '[remarks]'}
  5730. [remarks]
  5731. # @i{Exclude member names are globbed:}
  5732. $ @kbd{tar -xf foo.tar -v --exclude '*.c'}
  5733. a.txt
  5734. [remarks]
  5735. @end group
  5736. @end smallexample
  5737. This behavior can be altered by using the following options:
  5738. @table @option
  5739. @opindex wildcards
  5740. @item --wildcards
  5741. Treat all member names as wildcards.
  5742. @opindex no-wildcards
  5743. @item --no-wildcards
  5744. Treat all member names as literal strings.
  5745. @end table
  5746. Thus, to extract files whose names end in @samp{.c}, you can use:
  5747. @smallexample
  5748. $ @kbd{tar -xf foo.tar -v --wildcards '*.c'}
  5749. a.c
  5750. b.c
  5751. @end smallexample
  5752. @noindent
  5753. Notice quoting of the pattern to prevent the shell from interpreting
  5754. it.
  5755. The effect of @option{--wildcards} option is canceled by
  5756. @option{--no-wildcards}. This can be used to pass part of
  5757. the command line arguments verbatim and other part as globbing
  5758. patterns. For example, the following invocation:
  5759. @smallexample
  5760. $ @kbd{tar -xf foo.tar --wildcards '*.txt' --no-wildcards '[remarks]'}
  5761. @end smallexample
  5762. @noindent
  5763. instructs @command{tar} to extract from @file{foo.tar} all files whose
  5764. names end in @samp{.txt} and the file named @file{[remarks]}.
  5765. Normally, a pattern matches a name if an initial subsequence of the
  5766. name's components matches the pattern, where @samp{*}, @samp{?}, and
  5767. @samp{[...]} are the usual shell wildcards, @samp{\} escapes wildcards,
  5768. and wildcards can match @samp{/}.
  5769. Other than optionally stripping leading @samp{/} from names
  5770. (@pxref{absolute}), patterns and names are used as-is. For
  5771. example, trailing @samp{/} is not trimmed from a user-specified name
  5772. before deciding whether to exclude it.
  5773. However, this matching procedure can be altered by the options listed
  5774. below. These options accumulate. For example:
  5775. @smallexample
  5776. --ignore-case --exclude='makefile' --no-ignore-case ---exclude='readme'
  5777. @end smallexample
  5778. @noindent
  5779. ignores case when excluding @samp{makefile}, but not when excluding
  5780. @samp{readme}.
  5781. @table @option
  5782. @opindex anchored
  5783. @opindex no-anchored
  5784. @item --anchored
  5785. @itemx --no-anchored
  5786. If anchored, a pattern must match an initial subsequence
  5787. of the name's components. Otherwise, the pattern can match any
  5788. subsequence. Default is @option{--no-anchored} for exclusion members
  5789. and @option{--anchored} inclusion members.
  5790. @opindex ignore-case
  5791. @opindex no-ignore-case
  5792. @item --ignore-case
  5793. @itemx --no-ignore-case
  5794. When ignoring case, upper-case patterns match lower-case names and vice versa.
  5795. When not ignoring case (the default), matching is case-sensitive.
  5796. @opindex wildcards-match-slash
  5797. @opindex no-wildcards-match-slash
  5798. @item --wildcards-match-slash
  5799. @itemx --no-wildcards-match-slash
  5800. When wildcards match slash (the default for exclusion members), a
  5801. wildcard like @samp{*} in the pattern can match a @samp{/} in the
  5802. name. Otherwise, @samp{/} is matched only by @samp{/}.
  5803. @end table
  5804. The @option{--recursion} and @option{--no-recursion} options
  5805. (@pxref{recurse}) also affect how member patterns are interpreted. If
  5806. recursion is in effect, a pattern matches a name if it matches any of
  5807. the name's parent directories.
  5808. The following table summarizes pattern-matching default values:
  5809. @multitable @columnfractions .3 .7
  5810. @headitem Members @tab Default settings
  5811. @item Inclusion @tab @option{--no-wildcards --anchored --no-wildcards-match-slash}
  5812. @item Exclusion @tab @option{--wildcards --no-anchored --wildcards-match-slash}
  5813. @end multitable
  5814. @node quoting styles
  5815. @section Quoting Member Names
  5816. When displaying member names, @command{tar} takes care to avoid
  5817. ambiguities caused by certain characters. This is called @dfn{name
  5818. quoting}. The characters in question are:
  5819. @itemize @bullet
  5820. @item Non-printable control characters:
  5821. @anchor{escape sequences}
  5822. @multitable @columnfractions 0.20 0.10 0.60
  5823. @headitem Character @tab @acronym{ASCII} @tab Character name
  5824. @item \a @tab 7 @tab Audible bell
  5825. @item \b @tab 8 @tab Backspace
  5826. @item \f @tab 12 @tab Form feed
  5827. @item \n @tab 10 @tab New line
  5828. @item \r @tab 13 @tab Carriage return
  5829. @item \t @tab 9 @tab Horizontal tabulation
  5830. @item \v @tab 11 @tab Vertical tabulation
  5831. @end multitable
  5832. @item Space (@acronym{ASCII} 32)
  5833. @item Single and double quotes (@samp{'} and @samp{"})
  5834. @item Backslash (@samp{\})
  5835. @end itemize
  5836. The exact way @command{tar} uses to quote these characters depends on
  5837. the @dfn{quoting style}. The default quoting style, called
  5838. @dfn{escape} (see below), uses backslash notation to represent control
  5839. characters, space and backslash. Using this quoting style, control
  5840. characters are represented as listed in column @samp{Character} in the
  5841. above table, a space is printed as @samp{\ } and a backslash as @samp{\\}.
  5842. @GNUTAR{} offers seven distinct quoting styles, which can be selected
  5843. using @option{--quoting-style} option:
  5844. @table @option
  5845. @item --quoting-style=@var{style}
  5846. @opindex quoting-style
  5847. Sets quoting style. Valid values for @var{style} argument are:
  5848. literal, shell, shell-always, c, escape, locale, clocale.
  5849. @end table
  5850. These styles are described in detail below. To illustrate their
  5851. effect, we will use an imaginary tar archive @file{arch.tar}
  5852. containing the following members:
  5853. @smallexample
  5854. @group
  5855. # 1. Contains horizontal tabulation character.
  5856. a tab
  5857. # 2. Contains newline character
  5858. a
  5859. newline
  5860. # 3. Contains a space
  5861. a space
  5862. # 4. Contains double quotes
  5863. a"double"quote
  5864. # 5. Contains single quotes
  5865. a'single'quote
  5866. # 6. Contains a backslash character:
  5867. a\backslash
  5868. @end group
  5869. @end smallexample
  5870. Here is how usual @command{ls} command would have listed them, if they
  5871. had existed in the current working directory:
  5872. @smallexample
  5873. @group
  5874. $ @kbd{ls}
  5875. a\ttab
  5876. a\nnewline
  5877. a\ space
  5878. a"double"quote
  5879. a'single'quote
  5880. a\\backslash
  5881. @end group
  5882. @end smallexample
  5883. Quoting styles:
  5884. @table @samp
  5885. @item literal
  5886. No quoting, display each character as is:
  5887. @smallexample
  5888. @group
  5889. $ @kbd{tar tf arch.tar --quoting-style=literal}
  5890. ./
  5891. ./a space
  5892. ./a'single'quote
  5893. ./a"double"quote
  5894. ./a\backslash
  5895. ./a tab
  5896. ./a
  5897. newline
  5898. @end group
  5899. @end smallexample
  5900. @item shell
  5901. Display characters the same way Bourne shell does:
  5902. control characters, except @samp{\t} and @samp{\n}, are printed using
  5903. backslash escapes, @samp{\t} and @samp{\n} are printed as is, and a
  5904. single quote is printed as @samp{\'}. If a name contains any quoted
  5905. characters, it is enclosed in single quotes. In particular, if a name
  5906. contains single quotes, it is printed as several single-quoted strings:
  5907. @smallexample
  5908. @group
  5909. $ @kbd{tar tf arch.tar --quoting-style=shell}
  5910. ./
  5911. './a space'
  5912. './a'\''single'\''quote'
  5913. './a"double"quote'
  5914. './a\backslash'
  5915. './a tab'
  5916. './a
  5917. newline'
  5918. @end group
  5919. @end smallexample
  5920. @item shell-always
  5921. Same as @samp{shell}, but the names are always enclosed in single
  5922. quotes:
  5923. @smallexample
  5924. @group
  5925. $ @kbd{tar tf arch.tar --quoting-style=shell-always}
  5926. './'
  5927. './a space'
  5928. './a'\''single'\''quote'
  5929. './a"double"quote'
  5930. './a\backslash'
  5931. './a tab'
  5932. './a
  5933. newline'
  5934. @end group
  5935. @end smallexample
  5936. @item c
  5937. Use the notation of the C programming language. All names are
  5938. enclosed in double quotes. Control characters are quoted using
  5939. backslash notations, double quotes are represented as @samp{\"},
  5940. backslash characters are represented as @samp{\\}. Single quotes and
  5941. spaces are not quoted:
  5942. @smallexample
  5943. @group
  5944. $ @kbd{tar tf arch.tar --quoting-style=c}
  5945. "./"
  5946. "./a space"
  5947. "./a'single'quote"
  5948. "./a\"double\"quote"
  5949. "./a\\backslash"
  5950. "./a\ttab"
  5951. "./a\nnewline"
  5952. @end group
  5953. @end smallexample
  5954. @item escape
  5955. Control characters are printed using backslash notation, a space is
  5956. printed as @samp{\ } and a backslash as @samp{\\}. This is the
  5957. default quoting style, unless it was changed when configured the
  5958. package.
  5959. @smallexample
  5960. @group
  5961. $ @kbd{tar tf arch.tar --quoting-style=escape}
  5962. ./
  5963. ./a space
  5964. ./a'single'quote
  5965. ./a"double"quote
  5966. ./a\\backslash
  5967. ./a\ttab
  5968. ./a\nnewline
  5969. @end group
  5970. @end smallexample
  5971. @item locale
  5972. Control characters, single quote and backslash are printed using
  5973. backslash notation. All names are quoted using left and right
  5974. quotation marks, appropriate to the current locale. If it does not
  5975. define quotation marks, use @samp{`} as left and @samp{'} as right
  5976. quotation marks. Any occurrences of the right quotation mark in a
  5977. name are escaped with @samp{\}, for example:
  5978. For example:
  5979. @smallexample
  5980. @group
  5981. $ @kbd{tar tf arch.tar --quoting-style=locale}
  5982. `./'
  5983. `./a space'
  5984. `./a\'single\'quote'
  5985. `./a"double"quote'
  5986. `./a\\backslash'
  5987. `./a\ttab'
  5988. `./a\nnewline'
  5989. @end group
  5990. @end smallexample
  5991. @item clocale
  5992. Same as @samp{locale}, but @samp{"} is used for both left and right
  5993. quotation marks, if not provided by the currently selected locale:
  5994. @smallexample
  5995. @group
  5996. $ @kbd{tar tf arch.tar --quoting-style=clocale}
  5997. "./"
  5998. "./a space"
  5999. "./a'single'quote"
  6000. "./a\"double\"quote"
  6001. "./a\\backslash"
  6002. "./a\ttab"
  6003. "./a\nnewline"
  6004. @end group
  6005. @end smallexample
  6006. @end table
  6007. You can specify which characters should be quoted in addition to those
  6008. implied by the current quoting style:
  6009. @table @option
  6010. @item --quote-chars=@var{string}
  6011. Always quote characters from @var{string}, even if the selected
  6012. quoting style would not quote them.
  6013. @end table
  6014. For example, using @samp{escape} quoting (compare with the usual
  6015. escape listing above):
  6016. @smallexample
  6017. @group
  6018. $ @kbd{tar tf arch.tar --quoting-style=escape --quote-chars=' "'}
  6019. ./
  6020. ./a\ space
  6021. ./a'single'quote
  6022. ./a\"double\"quote
  6023. ./a\\backslash
  6024. ./a\ttab
  6025. ./a\nnewline
  6026. @end group
  6027. @end smallexample
  6028. To disable quoting of such additional characters, use the following
  6029. option:
  6030. @table @option
  6031. @item --no-quote-chars=@var{string}
  6032. Remove characters listed in @var{string} from the list of quoted
  6033. characters set by the previous @option{--quote-chars} option.
  6034. @end table
  6035. This option is particularly useful if you have added
  6036. @option{--quote-chars} to your @env{TAR_OPTIONS} (@pxref{TAR_OPTIONS})
  6037. and wish to disable it for the current invocation.
  6038. Note, that @option{--no-quote-chars} does @emph{not} disable those
  6039. characters that are quoted by default in the selected quoting style.
  6040. @node transform
  6041. @section Modifying File and Member Names
  6042. @command{Tar} archives contain detailed information about files stored
  6043. in them and full file names are part of that information. When
  6044. storing file to an archive, its file name is recorded in the archive
  6045. along with the actual file contents. When restoring from an archive,
  6046. a file is created on disk with exactly the same name as that stored
  6047. in the archive. In the majority of cases this is the desired behavior
  6048. of a file archiver. However, there are some cases when it is not.
  6049. First of all, it is often unsafe to extract archive members with
  6050. absolute file names or those that begin with a @file{../}. @GNUTAR{}
  6051. takes special precautions when extracting such names and provides a
  6052. special option for handling them, which is described in
  6053. @ref{absolute}.
  6054. Secondly, you may wish to extract file names without some leading
  6055. directory components, or with otherwise modified names. In other
  6056. cases it is desirable to store files under differing names in the
  6057. archive.
  6058. @GNUTAR{} provides two options for these needs.
  6059. @table @option
  6060. @opindex strip-components
  6061. @item --strip-components=@var{number}
  6062. Strip given @var{number} of leading components from file names before
  6063. extraction.
  6064. @end table
  6065. For example, suppose you have archived whole @file{/usr} hierarchy to
  6066. a tar archive named @file{usr.tar}. Among other files, this archive
  6067. contains @file{usr/include/stdlib.h}, which you wish to extract to
  6068. the current working directory. To do so, you type:
  6069. @smallexample
  6070. $ @kbd{tar -xf usr.tar --strip=2 usr/include/stdlib.h}
  6071. @end smallexample
  6072. The option @option{--strip=2} instructs @command{tar} to strip the
  6073. two leading components (@file{usr/} and @file{include/}) off the file
  6074. name.
  6075. If you add to the above invocation @option{--verbose} (@option{-v})
  6076. option, you will note that the verbose listing still contains the
  6077. full file name, with the two removed components still in place. This
  6078. can be inconvenient, so @command{tar} provides a special option for
  6079. altering this behavior:
  6080. @anchor{show-transformed-names}
  6081. @table @option
  6082. @opindex show-transformed-names
  6083. @item --show-transformed-names
  6084. Display file or member names with all requested transformations
  6085. applied.
  6086. @end table
  6087. @noindent
  6088. For example:
  6089. @smallexample
  6090. @group
  6091. $ @kbd{tar -xf usr.tar -v --strip=2 usr/include/stdlib.h}
  6092. usr/include/stdlib.h
  6093. $ @kbd{tar -xf usr.tar -v --strip=2 --show-transformed usr/include/stdlib.h}
  6094. stdlib.h
  6095. @end group
  6096. @end smallexample
  6097. Notice that in both cases the file is @file{stdlib.h} extracted to the
  6098. current working directory, @option{--show-transformed-names} affects
  6099. only the way its name is displayed.
  6100. This option is especially useful for verifying whether the invocation
  6101. will have the desired effect. Thus, before running
  6102. @smallexample
  6103. $ @kbd{tar -x --strip=@var{n}}
  6104. @end smallexample
  6105. @noindent
  6106. it is often advisable to run
  6107. @smallexample
  6108. $ @kbd{tar -t -v --show-transformed --strip=@var{n}}
  6109. @end smallexample
  6110. @noindent
  6111. to make sure the command will produce the intended results.
  6112. In case you need to apply more complex modifications to the file name,
  6113. @GNUTAR{} provides a general-purpose transformation option:
  6114. @table @option
  6115. @opindex transform
  6116. @item --transform=@var{expression}
  6117. Modify file names using supplied @var{expression}.
  6118. @end table
  6119. @noindent
  6120. The @var{expression} is a @command{sed}-like replace expression of the
  6121. form:
  6122. @smallexample
  6123. s/@var{regexp}/@var{replace}/[@var{flags}]
  6124. @end smallexample
  6125. @noindent
  6126. where @var{regexp} is a @dfn{regular expression}, @var{replace} is a
  6127. replacement for each file name part that matches @var{regexp}. Both
  6128. @var{regexp} and @var{replace} are described in detail in
  6129. @ref{The "s" Command, The "s" Command, The `s' Command, sed, GNU sed}.
  6130. As in @command{sed}, you can give several replace expressions,
  6131. separated by a semicolon.
  6132. Supported @var{flags} are:
  6133. @table @samp
  6134. @item g
  6135. Apply the replacement to @emph{all} matches to the @var{regexp}, not
  6136. just the first.
  6137. @item i
  6138. Use case-insensitive matching
  6139. @item x
  6140. @var{regexp} is an @dfn{extended regular expression} (@pxref{Extended
  6141. regexps, Extended regular expressions, Extended regular expressions,
  6142. sed, GNU sed}).
  6143. @item @var{number}
  6144. Only replace the @var{number}th match of the @var{regexp}.
  6145. Note: the @var{posix} standard does not specify what should happen
  6146. when you mix the @samp{g} and @var{number} modifiers. @GNUTAR{}
  6147. follows the GNU @command{sed} implementation in this regard, so
  6148. the interaction is defined to be: ignore matches before the
  6149. @var{number}th, and then match and replace all matches from the
  6150. @var{number}th on.
  6151. @end table
  6152. Any delimiter can be used in lieue of @samp{/}, the only requirement being
  6153. that it be used consistently throughout the expression. For example,
  6154. the following two expressions are equivalent:
  6155. @smallexample
  6156. @group
  6157. s/one/two/
  6158. s,one,two,
  6159. @end group
  6160. @end smallexample
  6161. Changing delimiters is often useful when the @var{regex} contains
  6162. slashes. For example, it is more convenient to write @code{s,/,-,} than
  6163. @code{s/\//-/}.
  6164. Here are several examples of @option{--transform} usage:
  6165. @enumerate
  6166. @item Extract @file{usr/} hierarchy into @file{usr/local/}:
  6167. @smallexample
  6168. $ @kbd{tar --transform='s,usr/,usr/local/,' -x -f arch.tar}
  6169. @end smallexample
  6170. @item Strip two leading directory components (equivalent to
  6171. @option{--strip-components=2}):
  6172. @smallexample
  6173. $ @kbd{tar --transform='s,/*[^/]*/[^/]*/,,' -x -f arch.tar}
  6174. @end smallexample
  6175. @item Prepend @file{/prefix/} to each file name:
  6176. @smallexample
  6177. $ @kbd{tar --transform 's,^,/prefix/,' -x -f arch.tar}
  6178. @end smallexample
  6179. @item Convert each file name to lower case:
  6180. @smallexample
  6181. $ @kbd{tar --transform 's/.*/\L&/' -x -f arch.tar}
  6182. @end smallexample
  6183. @end enumerate
  6184. Unlike @option{--strip-components}, @option{--transform} can be used
  6185. in any @GNUTAR{} operation mode. For example, the following command
  6186. adds files to the archive while replacing the leading @file{usr/}
  6187. component with @file{var/}:
  6188. @smallexample
  6189. $ @kbd{tar -cf arch.tar --transform='s,^usr/,var/,' /}
  6190. @end smallexample
  6191. To test @option{--transform} effect we suggest using
  6192. @option{--show-transformed-names} option:
  6193. @smallexample
  6194. $ @kbd{tar -cf arch.tar --transform='s,^usr/,var/,' \
  6195. --verbose --show-transformed-names /}
  6196. @end smallexample
  6197. If both @option{--strip-components} and @option{--transform} are used
  6198. together, then @option{--transform} is applied first, and the required
  6199. number of components is then stripped from its result.
  6200. You can use as many @option{--transform} options in a single command
  6201. line as you want. The specified expressions will then be applied in
  6202. order of their appearance. For example, the following two invocations
  6203. are equivalent:
  6204. @smallexample
  6205. $ @kbd{tar -cf arch.tar --transform='s,/usr/var,/var/' \
  6206. --transform='s,/usr/local,/usr/,'}
  6207. $ @kbd{tar -cf arch.tar \
  6208. --transform='s,/usr/var,/var/;s,/usr/local,/usr/,'}
  6209. @end smallexample
  6210. @node after
  6211. @section Operating Only on New Files
  6212. @UNREVISED
  6213. @cindex Excluding file by age
  6214. @cindex Data Modification time, excluding files by
  6215. @cindex Modification time, excluding files by
  6216. @cindex Age, excluding files by
  6217. The @option{--after-date=@var{date}} (@option{--newer=@var{date}},
  6218. @option{-N @var{date}}) option causes @command{tar} to only work on
  6219. files whose data modification or status change times are newer than
  6220. the @var{date} given. If @var{date} starts with @samp{/} or @samp{.},
  6221. it is taken to be a file name; the data modification time of that file
  6222. is used as the date. If you use this option when creating or appending
  6223. to an archive, the archive will only include new files. If you use
  6224. @option{--after-date} when extracting an archive, @command{tar} will
  6225. only extract files newer than the @var{date} you specify.
  6226. If you only want @command{tar} to make the date comparison based on
  6227. modification of the file's data (rather than status
  6228. changes), then use the @option{--newer-mtime=@var{date}} option.
  6229. You may use these options with any operation. Note that these options
  6230. differ from the @option{--update} (@option{-u}) operation in that they
  6231. allow you to specify a particular date against which @command{tar} can
  6232. compare when deciding whether or not to archive the files.
  6233. @table @option
  6234. @opindex after-date
  6235. @opindex newer
  6236. @item --after-date=@var{date}
  6237. @itemx --newer=@var{date}
  6238. @itemx -N @var{date}
  6239. Only store files newer than @var{date}.
  6240. Acts on files only if their data modification or status change times are
  6241. later than @var{date}. Use in conjunction with any operation.
  6242. If @var{date} starts with @samp{/} or @samp{.}, it is taken to be a file
  6243. name; the data modification time of that file is used as the date.
  6244. @opindex newer-mtime
  6245. @item --newer-mtime=@var{date}
  6246. Acts like @option{--after-date}, but only looks at data modification times.
  6247. @end table
  6248. These options limit @command{tar} to operate only on files which have
  6249. been modified after the date specified. A file's status is considered to have
  6250. changed if its contents have been modified, or if its owner,
  6251. permissions, and so forth, have been changed. (For more information on
  6252. how to specify a date, see @ref{Date input formats}; remember that the
  6253. entire date argument must be quoted if it contains any spaces.)
  6254. Gurus would say that @option{--after-date} tests both the data
  6255. modification time (@code{mtime}, the time the contents of the file
  6256. were last modified) and the status change time (@code{ctime}, the time
  6257. the file's status was last changed: owner, permissions, etc.@:)
  6258. fields, while @option{--newer-mtime} tests only the @code{mtime}
  6259. field.
  6260. To be precise, @option{--after-date} checks @emph{both} @code{mtime} and
  6261. @code{ctime} and processes the file if either one is more recent than
  6262. @var{date}, while @option{--newer-mtime} only checks @code{mtime} and
  6263. disregards @code{ctime}. Neither does it use @code{atime} (the last time the
  6264. contents of the file were looked at).
  6265. Date specifiers can have embedded spaces. Because of this, you may need
  6266. to quote date arguments to keep the shell from parsing them as separate
  6267. arguments. For example, the following command will add to the archive
  6268. all the files modified less than two days ago:
  6269. @smallexample
  6270. $ @kbd{tar -cf foo.tar --newer-mtime '2 days ago'}
  6271. @end smallexample
  6272. When any of these options is used with the option @option{--verbose}
  6273. (@pxref{verbose tutorial}) @GNUTAR{} will try to convert the specified
  6274. date back to its textual representation and compare that with the
  6275. one given with the option. If the two dates differ, @command{tar} will
  6276. print a warning saying what date it will use. This is to help user
  6277. ensure he is using the right date. For example:
  6278. @smallexample
  6279. @group
  6280. $ @kbd{tar -c -f archive.tar --after-date='10 days ago' .}
  6281. tar: Option --after-date: Treating date `10 days ago' as 2006-06-11
  6282. 13:19:37.232434
  6283. @end group
  6284. @end smallexample
  6285. @quotation
  6286. @strong{Please Note:} @option{--after-date} and @option{--newer-mtime}
  6287. should not be used for incremental backups. @xref{Incremental Dumps},
  6288. for proper way of creating incremental backups.
  6289. @end quotation
  6290. @node recurse
  6291. @section Descending into Directories
  6292. @UNREVISED
  6293. @cindex Avoiding recursion in directories
  6294. @cindex Descending directories, avoiding
  6295. @cindex Directories, avoiding recursion
  6296. @cindex Recursion in directories, avoiding
  6297. @FIXME{arrggh! this is still somewhat confusing to me. :-< }
  6298. Usually, @command{tar} will recursively explore all directories (either
  6299. those given on the command line or through the @option{--files-from}
  6300. option) for the various files they contain. However, you may not always
  6301. want @command{tar} to act this way.
  6302. @opindex no-recursion
  6303. The @option{--no-recursion} option inhibits @command{tar}'s recursive descent
  6304. into specified directories. If you specify @option{--no-recursion}, you can
  6305. use the @command{find} utility for hunting through levels of directories to
  6306. construct a list of file names which you could then pass to @command{tar}.
  6307. @command{find} allows you to be more selective when choosing which files to
  6308. archive; see @ref{files}, for more information on using @command{find} with
  6309. @command{tar}, or look.
  6310. @table @option
  6311. @item --no-recursion
  6312. Prevents @command{tar} from recursively descending directories.
  6313. @opindex recursion
  6314. @item --recursion
  6315. Requires @command{tar} to recursively descend directories.
  6316. This is the default.
  6317. @end table
  6318. When you use @option{--no-recursion}, @GNUTAR{} grabs
  6319. directory entries themselves, but does not descend on them
  6320. recursively. Many people use @command{find} for locating files they
  6321. want to back up, and since @command{tar} @emph{usually} recursively
  6322. descends on directories, they have to use the @samp{@w{-not -type d}}
  6323. test in their @command{find} invocation (@pxref{Type, Type, Type test,
  6324. find, Finding Files}), as they usually do not want all the files in a
  6325. directory. They then use the @option{--files-from} option to archive
  6326. the files located via @command{find}.
  6327. The problem when restoring files archived in this manner is that the
  6328. directories themselves are not in the archive; so the
  6329. @option{--same-permissions} (@option{--preserve-permissions},
  6330. @option{-p}) option does not affect them---while users might really
  6331. like it to. Specifying @option{--no-recursion} is a way to tell
  6332. @command{tar} to grab only the directory entries given to it, adding
  6333. no new files on its own. To summarize, if you use @command{find} to
  6334. create a list of files to be stored in an archive, use it as follows:
  6335. @smallexample
  6336. @group
  6337. $ @kbd{find @var{dir} @var{tests} | \
  6338. tar -cf @var{archive} -T - --no-recursion}
  6339. @end group
  6340. @end smallexample
  6341. The @option{--no-recursion} option also applies when extracting: it
  6342. causes @command{tar} to extract only the matched directory entries, not
  6343. the files under those directories.
  6344. The @option{--no-recursion} option also affects how globbing patterns
  6345. are interpreted (@pxref{controlling pattern-matching}).
  6346. The @option{--no-recursion} and @option{--recursion} options apply to
  6347. later options and operands, and can be overridden by later occurrences
  6348. of @option{--no-recursion} and @option{--recursion}. For example:
  6349. @smallexample
  6350. $ @kbd{tar -cf jams.tar --no-recursion grape --recursion grape/concord}
  6351. @end smallexample
  6352. @noindent
  6353. creates an archive with one entry for @file{grape}, and the recursive
  6354. contents of @file{grape/concord}, but no entries under @file{grape}
  6355. other than @file{grape/concord}.
  6356. @node one
  6357. @section Crossing File System Boundaries
  6358. @cindex File system boundaries, not crossing
  6359. @UNREVISED
  6360. @command{tar} will normally automatically cross file system boundaries in
  6361. order to archive files which are part of a directory tree. You can
  6362. change this behavior by running @command{tar} and specifying
  6363. @option{--one-file-system}. This option only affects files that are
  6364. archived because they are in a directory that is being archived;
  6365. @command{tar} will still archive files explicitly named on the command line
  6366. or through @option{--files-from}, regardless of where they reside.
  6367. @table @option
  6368. @opindex one-file-system
  6369. @item --one-file-system
  6370. Prevents @command{tar} from crossing file system boundaries when
  6371. archiving. Use in conjunction with any write operation.
  6372. @end table
  6373. The @option{--one-file-system} option causes @command{tar} to modify its
  6374. normal behavior in archiving the contents of directories. If a file in
  6375. a directory is not on the same file system as the directory itself, then
  6376. @command{tar} will not archive that file. If the file is a directory
  6377. itself, @command{tar} will not archive anything beneath it; in other words,
  6378. @command{tar} will not cross mount points.
  6379. This option is useful for making full or incremental archival backups of
  6380. a file system. If this option is used in conjunction with
  6381. @option{--verbose} (@option{-v}), files that are excluded are
  6382. mentioned by name on the standard error.
  6383. @menu
  6384. * directory:: Changing Directory
  6385. * absolute:: Absolute File Names
  6386. @end menu
  6387. @node directory
  6388. @subsection Changing the Working Directory
  6389. @FIXME{need to read over this node now for continuity; i've switched
  6390. things around some.}
  6391. @cindex Changing directory mid-stream
  6392. @cindex Directory, changing mid-stream
  6393. @cindex Working directory, specifying
  6394. To change the working directory in the middle of a list of file names,
  6395. either on the command line or in a file specified using
  6396. @option{--files-from} (@option{-T}), use @option{--directory} (@option{-C}).
  6397. This will change the working directory to the specified directory
  6398. after that point in the list.
  6399. @table @option
  6400. @opindex directory
  6401. @item --directory=@var{directory}
  6402. @itemx -C @var{directory}
  6403. Changes the working directory in the middle of a command line.
  6404. @end table
  6405. For example,
  6406. @smallexample
  6407. $ @kbd{tar -c -f jams.tar grape prune -C food cherry}
  6408. @end smallexample
  6409. @noindent
  6410. will place the files @file{grape} and @file{prune} from the current
  6411. directory into the archive @file{jams.tar}, followed by the file
  6412. @file{cherry} from the directory @file{food}. This option is especially
  6413. useful when you have several widely separated files that you want to
  6414. store in the same archive.
  6415. Note that the file @file{cherry} is recorded in the archive under the
  6416. precise name @file{cherry}, @emph{not} @file{food/cherry}. Thus, the
  6417. archive will contain three files that all appear to have come from the
  6418. same directory; if the archive is extracted with plain @samp{tar
  6419. --extract}, all three files will be written in the current directory.
  6420. Contrast this with the command,
  6421. @smallexample
  6422. $ @kbd{tar -c -f jams.tar grape prune -C food red/cherry}
  6423. @end smallexample
  6424. @noindent
  6425. which records the third file in the archive under the name
  6426. @file{red/cherry} so that, if the archive is extracted using
  6427. @samp{tar --extract}, the third file will be written in a subdirectory
  6428. named @file{orange-colored}.
  6429. You can use the @option{--directory} option to make the archive
  6430. independent of the original name of the directory holding the files.
  6431. The following command places the files @file{/etc/passwd},
  6432. @file{/etc/hosts}, and @file{/lib/libc.a} into the archive
  6433. @file{foo.tar}:
  6434. @smallexample
  6435. $ @kbd{tar -c -f foo.tar -C /etc passwd hosts -C /lib libc.a}
  6436. @end smallexample
  6437. @noindent
  6438. However, the names of the archive members will be exactly what they were
  6439. on the command line: @file{passwd}, @file{hosts}, and @file{libc.a}.
  6440. They will not appear to be related by file name to the original
  6441. directories where those files were located.
  6442. Note that @option{--directory} options are interpreted consecutively. If
  6443. @option{--directory} specifies a relative file name, it is interpreted
  6444. relative to the then current directory, which might not be the same as
  6445. the original current working directory of @command{tar}, due to a previous
  6446. @option{--directory} option.
  6447. When using @option{--files-from} (@pxref{files}), you can put various
  6448. @command{tar} options (including @option{-C}) in the file list. Notice,
  6449. however, that in this case the option and its argument may not be
  6450. separated by whitespace. If you use short option, its argument must
  6451. either follow the option letter immediately, without any intervening
  6452. whitespace, or occupy the next line. Otherwise, if you use long
  6453. option, separate its argument by an equal sign.
  6454. For instance, the file list for the above example will be:
  6455. @smallexample
  6456. @group
  6457. -C/etc
  6458. passwd
  6459. hosts
  6460. --directory=/lib
  6461. libc.a
  6462. @end group
  6463. @end smallexample
  6464. @noindent
  6465. To use it, you would invoke @command{tar} as follows:
  6466. @smallexample
  6467. $ @kbd{tar -c -f foo.tar --files-from list}
  6468. @end smallexample
  6469. The interpretation of @option{--directory} is disabled by
  6470. @option{--null} option.
  6471. @node absolute
  6472. @subsection Absolute File Names
  6473. @UNREVISED
  6474. @table @option
  6475. @opindex absolute-names
  6476. @item --absolute-names
  6477. @itemx -P
  6478. Do not strip leading slashes from file names, and permit file names
  6479. containing a @file{..} file name component.
  6480. @end table
  6481. By default, @GNUTAR{} drops a leading @samp{/} on
  6482. input or output, and complains about file names containing a @file{..}
  6483. component. This option turns off this behavior.
  6484. When @command{tar} extracts archive members from an archive, it strips any
  6485. leading slashes (@samp{/}) from the member name. This causes absolute
  6486. member names in the archive to be treated as relative file names. This
  6487. allows you to have such members extracted wherever you want, instead of
  6488. being restricted to extracting the member in the exact directory named
  6489. in the archive. For example, if the archive member has the name
  6490. @file{/etc/passwd}, @command{tar} will extract it as if the name were
  6491. really @file{etc/passwd}.
  6492. File names containing @file{..} can cause problems when extracting, so
  6493. @command{tar} normally warns you about such files when creating an
  6494. archive, and rejects attempts to extracts such files.
  6495. Other @command{tar} programs do not do this. As a result, if you
  6496. create an archive whose member names start with a slash, they will be
  6497. difficult for other people with a non-@GNUTAR{}
  6498. program to use. Therefore, @GNUTAR{} also strips
  6499. leading slashes from member names when putting members into the
  6500. archive. For example, if you ask @command{tar} to add the file
  6501. @file{/bin/ls} to an archive, it will do so, but the member name will
  6502. be @file{bin/ls}.@footnote{A side effect of this is that when
  6503. @option{--create} is used with @option{--verbose} the resulting output
  6504. is not, generally speaking, the same as the one you'd get running
  6505. @kbd{tar --list} command. This may be important if you use some
  6506. scripts for comparing both outputs. @xref{listing member and file names},
  6507. for the information on how to handle this case.}
  6508. If you use the @option{--absolute-names} (@option{-P}) option,
  6509. @command{tar} will do none of these transformations.
  6510. To archive or extract files relative to the root directory, specify
  6511. the @option{--absolute-names} (@option{-P}) option.
  6512. Normally, @command{tar} acts on files relative to the working
  6513. directory---ignoring superior directory names when archiving, and
  6514. ignoring leading slashes when extracting.
  6515. When you specify @option{--absolute-names} (@option{-P}),
  6516. @command{tar} stores file names including all superior directory
  6517. names, and preserves leading slashes. If you only invoked
  6518. @command{tar} from the root directory you would never need the
  6519. @option{--absolute-names} option, but using this option
  6520. may be more convenient than switching to root.
  6521. @FIXME{Should be an example in the tutorial/wizardry section using this
  6522. to transfer files between systems.}
  6523. @FIXME{Is write access an issue?}
  6524. @table @option
  6525. @item --absolute-names
  6526. Preserves full file names (including superior directory names) when
  6527. archiving files. Preserves leading slash when extracting files.
  6528. @end table
  6529. @FIXME{this is still horrible; need to talk with dan on monday.}
  6530. @command{tar} prints out a message about removing the @samp{/} from
  6531. file names. This message appears once per @GNUTAR{}
  6532. invocation. It represents something which ought to be told; ignoring
  6533. what it means can cause very serious surprises, later.
  6534. Some people, nevertheless, do not want to see this message. Wanting to
  6535. play really dangerously, one may of course redirect @command{tar} standard
  6536. error to the sink. For example, under @command{sh}:
  6537. @smallexample
  6538. $ @kbd{tar -c -f archive.tar /home 2> /dev/null}
  6539. @end smallexample
  6540. @noindent
  6541. Another solution, both nicer and simpler, would be to change to
  6542. the @file{/} directory first, and then avoid absolute notation.
  6543. For example:
  6544. @smallexample
  6545. $ @kbd{tar -c -f archive.tar -C / home}
  6546. @end smallexample
  6547. @include getdate.texi
  6548. @node Formats
  6549. @chapter Controlling the Archive Format
  6550. @cindex Tar archive formats
  6551. Due to historical reasons, there are several formats of tar archives.
  6552. All of them are based on the same principles, but have some subtle
  6553. differences that often make them incompatible with each other.
  6554. GNU tar is able to create and handle archives in a variety of formats.
  6555. The most frequently used formats are (in alphabetical order):
  6556. @table @asis
  6557. @item gnu
  6558. Format used by @GNUTAR{} versions up to 1.13.25. This format derived
  6559. from an early @acronym{POSIX} standard, adding some improvements such as
  6560. sparse file handling and incremental archives. Unfortunately these
  6561. features were implemented in a way incompatible with other archive
  6562. formats.
  6563. Archives in @samp{gnu} format are able to hold file names of unlimited
  6564. length.
  6565. @item oldgnu
  6566. Format used by @GNUTAR{} of versions prior to 1.12.
  6567. @item v7
  6568. Archive format, compatible with the V7 implementation of tar. This
  6569. format imposes a number of limitations. The most important of them
  6570. are:
  6571. @enumerate
  6572. @item The maximum length of a file name is limited to 99 characters.
  6573. @item The maximum length of a symbolic link is limited to 99 characters.
  6574. @item It is impossible to store special files (block and character
  6575. devices, fifos etc.)
  6576. @item Maximum value of user or group @acronym{ID} is limited to 2097151 (7777777
  6577. octal)
  6578. @item V7 archives do not contain symbolic ownership information (user
  6579. and group name of the file owner).
  6580. @end enumerate
  6581. This format has traditionally been used by Automake when producing
  6582. Makefiles. This practice will change in the future, in the meantime,
  6583. however this means that projects containing file names more than 99
  6584. characters long will not be able to use @GNUTAR{} @value{VERSION} and
  6585. Automake prior to 1.9.
  6586. @item ustar
  6587. Archive format defined by @acronym{POSIX.1-1988} specification. It stores
  6588. symbolic ownership information. It is also able to store
  6589. special files. However, it imposes several restrictions as well:
  6590. @enumerate
  6591. @item The maximum length of a file name is limited to 256 characters,
  6592. provided that the file name can be split at a directory separator in
  6593. two parts, first of them being at most 155 bytes long. So, in most
  6594. cases the maximum file name length will be shorter than 256
  6595. characters.
  6596. @item The maximum length of a symbolic link name is limited to
  6597. 100 characters.
  6598. @item Maximum size of a file the archive is able to accommodate
  6599. is 8GB
  6600. @item Maximum value of UID/GID is 2097151.
  6601. @item Maximum number of bits in device major and minor numbers is 21.
  6602. @end enumerate
  6603. @item star
  6604. Format used by J@"org Schilling @command{star}
  6605. implementation. @GNUTAR{} is able to read @samp{star} archives but
  6606. currently does not produce them.
  6607. @item posix
  6608. Archive format defined by @acronym{POSIX.1-2001} specification. This is the
  6609. most flexible and feature-rich format. It does not impose any
  6610. restrictions on file sizes or file name lengths. This format is quite
  6611. recent, so not all tar implementations are able to handle it properly.
  6612. However, this format is designed in such a way that any tar
  6613. implementation able to read @samp{ustar} archives will be able to read
  6614. most @samp{posix} archives as well, with the only exception that any
  6615. additional information (such as long file names etc.) will in such
  6616. case be extracted as plain text files along with the files it refers to.
  6617. This archive format will be the default format for future versions
  6618. of @GNUTAR{}.
  6619. @end table
  6620. The following table summarizes the limitations of each of these
  6621. formats:
  6622. @multitable @columnfractions .10 .20 .20 .20 .20
  6623. @headitem Format @tab UID @tab File Size @tab File Name @tab Devn
  6624. @item gnu @tab 1.8e19 @tab Unlimited @tab Unlimited @tab 63
  6625. @item oldgnu @tab 1.8e19 @tab Unlimited @tab Unlimited @tab 63
  6626. @item v7 @tab 2097151 @tab 8GB @tab 99 @tab n/a
  6627. @item ustar @tab 2097151 @tab 8GB @tab 256 @tab 21
  6628. @item posix @tab Unlimited @tab Unlimited @tab Unlimited @tab Unlimited
  6629. @end multitable
  6630. The default format for @GNUTAR{} is defined at compilation
  6631. time. You may check it by running @command{tar --help}, and examining
  6632. the last lines of its output. Usually, @GNUTAR{} is configured
  6633. to create archives in @samp{gnu} format, however, future version will
  6634. switch to @samp{posix}.
  6635. @menu
  6636. * Compression:: Using Less Space through Compression
  6637. * Attributes:: Handling File Attributes
  6638. * Portability:: Making @command{tar} Archives More Portable
  6639. * cpio:: Comparison of @command{tar} and @command{cpio}
  6640. @end menu
  6641. @node Compression
  6642. @section Using Less Space through Compression
  6643. @menu
  6644. * gzip:: Creating and Reading Compressed Archives
  6645. * sparse:: Archiving Sparse Files
  6646. @end menu
  6647. @node gzip
  6648. @subsection Creating and Reading Compressed Archives
  6649. @cindex Compressed archives
  6650. @cindex Storing archives in compressed format
  6651. @cindex gzip
  6652. @cindex bzip2
  6653. @cindex lzma
  6654. @cindex lzop
  6655. @cindex compress
  6656. @GNUTAR{} is able to create and read compressed archives. It supports
  6657. @command{gzip}, @command{bzip2}, @command{lzma} and @command{lzop} compression
  6658. programs. For backward compatibility, it also supports
  6659. @command{compress} command, although we strongly recommend against
  6660. using it, because it is by far less effective than other compression
  6661. programs@footnote{It also had patent problems in the past.}.
  6662. Creating a compressed archive is simple: you just specify a
  6663. @dfn{compression option} along with the usual archive creation
  6664. commands. The compression option is @option{-z} (@option{--gzip}) to
  6665. create a @command{gzip} compressed archive, @option{-j}
  6666. (@option{--bzip2}) to create a @command{bzip2} compressed archive,
  6667. @option{-J} (@option{--lzma}) to create an @asis{LZMA} compressed
  6668. archive, @option{--lzop} to create an @asis{LSOP} archive, and
  6669. @option{-Z} (@option{--compress}) to use @command{compress} program.
  6670. For example:
  6671. @smallexample
  6672. $ @kbd{tar cfz archive.tar.gz .}
  6673. @end smallexample
  6674. You can also let @GNUTAR{} select the compression program basing on
  6675. the suffix of the archive file name. This is done using
  6676. @option{--auto-compress} (@option{-a}) command line option. For
  6677. example, the following invocation will use @command{bzip2} for
  6678. compression:
  6679. @smallexample
  6680. $ @kbd{tar cfa archive.tar.bz2 .}
  6681. @end smallexample
  6682. @noindent
  6683. whereas the following one will use @command{lzma}:
  6684. @smallexample
  6685. $ @kbd{tar cfa archive.tar.lzma .}
  6686. @end smallexample
  6687. For a complete list of file name suffixes recognized by @GNUTAR{},
  6688. @ref{auto-compress}.
  6689. Reading compressed archive is even simpler: you don't need to specify
  6690. any additional options as @GNUTAR{} recognizes its format
  6691. automatically. Thus, the following commands will list and extract the
  6692. archive created in previous example:
  6693. @smallexample
  6694. # List the compressed archive
  6695. $ @kbd{tar tf archive.tar.gz}
  6696. # Extract the compressed archive
  6697. $ @kbd{tar xf archive.tar.gz}
  6698. @end smallexample
  6699. The format recognition algorithm is based on @dfn{signatures}, a
  6700. special byte sequences in the beginning of file, that are specific for
  6701. certain compression formats. If this approach fails, @command{tar}
  6702. falls back to using archive name suffix to determine its format
  6703. (@xref{auto-compress}, for a list of recognized suffixes).
  6704. The only case when you have to specify a decompression option while
  6705. reading the archive is when reading from a pipe or from a tape drive
  6706. that does not support random access. However, in this case @GNUTAR{}
  6707. will indicate which option you should use. For example:
  6708. @smallexample
  6709. $ @kbd{cat archive.tar.gz | tar tf -}
  6710. tar: Archive is compressed. Use -z option
  6711. tar: Error is not recoverable: exiting now
  6712. @end smallexample
  6713. If you see such diagnostics, just add the suggested option to the
  6714. invocation of @GNUTAR{}:
  6715. @smallexample
  6716. $ @kbd{cat archive.tar.gz | tar tfz -}
  6717. @end smallexample
  6718. Notice also, that there are several restrictions on operations on
  6719. compressed archives. First of all, compressed archives cannot be
  6720. modified, i.e., you cannot update (@option{--update} (@option{-u}))
  6721. them or delete (@option{--delete}) members from them or
  6722. add (@option{--append} (@option{-r})) members to them. Likewise, you
  6723. cannot append another @command{tar} archive to a compressed archive using
  6724. @option{--concatenate} (@option{-A})). Secondly, multi-volume
  6725. archives cannot be compressed.
  6726. The following table summarizes compression options used by @GNUTAR{}.
  6727. @table @option
  6728. @anchor{auto-compress}
  6729. @opindex auto-compress
  6730. @item --auto-compress
  6731. @itemx -a
  6732. Select a compression program to use by the archive file name
  6733. suffix. The following suffixes are recognized:
  6734. @multitable @columnfractions 0.3 0.6
  6735. @headitem Suffix @tab Compression program
  6736. @item @samp{.gz} @tab @command{gzip}
  6737. @item @samp{.tgz} @tab @command{gzip}
  6738. @item @samp{.taz} @tab @command{gzip}
  6739. @item @samp{.Z} @tab @command{compress}
  6740. @item @samp{.taZ} @tab @command{compress}
  6741. @item @samp{.bz2} @tab @command{bzip2}
  6742. @item @samp{.tz2} @tab @command{bzip2}
  6743. @item @samp{.tbz2} @tab @command{bzip2}
  6744. @item @samp{.tbz} @tab @command{bzip2}
  6745. @item @samp{.lzma} @tab @command{lzma}
  6746. @item @samp{.tlz} @tab @command{lzma}
  6747. @item @samp{.lzo} @tab @command{lzop}
  6748. @end multitable
  6749. @opindex gzip
  6750. @opindex ungzip
  6751. @item -z
  6752. @itemx --gzip
  6753. @itemx --ungzip
  6754. Filter the archive through @command{gzip}.
  6755. You can use @option{--gzip} and @option{--gunzip} on physical devices
  6756. (tape drives, etc.) and remote files as well as on normal files; data
  6757. to or from such devices or remote files is reblocked by another copy
  6758. of the @command{tar} program to enforce the specified (or default) record
  6759. size. The default compression parameters are used; if you need to
  6760. override them, set @env{GZIP} environment variable, e.g.:
  6761. @smallexample
  6762. $ @kbd{GZIP=--best tar cfz archive.tar.gz subdir}
  6763. @end smallexample
  6764. @noindent
  6765. Another way would be to avoid the @option{--gzip} (@option{--gunzip}, @option{--ungzip}, @option{-z}) option and run
  6766. @command{gzip} explicitly:
  6767. @smallexample
  6768. $ @kbd{tar cf - subdir | gzip --best -c - > archive.tar.gz}
  6769. @end smallexample
  6770. @cindex corrupted archives
  6771. About corrupted compressed archives: @command{gzip}'ed files have no
  6772. redundancy, for maximum compression. The adaptive nature of the
  6773. compression scheme means that the compression tables are implicitly
  6774. spread all over the archive. If you lose a few blocks, the dynamic
  6775. construction of the compression tables becomes unsynchronized, and there
  6776. is little chance that you could recover later in the archive.
  6777. There are pending suggestions for having a per-volume or per-file
  6778. compression in @GNUTAR{}. This would allow for viewing the
  6779. contents without decompression, and for resynchronizing decompression at
  6780. every volume or file, in case of corrupted archives. Doing so, we might
  6781. lose some compressibility. But this would have make recovering easier.
  6782. So, there are pros and cons. We'll see!
  6783. @opindex bzip2
  6784. @item -j
  6785. @itemx --bzip2
  6786. Filter the archive through @code{bzip2}. Otherwise like @option{--gzip}.
  6787. @opindex lzma
  6788. @item --lzma
  6789. @itemx -J
  6790. Filter the archive through @command{lzma}. Otherwise like @option{--gzip}.
  6791. @opindex lzop
  6792. @item --lzop
  6793. Filter the archive through @command{lzop}. Otherwise like
  6794. @option{--gzip}.
  6795. @opindex compress
  6796. @opindex uncompress
  6797. @item -Z
  6798. @itemx --compress
  6799. @itemx --uncompress
  6800. Filter the archive through @command{compress}. Otherwise like @option{--gzip}.
  6801. @opindex use-compress-program
  6802. @item --use-compress-program=@var{prog}
  6803. Use external compression program @var{prog}. Use this option if you
  6804. have a compression program that @GNUTAR{} does not support. There
  6805. are two requirements to which @var{prog} should comply:
  6806. First, when called without options, it should read data from standard
  6807. input, compress it and output it on standard output.
  6808. Secondly, if called with @option{-d} argument, it should do exactly
  6809. the opposite, i.e., read the compressed data from the standard input
  6810. and produce uncompressed data on the standard output.
  6811. @end table
  6812. @cindex gpg, using with tar
  6813. @cindex gnupg, using with tar
  6814. @cindex Using encrypted archives
  6815. The @option{--use-compress-program} option, in particular, lets you
  6816. implement your own filters, not necessarily dealing with
  6817. compression/decompression. For example, suppose you wish to implement
  6818. PGP encryption on top of compression, using @command{gpg} (@pxref{Top,
  6819. gpg, gpg ---- encryption and signing tool, gpg, GNU Privacy Guard
  6820. Manual}). The following script does that:
  6821. @smallexample
  6822. @group
  6823. #! /bin/sh
  6824. case $1 in
  6825. -d) gpg --decrypt - | gzip -d -c;;
  6826. '') gzip -c | gpg -s ;;
  6827. *) echo "Unknown option $1">&2; exit 1;;
  6828. esac
  6829. @end group
  6830. @end smallexample
  6831. Suppose you name it @file{gpgz} and save it somewhere in your
  6832. @env{PATH}. Then the following command will create a compressed
  6833. archive signed with your private key:
  6834. @smallexample
  6835. $ @kbd{tar -cf foo.tar.gpgz --use-compress=gpgz .}
  6836. @end smallexample
  6837. @noindent
  6838. Likewise, the following command will list its contents:
  6839. @smallexample
  6840. $ @kbd{tar -tf foo.tar.gpgz --use-compress=gpgz .}
  6841. @end smallexample
  6842. @ignore
  6843. The above is based on the following discussion:
  6844. I have one question, or maybe it's a suggestion if there isn't a way
  6845. to do it now. I would like to use @option{--gzip}, but I'd also like
  6846. the output to be fed through a program like @acronym{GNU}
  6847. @command{ecc} (actually, right now that's @samp{exactly} what I'd like
  6848. to use :-)), basically adding ECC protection on top of compression.
  6849. It seems as if this should be quite easy to do, but I can't work out
  6850. exactly how to go about it. Of course, I can pipe the standard output
  6851. of @command{tar} through @command{ecc}, but then I lose (though I
  6852. haven't started using it yet, I confess) the ability to have
  6853. @command{tar} use @command{rmt} for it's I/O (I think).
  6854. I think the most straightforward thing would be to let me specify a
  6855. general set of filters outboard of compression (preferably ordered,
  6856. so the order can be automatically reversed on input operations, and
  6857. with the options they require specifiable), but beggars shouldn't be
  6858. choosers and anything you decide on would be fine with me.
  6859. By the way, I like @command{ecc} but if (as the comments say) it can't
  6860. deal with loss of block sync, I'm tempted to throw some time at adding
  6861. that capability. Supposing I were to actually do such a thing and
  6862. get it (apparently) working, do you accept contributed changes to
  6863. utilities like that? (Leigh Clayton @file{loc@@soliton.com}, May 1995).
  6864. Isn't that exactly the role of the
  6865. @option{--use-compress-prog=@var{program}} option?
  6866. I never tried it myself, but I suspect you may want to write a
  6867. @var{prog} script or program able to filter stdin to stdout to
  6868. way you want. It should recognize the @option{-d} option, for when
  6869. extraction is needed rather than creation.
  6870. It has been reported that if one writes compressed data (through the
  6871. @option{--gzip} or @option{--compress} options) to a DLT and tries to use
  6872. the DLT compression mode, the data will actually get bigger and one will
  6873. end up with less space on the tape.
  6874. @end ignore
  6875. @node sparse
  6876. @subsection Archiving Sparse Files
  6877. @cindex Sparse Files
  6878. Files in the file system occasionally have @dfn{holes}. A @dfn{hole}
  6879. in a file is a section of the file's contents which was never written.
  6880. The contents of a hole reads as all zeros. On many operating systems,
  6881. actual disk storage is not allocated for holes, but they are counted
  6882. in the length of the file. If you archive such a file, @command{tar}
  6883. could create an archive longer than the original. To have @command{tar}
  6884. attempt to recognize the holes in a file, use @option{--sparse}
  6885. (@option{-S}). When you use this option, then, for any file using
  6886. less disk space than would be expected from its length, @command{tar}
  6887. searches the file for consecutive stretches of zeros. It then records
  6888. in the archive for the file where the consecutive stretches of zeros
  6889. are, and only archives the ``real contents'' of the file. On
  6890. extraction (using @option{--sparse} is not needed on extraction) any
  6891. such files have holes created wherever the continuous stretches of zeros
  6892. were found. Thus, if you use @option{--sparse}, @command{tar} archives
  6893. won't take more space than the original.
  6894. @table @option
  6895. @opindex sparse
  6896. @item -S
  6897. @itemx --sparse
  6898. This option instructs @command{tar} to test each file for sparseness
  6899. before attempting to archive it. If the file is found to be sparse it
  6900. is treated specially, thus allowing to decrease the amount of space
  6901. used by its image in the archive.
  6902. This option is meaningful only when creating or updating archives. It
  6903. has no effect on extraction.
  6904. @end table
  6905. Consider using @option{--sparse} when performing file system backups,
  6906. to avoid archiving the expanded forms of files stored sparsely in the
  6907. system.
  6908. Even if your system has no sparse files currently, some may be
  6909. created in the future. If you use @option{--sparse} while making file
  6910. system backups as a matter of course, you can be assured the archive
  6911. will never take more space on the media than the files take on disk
  6912. (otherwise, archiving a disk filled with sparse files might take
  6913. hundreds of tapes). @xref{Incremental Dumps}.
  6914. However, be aware that @option{--sparse} option presents a serious
  6915. drawback. Namely, in order to determine if the file is sparse
  6916. @command{tar} has to read it before trying to archive it, so in total
  6917. the file is read @strong{twice}. So, always bear in mind that the
  6918. time needed to process all files with this option is roughly twice
  6919. the time needed to archive them without it.
  6920. @FIXME{A technical note:
  6921. Programs like @command{dump} do not have to read the entire file; by
  6922. examining the file system directly, they can determine in advance
  6923. exactly where the holes are and thus avoid reading through them. The
  6924. only data it need read are the actual allocated data blocks.
  6925. @GNUTAR{} uses a more portable and straightforward
  6926. archiving approach, it would be fairly difficult that it does
  6927. otherwise. Elizabeth Zwicky writes to @file{comp.unix.internals}, on
  6928. 1990-12-10:
  6929. @quotation
  6930. What I did say is that you cannot tell the difference between a hole and an
  6931. equivalent number of nulls without reading raw blocks. @code{st_blocks} at
  6932. best tells you how many holes there are; it doesn't tell you @emph{where}.
  6933. Just as programs may, conceivably, care what @code{st_blocks} is (care
  6934. to name one that does?), they may also care where the holes are (I have
  6935. no examples of this one either, but it's equally imaginable).
  6936. I conclude from this that good archivers are not portable. One can
  6937. arguably conclude that if you want a portable program, you can in good
  6938. conscience restore files with as many holes as possible, since you can't
  6939. get it right.
  6940. @end quotation
  6941. }
  6942. @cindex sparse formats, defined
  6943. When using @samp{POSIX} archive format, @GNUTAR{} is able to store
  6944. sparse files using in three distinct ways, called @dfn{sparse
  6945. formats}. A sparse format is identified by its @dfn{number},
  6946. consisting, as usual of two decimal numbers, delimited by a dot. By
  6947. default, format @samp{1.0} is used. If, for some reason, you wish to
  6948. use an earlier format, you can select it using
  6949. @option{--sparse-version} option.
  6950. @table @option
  6951. @opindex sparse-version
  6952. @item --sparse-version=@var{version}
  6953. Select the format to store sparse files in. Valid @var{version} values
  6954. are: @samp{0.0}, @samp{0.1} and @samp{1.0}. @xref{Sparse Formats},
  6955. for a detailed description of each format.
  6956. @end table
  6957. Using @option{--sparse-format} option implies @option{--sparse}.
  6958. @node Attributes
  6959. @section Handling File Attributes
  6960. @UNREVISED
  6961. When @command{tar} reads files, it updates their access times. To
  6962. avoid this, use the @option{--atime-preserve[=METHOD]} option, which can either
  6963. reset the access time retroactively or avoid changing it in the first
  6964. place.
  6965. Handling of file attributes
  6966. @table @option
  6967. @opindex atime-preserve
  6968. @item --atime-preserve
  6969. @itemx --atime-preserve=replace
  6970. @itemx --atime-preserve=system
  6971. Preserve the access times of files that are read. This works only for
  6972. files that you own, unless you have superuser privileges.
  6973. @option{--atime-preserve=replace} works on most systems, but it also
  6974. restores the data modification time and updates the status change
  6975. time. Hence it doesn't interact with incremental dumps nicely
  6976. (@pxref{Incremental Dumps}), and it can set access or data modification times
  6977. incorrectly if other programs access the file while @command{tar} is
  6978. running.
  6979. @option{--atime-preserve=system} avoids changing the access time in
  6980. the first place, if the operating system supports this.
  6981. Unfortunately, this may or may not work on any given operating system
  6982. or file system. If @command{tar} knows for sure it won't work, it
  6983. complains right away.
  6984. Currently @option{--atime-preserve} with no operand defaults to
  6985. @option{--atime-preserve=replace}, but this is intended to change to
  6986. @option{--atime-preserve=system} when the latter is better-supported.
  6987. @opindex touch
  6988. @item -m
  6989. @itemx --touch
  6990. Do not extract data modification time.
  6991. When this option is used, @command{tar} leaves the data modification times
  6992. of the files it extracts as the times when the files were extracted,
  6993. instead of setting it to the times recorded in the archive.
  6994. This option is meaningless with @option{--list} (@option{-t}).
  6995. @opindex same-owner
  6996. @item --same-owner
  6997. Create extracted files with the same ownership they have in the
  6998. archive.
  6999. This is the default behavior for the superuser,
  7000. so this option is meaningful only for non-root users, when @command{tar}
  7001. is executed on those systems able to give files away. This is
  7002. considered as a security flaw by many people, at least because it
  7003. makes quite difficult to correctly account users for the disk space
  7004. they occupy. Also, the @code{suid} or @code{sgid} attributes of
  7005. files are easily and silently lost when files are given away.
  7006. When writing an archive, @command{tar} writes the user @acronym{ID} and user name
  7007. separately. If it can't find a user name (because the user @acronym{ID} is not
  7008. in @file{/etc/passwd}), then it does not write one. When restoring,
  7009. it tries to look the name (if one was written) up in
  7010. @file{/etc/passwd}. If it fails, then it uses the user @acronym{ID} stored in
  7011. the archive instead.
  7012. @opindex no-same-owner
  7013. @item --no-same-owner
  7014. @itemx -o
  7015. Do not attempt to restore ownership when extracting. This is the
  7016. default behavior for ordinary users, so this option has an effect
  7017. only for the superuser.
  7018. @opindex numeric-owner
  7019. @item --numeric-owner
  7020. The @option{--numeric-owner} option allows (ANSI) archives to be written
  7021. without user/group name information or such information to be ignored
  7022. when extracting. It effectively disables the generation and/or use
  7023. of user/group name information. This option forces extraction using
  7024. the numeric ids from the archive, ignoring the names.
  7025. This is useful in certain circumstances, when restoring a backup from
  7026. an emergency floppy with different passwd/group files for example.
  7027. It is otherwise impossible to extract files with the right ownerships
  7028. if the password file in use during the extraction does not match the
  7029. one belonging to the file system(s) being extracted. This occurs,
  7030. for example, if you are restoring your files after a major crash and
  7031. had booted from an emergency floppy with no password file or put your
  7032. disk into another machine to do the restore.
  7033. The numeric ids are @emph{always} saved into @command{tar} archives.
  7034. The identifying names are added at create time when provided by the
  7035. system, unless @option{--old-archive} (@option{-o}) is used. Numeric ids could be
  7036. used when moving archives between a collection of machines using
  7037. a centralized management for attribution of numeric ids to users
  7038. and groups. This is often made through using the NIS capabilities.
  7039. When making a @command{tar} file for distribution to other sites, it
  7040. is sometimes cleaner to use a single owner for all files in the
  7041. distribution, and nicer to specify the write permission bits of the
  7042. files as stored in the archive independently of their actual value on
  7043. the file system. The way to prepare a clean distribution is usually
  7044. to have some Makefile rule creating a directory, copying all needed
  7045. files in that directory, then setting ownership and permissions as
  7046. wanted (there are a lot of possible schemes), and only then making a
  7047. @command{tar} archive out of this directory, before cleaning
  7048. everything out. Of course, we could add a lot of options to
  7049. @GNUTAR{} for fine tuning permissions and ownership.
  7050. This is not the good way, I think. @GNUTAR{} is
  7051. already crowded with options and moreover, the approach just explained
  7052. gives you a great deal of control already.
  7053. @xopindex{same-permissions, short description}
  7054. @xopindex{preserve-permissions, short description}
  7055. @item -p
  7056. @itemx --same-permissions
  7057. @itemx --preserve-permissions
  7058. Extract all protection information.
  7059. This option causes @command{tar} to set the modes (access permissions) of
  7060. extracted files exactly as recorded in the archive. If this option
  7061. is not used, the current @code{umask} setting limits the permissions
  7062. on extracted files. This option is by default enabled when
  7063. @command{tar} is executed by a superuser.
  7064. This option is meaningless with @option{--list} (@option{-t}).
  7065. @opindex preserve
  7066. @item --preserve
  7067. Same as both @option{--same-permissions} and @option{--same-order}.
  7068. The @option{--preserve} option has no equivalent short option name.
  7069. It is equivalent to @option{--same-permissions} plus @option{--same-order}.
  7070. @FIXME{I do not see the purpose of such an option. (Neither I. FP.)
  7071. Neither do I. --Sergey}
  7072. @end table
  7073. @node Portability
  7074. @section Making @command{tar} Archives More Portable
  7075. Creating a @command{tar} archive on a particular system that is meant to be
  7076. useful later on many other machines and with other versions of @command{tar}
  7077. is more challenging than you might think. @command{tar} archive formats
  7078. have been evolving since the first versions of Unix. Many such formats
  7079. are around, and are not always compatible with each other. This section
  7080. discusses a few problems, and gives some advice about making @command{tar}
  7081. archives more portable.
  7082. One golden rule is simplicity. For example, limit your @command{tar}
  7083. archives to contain only regular files and directories, avoiding
  7084. other kind of special files. Do not attempt to save sparse files or
  7085. contiguous files as such. Let's discuss a few more problems, in turn.
  7086. @FIXME{Discuss GNU extensions (incremental backups, multi-volume
  7087. archives and archive labels) in GNU and PAX formats.}
  7088. @menu
  7089. * Portable Names:: Portable Names
  7090. * dereference:: Symbolic Links
  7091. * hard links:: Hard Links
  7092. * old:: Old V7 Archives
  7093. * ustar:: Ustar Archives
  7094. * gnu:: GNU and old GNU format archives.
  7095. * posix:: @acronym{POSIX} archives
  7096. * Checksumming:: Checksumming Problems
  7097. * Large or Negative Values:: Large files, negative time stamps, etc.
  7098. * Other Tars:: How to Extract GNU-Specific Data Using
  7099. Other @command{tar} Implementations
  7100. @end menu
  7101. @node Portable Names
  7102. @subsection Portable Names
  7103. Use portable file and member names. A name is portable if it contains
  7104. only @acronym{ASCII} letters and digits, @samp{/}, @samp{.}, @samp{_}, and
  7105. @samp{-}; it cannot be empty, start with @samp{-} or @samp{//}, or
  7106. contain @samp{/-}. Avoid deep directory nesting. For portability to
  7107. old Unix hosts, limit your file name components to 14 characters or
  7108. less.
  7109. If you intend to have your @command{tar} archives to be read under
  7110. MSDOS, you should not rely on case distinction for file names, and you
  7111. might use the @acronym{GNU} @command{doschk} program for helping you
  7112. further diagnosing illegal MSDOS names, which are even more limited
  7113. than System V's.
  7114. @node dereference
  7115. @subsection Symbolic Links
  7116. @cindex File names, using symbolic links
  7117. @cindex Symbolic link as file name
  7118. @opindex dereference
  7119. Normally, when @command{tar} archives a symbolic link, it writes a
  7120. block to the archive naming the target of the link. In that way, the
  7121. @command{tar} archive is a faithful record of the file system contents.
  7122. @option{--dereference} (@option{-h}) is used with @option{--create} (@option{-c}), and causes
  7123. @command{tar} to archive the files symbolic links point to, instead of
  7124. the links themselves. When this option is used, when @command{tar}
  7125. encounters a symbolic link, it will archive the linked-to file,
  7126. instead of simply recording the presence of a symbolic link.
  7127. The name under which the file is stored in the file system is not
  7128. recorded in the archive. To record both the symbolic link name and
  7129. the file name in the system, archive the file under both names. If
  7130. all links were recorded automatically by @command{tar}, an extracted file
  7131. might be linked to a file name that no longer exists in the file
  7132. system.
  7133. If a linked-to file is encountered again by @command{tar} while creating
  7134. the same archive, an entire second copy of it will be stored. (This
  7135. @emph{might} be considered a bug.)
  7136. So, for portable archives, do not archive symbolic links as such,
  7137. and use @option{--dereference} (@option{-h}): many systems do not support
  7138. symbolic links, and moreover, your distribution might be unusable if
  7139. it contains unresolved symbolic links.
  7140. @node hard links
  7141. @subsection Hard Links
  7142. @UNREVISED{}
  7143. @cindex File names, using hard links
  7144. @cindex hard links, dereferencing
  7145. @cindex dereferencing hard links
  7146. Normally, when @command{tar} archives a hard link, it writes a
  7147. block to the archive naming the target of the link (a @samp{1} type
  7148. block). In that way, the actual file contents is stored in file only
  7149. once. For example, consider the following two files:
  7150. @smallexample
  7151. @group
  7152. $ ls
  7153. -rw-r--r-- 2 gray staff 4 2007-10-30 15:11 one
  7154. -rw-r--r-- 2 gray staff 4 2007-10-30 15:11 jeden
  7155. @end group
  7156. @end smallexample
  7157. Here, @file{jeden} is a link to @file{one}. When archiving this
  7158. directory with a verbose level 2, you will get an output similar to
  7159. the following:
  7160. @smallexample
  7161. $ tar cfvv ../archive.tar .
  7162. drwxr-xr-x gray/staff 0 2007-10-30 15:13 ./
  7163. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./jeden
  7164. hrw-r--r-- gray/staff 0 2007-10-30 15:11 ./one link to ./jeden
  7165. @end smallexample
  7166. The last line shows that, instead of storing two copies of the file,
  7167. @command{tar} stored it only once, under the name @file{jeden}, and
  7168. stored file @file{one} as a hard link to this file.
  7169. It may be important to know that all hard links to the given file are
  7170. stored in the archive. For example, this may be necessary for exact
  7171. reproduction of the file system. The following option does that:
  7172. @table @option
  7173. @xopindex{check-links, described}
  7174. @item --check-links
  7175. @itemx -l
  7176. Check the number of links dumped for each processed file. If this
  7177. number does not match the total number of hard links for the file, print
  7178. a warning message.
  7179. @end table
  7180. For example, trying to archive only file @file{jeden} with this option
  7181. produces the following diagnostics:
  7182. @smallexample
  7183. $ tar -c -f ../archive.tar jeden
  7184. tar: Missing links to `jeden'.
  7185. @end smallexample
  7186. Although creating special records for hard links helps keep a faithful
  7187. record of the file system contents and makes archives more compact, it
  7188. may present some difficulties when extracting individual members from
  7189. the archive. For example, trying to extract file @file{one} from the
  7190. archive created in previous examples produces, in the absense of file
  7191. @file{jeden}:
  7192. @smallexample
  7193. $ tar xf archive.tar ./one
  7194. tar: ./one: Cannot hard link to `./jeden': No such file or directory
  7195. tar: Error exit delayed from previous errors
  7196. @end smallexample
  7197. The reason for this behavior is that @command{tar} cannot seek back in
  7198. the archive to the previous member (in this case, @file{one}), to
  7199. extract it@footnote{There are plans to fix this in future releases.}.
  7200. If you wish to avoid such problems at the cost of a bigger archive,
  7201. use the following option:
  7202. @table @option
  7203. @xopindex{hard-dereference, described}
  7204. @item --hard-dereference
  7205. Dereference hard links and store the files they refer to.
  7206. @end table
  7207. For example, trying this option on our two sample files, we get two
  7208. copies in the archive, each of which can then be extracted
  7209. independently of the other:
  7210. @smallexample
  7211. @group
  7212. $ tar -c -vv -f ../archive.tar --hard-dereference .
  7213. drwxr-xr-x gray/staff 0 2007-10-30 15:13 ./
  7214. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./jeden
  7215. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./one
  7216. @end group
  7217. @end smallexample
  7218. @node old
  7219. @subsection Old V7 Archives
  7220. @cindex Format, old style
  7221. @cindex Old style format
  7222. @cindex Old style archives
  7223. @cindex v7 archive format
  7224. Certain old versions of @command{tar} cannot handle additional
  7225. information recorded by newer @command{tar} programs. To create an
  7226. archive in V7 format (not ANSI), which can be read by these old
  7227. versions, specify the @option{--format=v7} option in
  7228. conjunction with the @option{--create} (@option{-c}) (@command{tar} also
  7229. accepts @option{--portability} or @option{--old-archive} for this
  7230. option). When you specify it,
  7231. @command{tar} leaves out information about directories, pipes, fifos,
  7232. contiguous files, and device files, and specifies file ownership by
  7233. group and user IDs instead of group and user names.
  7234. When updating an archive, do not use @option{--format=v7}
  7235. unless the archive was created using this option.
  7236. In most cases, a @emph{new} format archive can be read by an @emph{old}
  7237. @command{tar} program without serious trouble, so this option should
  7238. seldom be needed. On the other hand, most modern @command{tar}s are
  7239. able to read old format archives, so it might be safer for you to
  7240. always use @option{--format=v7} for your distributions. Notice,
  7241. however, that @samp{ustar} format is a better alternative, as it is
  7242. free from many of @samp{v7}'s drawbacks.
  7243. @node ustar
  7244. @subsection Ustar Archive Format
  7245. @cindex ustar archive format
  7246. Archive format defined by @acronym{POSIX}.1-1988 specification is called
  7247. @code{ustar}. Although it is more flexible than the V7 format, it
  7248. still has many restrictions (@xref{Formats,ustar}, for the detailed
  7249. description of @code{ustar} format). Along with V7 format,
  7250. @code{ustar} format is a good choice for archives intended to be read
  7251. with other implementations of @command{tar}.
  7252. To create archive in @code{ustar} format, use @option{--format=ustar}
  7253. option in conjunction with the @option{--create} (@option{-c}).
  7254. @node gnu
  7255. @subsection @acronym{GNU} and old @GNUTAR{} format
  7256. @cindex GNU archive format
  7257. @cindex Old GNU archive format
  7258. @GNUTAR{} was based on an early draft of the
  7259. @acronym{POSIX} 1003.1 @code{ustar} standard. @acronym{GNU} extensions to
  7260. @command{tar}, such as the support for file names longer than 100
  7261. characters, use portions of the @command{tar} header record which were
  7262. specified in that @acronym{POSIX} draft as unused. Subsequent changes in
  7263. @acronym{POSIX} have allocated the same parts of the header record for
  7264. other purposes. As a result, @GNUTAR{} format is
  7265. incompatible with the current @acronym{POSIX} specification, and with
  7266. @command{tar} programs that follow it.
  7267. In the majority of cases, @command{tar} will be configured to create
  7268. this format by default. This will change in future releases, since
  7269. we plan to make @samp{POSIX} format the default.
  7270. To force creation a @GNUTAR{} archive, use option
  7271. @option{--format=gnu}.
  7272. @node posix
  7273. @subsection @GNUTAR{} and @acronym{POSIX} @command{tar}
  7274. @cindex POSIX archive format
  7275. @cindex PAX archive format
  7276. Starting from version 1.14 @GNUTAR{} features full support for
  7277. @acronym{POSIX.1-2001} archives.
  7278. A @acronym{POSIX} conformant archive will be created if @command{tar}
  7279. was given @option{--format=posix} (@option{--format=pax}) option. No
  7280. special option is required to read and extract from a @acronym{POSIX}
  7281. archive.
  7282. @menu
  7283. * PAX keywords:: Controlling Extended Header Keywords.
  7284. @end menu
  7285. @node PAX keywords
  7286. @subsubsection Controlling Extended Header Keywords
  7287. @table @option
  7288. @opindex pax-option
  7289. @item --pax-option=@var{keyword-list}
  7290. Handle keywords in @acronym{PAX} extended headers. This option is
  7291. equivalent to @option{-o} option of the @command{pax} utility.
  7292. @end table
  7293. @var{Keyword-list} is a comma-separated
  7294. list of keyword options, each keyword option taking one of
  7295. the following forms:
  7296. @table @code
  7297. @item delete=@var{pattern}
  7298. When used with one of archive-creation commands,
  7299. this option instructs @command{tar} to omit from extended header records
  7300. that it produces any keywords matching the string @var{pattern}.
  7301. When used in extract or list mode, this option instructs tar
  7302. to ignore any keywords matching the given @var{pattern} in the extended
  7303. header records. In both cases, matching is performed using the pattern
  7304. matching notation described in @acronym{POSIX 1003.2}, 3.13
  7305. (@pxref{wildcards}). For example:
  7306. @smallexample
  7307. --pax-option delete=security.*
  7308. @end smallexample
  7309. would suppress security-related information.
  7310. @item exthdr.name=@var{string}
  7311. This keyword allows user control over the name that is written into the
  7312. ustar header blocks for the extended headers. The name is obtained
  7313. from @var{string} after making the following substitutions:
  7314. @multitable @columnfractions .25 .55
  7315. @headitem Meta-character @tab Replaced By
  7316. @item %d @tab The directory name of the file, equivalent to the
  7317. result of the @command{dirname} utility on the translated file name.
  7318. @item %f @tab The name of the file with the directory information
  7319. stripped, equivalent to the result of the @command{basename} utility
  7320. on the translated file name.
  7321. @item %p @tab The process @acronym{ID} of the @command{tar} process.
  7322. @item %% @tab A @samp{%} character.
  7323. @end multitable
  7324. Any other @samp{%} characters in @var{string} produce undefined
  7325. results.
  7326. If no option @samp{exthdr.name=string} is specified, @command{tar}
  7327. will use the following default value:
  7328. @smallexample
  7329. %d/PaxHeaders.%p/%f
  7330. @end smallexample
  7331. @item globexthdr.name=@var{string}
  7332. This keyword allows user control over the name that is written into
  7333. the ustar header blocks for global extended header records. The name
  7334. is obtained from the contents of @var{string}, after making
  7335. the following substitutions:
  7336. @multitable @columnfractions .25 .55
  7337. @headitem Meta-character @tab Replaced By
  7338. @item %n @tab An integer that represents the
  7339. sequence number of the global extended header record in the archive,
  7340. starting at 1.
  7341. @item %p @tab The process @acronym{ID} of the @command{tar} process.
  7342. @item %% @tab A @samp{%} character.
  7343. @end multitable
  7344. Any other @samp{%} characters in @var{string} produce undefined results.
  7345. If no option @samp{globexthdr.name=string} is specified, @command{tar}
  7346. will use the following default value:
  7347. @smallexample
  7348. $TMPDIR/GlobalHead.%p.%n
  7349. @end smallexample
  7350. @noindent
  7351. where @samp{$TMPDIR} represents the value of the @var{TMPDIR}
  7352. environment variable. If @var{TMPDIR} is not set, @command{tar}
  7353. uses @samp{/tmp}.
  7354. @item @var{keyword}=@var{value}
  7355. When used with one of archive-creation commands, these keyword/value pairs
  7356. will be included at the beginning of the archive in a global extended
  7357. header record. When used with one of archive-reading commands,
  7358. @command{tar} will behave as if it has encountered these keyword/value
  7359. pairs at the beginning of the archive in a global extended header
  7360. record.
  7361. @item @var{keyword}:=@var{value}
  7362. When used with one of archive-creation commands, these keyword/value pairs
  7363. will be included as records at the beginning of an extended header for
  7364. each file. This is effectively equivalent to @var{keyword}=@var{value}
  7365. form except that it creates no global extended header records.
  7366. When used with one of archive-reading commands, @command{tar} will
  7367. behave as if these keyword/value pairs were included as records at the
  7368. end of each extended header; thus, they will override any global or
  7369. file-specific extended header record keywords of the same names.
  7370. For example, in the command:
  7371. @smallexample
  7372. tar --format=posix --create \
  7373. --file archive --pax-option gname:=user .
  7374. @end smallexample
  7375. the group name will be forced to a new value for all files
  7376. stored in the archive.
  7377. @end table
  7378. @node Checksumming
  7379. @subsection Checksumming Problems
  7380. SunOS and HP-UX @command{tar} fail to accept archives created using
  7381. @GNUTAR{} and containing non-@acronym{ASCII} file names, that
  7382. is, file names having characters with the eight bit set, because they
  7383. use signed checksums, while @GNUTAR{} uses unsigned
  7384. checksums while creating archives, as per @acronym{POSIX} standards. On
  7385. reading, @GNUTAR{} computes both checksums and
  7386. accept any. It is somewhat worrying that a lot of people may go
  7387. around doing backup of their files using faulty (or at least
  7388. non-standard) software, not learning about it until it's time to
  7389. restore their missing files with an incompatible file extractor, or
  7390. vice versa.
  7391. @GNUTAR{} compute checksums both ways, and accept
  7392. any on read, so @acronym{GNU} tar can read Sun tapes even with their
  7393. wrong checksums. @GNUTAR{} produces the standard
  7394. checksum, however, raising incompatibilities with Sun. That is to
  7395. say, @GNUTAR{} has not been modified to
  7396. @emph{produce} incorrect archives to be read by buggy @command{tar}'s.
  7397. I've been told that more recent Sun @command{tar} now read standard
  7398. archives, so maybe Sun did a similar patch, after all?
  7399. The story seems to be that when Sun first imported @command{tar}
  7400. sources on their system, they recompiled it without realizing that
  7401. the checksums were computed differently, because of a change in
  7402. the default signing of @code{char}'s in their compiler. So they
  7403. started computing checksums wrongly. When they later realized their
  7404. mistake, they merely decided to stay compatible with it, and with
  7405. themselves afterwards. Presumably, but I do not really know, HP-UX
  7406. has chosen that their @command{tar} archives to be compatible with Sun's.
  7407. The current standards do not favor Sun @command{tar} format. In any
  7408. case, it now falls on the shoulders of SunOS and HP-UX users to get
  7409. a @command{tar} able to read the good archives they receive.
  7410. @node Large or Negative Values
  7411. @subsection Large or Negative Values
  7412. @cindex large values
  7413. @cindex future time stamps
  7414. @cindex negative time stamps
  7415. @UNREVISED{}
  7416. The above sections suggest to use @samp{oldest possible} archive
  7417. format if in doubt. However, sometimes it is not possible. If you
  7418. attempt to archive a file whose metadata cannot be represented using
  7419. required format, @GNUTAR{} will print error message and ignore such a
  7420. file. You will than have to switch to a format that is able to
  7421. handle such values. The format summary table (@pxref{Formats}) will
  7422. help you to do so.
  7423. In particular, when trying to archive files larger than 8GB or with
  7424. timestamps not in the range 1970-01-01 00:00:00 through 2242-03-16
  7425. 12:56:31 @sc{utc}, you will have to chose between @acronym{GNU} and
  7426. @acronym{POSIX} archive formats. When considering which format to
  7427. choose, bear in mind that the @acronym{GNU} format uses
  7428. two's-complement base-256 notation to store values that do not fit
  7429. into standard @acronym{ustar} range. Such archives can generally be
  7430. read only by a @GNUTAR{} implementation. Moreover, they sometimes
  7431. cannot be correctly restored on another hosts even by @GNUTAR{}. For
  7432. example, using two's complement representation for negative time
  7433. stamps that assumes a signed 32-bit @code{time_t} generates archives
  7434. that are not portable to hosts with differing @code{time_t}
  7435. representations.
  7436. On the other hand, @acronym{POSIX} archives, generally speaking, can
  7437. be extracted by any tar implementation that understands older
  7438. @acronym{ustar} format. The only exception are files larger than 8GB.
  7439. @FIXME{Describe how @acronym{POSIX} archives are extracted by non
  7440. POSIX-aware tars.}
  7441. @node Other Tars
  7442. @subsection How to Extract GNU-Specific Data Using Other @command{tar} Implementations
  7443. In previous sections you became acquainted with various quirks
  7444. necessary to make your archives portable. Sometimes you may need to
  7445. extract archives containing GNU-specific members using some
  7446. third-party @command{tar} implementation or an older version of
  7447. @GNUTAR{}. Of course your best bet is to have @GNUTAR{} installed,
  7448. but if it is for some reason impossible, this section will explain
  7449. how to cope without it.
  7450. When we speak about @dfn{GNU-specific} members we mean two classes of
  7451. them: members split between the volumes of a multi-volume archive and
  7452. sparse members. You will be able to always recover such members if
  7453. the archive is in PAX format. In addition split members can be
  7454. recovered from archives in old GNU format. The following subsections
  7455. describe the required procedures in detail.
  7456. @menu
  7457. * Split Recovery:: Members Split Between Volumes
  7458. * Sparse Recovery:: Sparse Members
  7459. @end menu
  7460. @node Split Recovery
  7461. @subsubsection Extracting Members Split Between Volumes
  7462. @cindex Mutli-volume archives, extracting using non-GNU tars
  7463. If a member is split between several volumes of an old GNU format archive
  7464. most third party @command{tar} implementation will fail to extract
  7465. it. To extract it, use @command{tarcat} program (@pxref{Tarcat}).
  7466. This program is available from
  7467. @uref{http://www.gnu.org/@/software/@/tar/@/utils/@/tarcat.html, @GNUTAR{}
  7468. home page}. It concatenates several archive volumes into a single
  7469. valid archive. For example, if you have three volumes named from
  7470. @file{vol-1.tar} to @file{vol-3.tar}, you can do the following to
  7471. extract them using a third-party @command{tar}:
  7472. @smallexample
  7473. $ @kbd{tarcat vol-1.tar vol-2.tar vol-3.tar | tar xf -}
  7474. @end smallexample
  7475. @cindex Mutli-volume archives in PAX format, extracting using non-GNU tars
  7476. You could use this approach for most (although not all) PAX
  7477. format archives as well. However, extracting split members from a PAX
  7478. archive is a much easier task, because PAX volumes are constructed in
  7479. such a way that each part of a split member is extracted to a
  7480. different file by @command{tar} implementations that are not aware of
  7481. GNU extensions. More specifically, the very first part retains its
  7482. original name, and all subsequent parts are named using the pattern:
  7483. @smallexample
  7484. %d/GNUFileParts.%p/%f.%n
  7485. @end smallexample
  7486. @noindent
  7487. where symbols preceeded by @samp{%} are @dfn{macro characters} that
  7488. have the following meaning:
  7489. @multitable @columnfractions .25 .55
  7490. @headitem Meta-character @tab Replaced By
  7491. @item %d @tab The directory name of the file, equivalent to the
  7492. result of the @command{dirname} utility on its full name.
  7493. @item %f @tab The file name of the file, equivalent to the result
  7494. of the @command{basename} utility on its full name.
  7495. @item %p @tab The process @acronym{ID} of the @command{tar} process that
  7496. created the archive.
  7497. @item %n @tab Ordinal number of this particular part.
  7498. @end multitable
  7499. For example, if the file @file{var/longfile} was split during archive
  7500. creation between three volumes, and the creator @command{tar} process
  7501. had process @acronym{ID} @samp{27962}, then the member names will be:
  7502. @smallexample
  7503. var/longfile
  7504. var/GNUFileParts.27962/longfile.1
  7505. var/GNUFileParts.27962/longfile.2
  7506. @end smallexample
  7507. When you extract your archive using a third-party @command{tar}, these
  7508. files will be created on your disk, and the only thing you will need
  7509. to do to restore your file in its original form is concatenate them in
  7510. the proper order, for example:
  7511. @smallexample
  7512. @group
  7513. $ @kbd{cd var}
  7514. $ @kbd{cat GNUFileParts.27962/longfile.1 \
  7515. GNUFileParts.27962/longfile.2 >> longfile}
  7516. $ rm -f GNUFileParts.27962
  7517. @end group
  7518. @end smallexample
  7519. Notice, that if the @command{tar} implementation you use supports PAX
  7520. format archives, it will probably emit warnings about unknown keywords
  7521. during extraction. They will look like this:
  7522. @smallexample
  7523. @group
  7524. Tar file too small
  7525. Unknown extended header keyword 'GNU.volume.filename' ignored.
  7526. Unknown extended header keyword 'GNU.volume.size' ignored.
  7527. Unknown extended header keyword 'GNU.volume.offset' ignored.
  7528. @end group
  7529. @end smallexample
  7530. @noindent
  7531. You can safely ignore these warnings.
  7532. If your @command{tar} implementation is not PAX-aware, you will get
  7533. more warnings and more files generated on your disk, e.g.:
  7534. @smallexample
  7535. @group
  7536. $ @kbd{tar xf vol-1.tar}
  7537. var/PaxHeaders.27962/longfile: Unknown file type 'x', extracted as
  7538. normal file
  7539. Unexpected EOF in archive
  7540. $ @kbd{tar xf vol-2.tar}
  7541. tmp/GlobalHead.27962.1: Unknown file type 'g', extracted as normal file
  7542. GNUFileParts.27962/PaxHeaders.27962/sparsefile.1: Unknown file type
  7543. 'x', extracted as normal file
  7544. @end group
  7545. @end smallexample
  7546. Ignore these warnings. The @file{PaxHeaders.*} directories created
  7547. will contain files with @dfn{extended header keywords} describing the
  7548. extracted files. You can delete them, unless they describe sparse
  7549. members. Read further to learn more about them.
  7550. @node Sparse Recovery
  7551. @subsubsection Extracting Sparse Members
  7552. @cindex sparse files, extracting with non-GNU tars
  7553. Any @command{tar} implementation will be able to extract sparse members from a
  7554. PAX archive. However, the extracted files will be @dfn{condensed},
  7555. i.e., any zero blocks will be removed from them. When we restore such
  7556. a condensed file to its original form, by adding zero blocks (or
  7557. @dfn{holes}) back to their original locations, we call this process
  7558. @dfn{expanding} a compressed sparse file.
  7559. @pindex xsparse
  7560. To expand a file, you will need a simple auxiliary program called
  7561. @command{xsparse}. It is available in source form from
  7562. @uref{http://www.gnu.org/@/software/@/tar/@/utils/@/xsparse.html, @GNUTAR{}
  7563. home page}.
  7564. @cindex sparse files v.1.0, extracting with non-GNU tars
  7565. Let's begin with archive members in @dfn{sparse format
  7566. version 1.0}@footnote{@xref{PAX 1}.}, which are the easiest to expand.
  7567. The condensed file will contain both file map and file data, so no
  7568. additional data will be needed to restore it. If the original file
  7569. name was @file{@var{dir}/@var{name}}, then the condensed file will be
  7570. named @file{@var{dir}/@/GNUSparseFile.@var{n}/@/@var{name}}, where
  7571. @var{n} is a decimal number@footnote{technically speaking, @var{n} is a
  7572. @dfn{process @acronym{ID}} of the @command{tar} process which created the
  7573. archive (@pxref{PAX keywords}).}.
  7574. To expand a version 1.0 file, run @command{xsparse} as follows:
  7575. @smallexample
  7576. $ @kbd{xsparse @file{cond-file}}
  7577. @end smallexample
  7578. @noindent
  7579. where @file{cond-file} is the name of the condensed file. The utility
  7580. will deduce the name for the resulting expanded file using the
  7581. following algorithm:
  7582. @enumerate 1
  7583. @item If @file{cond-file} does not contain any directories,
  7584. @file{../cond-file} will be used;
  7585. @item If @file{cond-file} has the form
  7586. @file{@var{dir}/@var{t}/@var{name}}, where both @var{t} and @var{name}
  7587. are simple names, with no @samp{/} characters in them, the output file
  7588. name will be @file{@var{dir}/@var{name}}.
  7589. @item Otherwise, if @file{cond-file} has the form
  7590. @file{@var{dir}/@var{name}}, the output file name will be
  7591. @file{@var{name}}.
  7592. @end enumerate
  7593. In the unlikely case when this algorithm does not suit your needs,
  7594. you can explicitly specify output file name as a second argument to
  7595. the command:
  7596. @smallexample
  7597. $ @kbd{xsparse @file{cond-file} @file{out-file}}
  7598. @end smallexample
  7599. It is often a good idea to run @command{xsparse} in @dfn{dry run} mode
  7600. first. In this mode, the command does not actually expand the file,
  7601. but verbosely lists all actions it would be taking to do so. The dry
  7602. run mode is enabled by @option{-n} command line argument:
  7603. @smallexample
  7604. @group
  7605. $ @kbd{xsparse -n /home/gray/GNUSparseFile.6058/sparsefile}
  7606. Reading v.1.0 sparse map
  7607. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7608. `/home/gray/sparsefile'
  7609. Finished dry run
  7610. @end group
  7611. @end smallexample
  7612. To actually expand the file, you would run:
  7613. @smallexample
  7614. $ @kbd{xsparse /home/gray/GNUSparseFile.6058/sparsefile}
  7615. @end smallexample
  7616. @noindent
  7617. The program behaves the same way all UNIX utilities do: it will keep
  7618. quiet unless it has simething important to tell you (e.g. an error
  7619. condition or something). If you wish it to produce verbose output,
  7620. similar to that from the dry run mode, use @option{-v} option:
  7621. @smallexample
  7622. @group
  7623. $ @kbd{xsparse -v /home/gray/GNUSparseFile.6058/sparsefile}
  7624. Reading v.1.0 sparse map
  7625. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7626. `/home/gray/sparsefile'
  7627. Done
  7628. @end group
  7629. @end smallexample
  7630. Additionally, if your @command{tar} implementation has extracted the
  7631. @dfn{extended headers} for this file, you can instruct @command{xstar}
  7632. to use them in order to verify the integrity of the expanded file.
  7633. The option @option{-x} sets the name of the extended header file to
  7634. use. Continuing our example:
  7635. @smallexample
  7636. @group
  7637. $ @kbd{xsparse -v -x /home/gray/PaxHeaders.6058/sparsefile \
  7638. /home/gray/GNUSparseFile.6058/sparsefile}
  7639. Reading extended header file
  7640. Found variable GNU.sparse.major = 1
  7641. Found variable GNU.sparse.minor = 0
  7642. Found variable GNU.sparse.name = sparsefile
  7643. Found variable GNU.sparse.realsize = 217481216
  7644. Reading v.1.0 sparse map
  7645. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7646. `/home/gray/sparsefile'
  7647. Done
  7648. @end group
  7649. @end smallexample
  7650. @anchor{extracting sparse v.0.x}
  7651. @cindex sparse files v.0.1, extracting with non-GNU tars
  7652. @cindex sparse files v.0.0, extracting with non-GNU tars
  7653. An @dfn{extended header} is a special @command{tar} archive header
  7654. that precedes an archive member and contains a set of
  7655. @dfn{variables}, describing the member properties that cannot be
  7656. stored in the standard @code{ustar} header. While optional for
  7657. expanding sparse version 1.0 members, the use of extended headers is
  7658. mandatory when expanding sparse members in older sparse formats: v.0.0
  7659. and v.0.1 (The sparse formats are described in detail in @ref{Sparse
  7660. Formats}.) So, for these formats, the question is: how to obtain
  7661. extended headers from the archive?
  7662. If you use a @command{tar} implementation that does not support PAX
  7663. format, extended headers for each member will be extracted as a
  7664. separate file. If we represent the member name as
  7665. @file{@var{dir}/@var{name}}, then the extended header file will be
  7666. named @file{@var{dir}/@/PaxHeaders.@var{n}/@/@var{name}}, where
  7667. @var{n} is an integer number.
  7668. Things become more difficult if your @command{tar} implementation
  7669. does support PAX headers, because in this case you will have to
  7670. manually extract the headers. We recommend the following algorithm:
  7671. @enumerate 1
  7672. @item
  7673. Consult the documentation of your @command{tar} implementation for an
  7674. option that prints @dfn{block numbers} along with the archive
  7675. listing (analogous to @GNUTAR{}'s @option{-R} option). For example,
  7676. @command{star} has @option{-block-number}.
  7677. @item
  7678. Obtain verbose listing using the @samp{block number} option, and
  7679. find block numbers of the sparse member in question and the member
  7680. immediately following it. For example, running @command{star} on our
  7681. archive we obtain:
  7682. @smallexample
  7683. @group
  7684. $ @kbd{star -t -v -block-number -f arc.tar}
  7685. @dots{}
  7686. star: Unknown extended header keyword 'GNU.sparse.size' ignored.
  7687. star: Unknown extended header keyword 'GNU.sparse.numblocks' ignored.
  7688. star: Unknown extended header keyword 'GNU.sparse.name' ignored.
  7689. star: Unknown extended header keyword 'GNU.sparse.map' ignored.
  7690. block 56: 425984 -rw-r--r-- gray/users Jun 25 14:46 2006 GNUSparseFile.28124/sparsefile
  7691. block 897: 65391 -rw-r--r-- gray/users Jun 24 20:06 2006 README
  7692. @dots{}
  7693. @end group
  7694. @end smallexample
  7695. @noindent
  7696. (as usual, ignore the warnings about unknown keywords.)
  7697. @item
  7698. Let @var{size} be the size of the sparse member, @var{Bs} be its block number
  7699. and @var{Bn} be the block number of the next member.
  7700. Compute:
  7701. @smallexample
  7702. @var{N} = @var{Bs} - @var{Bn} - @var{size}/512 - 2
  7703. @end smallexample
  7704. @noindent
  7705. This number gives the size of the extended header part in tar @dfn{blocks}.
  7706. In our example, this formula gives: @code{897 - 56 - 425984 / 512 - 2
  7707. = 7}.
  7708. @item
  7709. Use @command{dd} to extract the headers:
  7710. @smallexample
  7711. @kbd{dd if=@var{archive} of=@var{hname} bs=512 skip=@var{Bs} count=@var{N}}
  7712. @end smallexample
  7713. @noindent
  7714. where @var{archive} is the archive name, @var{hname} is a name of the
  7715. file to store the extended header in, @var{Bs} and @var{N} are
  7716. computed in previous steps.
  7717. In our example, this command will be
  7718. @smallexample
  7719. $ @kbd{dd if=arc.tar of=xhdr bs=512 skip=56 count=7}
  7720. @end smallexample
  7721. @end enumerate
  7722. Finally, you can expand the condensed file, using the obtained header:
  7723. @smallexample
  7724. @group
  7725. $ @kbd{xsparse -v -x xhdr GNUSparseFile.6058/sparsefile}
  7726. Reading extended header file
  7727. Found variable GNU.sparse.size = 217481216
  7728. Found variable GNU.sparse.numblocks = 208
  7729. Found variable GNU.sparse.name = sparsefile
  7730. Found variable GNU.sparse.map = 0,2048,1050624,2048,@dots{}
  7731. Expanding file `GNUSparseFile.28124/sparsefile' to `sparsefile'
  7732. Done
  7733. @end group
  7734. @end smallexample
  7735. @node cpio
  7736. @section Comparison of @command{tar} and @command{cpio}
  7737. @UNREVISED
  7738. @FIXME{Reorganize the following material}
  7739. The @command{cpio} archive formats, like @command{tar}, do have maximum
  7740. file name lengths. The binary and old @acronym{ASCII} formats have a maximum file
  7741. length of 256, and the new @acronym{ASCII} and @acronym{CRC ASCII} formats have a max
  7742. file length of 1024. @acronym{GNU} @command{cpio} can read and write archives
  7743. with arbitrary file name lengths, but other @command{cpio} implementations
  7744. may crash unexplainedly trying to read them.
  7745. @command{tar} handles symbolic links in the form in which it comes in @acronym{BSD};
  7746. @command{cpio} doesn't handle symbolic links in the form in which it comes
  7747. in System V prior to SVR4, and some vendors may have added symlinks
  7748. to their system without enhancing @command{cpio} to know about them.
  7749. Others may have enhanced it in a way other than the way I did it
  7750. at Sun, and which was adopted by AT&T (and which is, I think, also
  7751. present in the @command{cpio} that Berkeley picked up from AT&T and put
  7752. into a later @acronym{BSD} release---I think I gave them my changes).
  7753. (SVR4 does some funny stuff with @command{tar}; basically, its @command{cpio}
  7754. can handle @command{tar} format input, and write it on output, and it
  7755. probably handles symbolic links. They may not have bothered doing
  7756. anything to enhance @command{tar} as a result.)
  7757. @command{cpio} handles special files; traditional @command{tar} doesn't.
  7758. @command{tar} comes with V7, System III, System V, and @acronym{BSD} source;
  7759. @command{cpio} comes only with System III, System V, and later @acronym{BSD}
  7760. (4.3-tahoe and later).
  7761. @command{tar}'s way of handling multiple hard links to a file can handle
  7762. file systems that support 32-bit inumbers (e.g., the @acronym{BSD} file system);
  7763. @command{cpio}s way requires you to play some games (in its ``binary''
  7764. format, i-numbers are only 16 bits, and in its ``portable @acronym{ASCII}'' format,
  7765. they're 18 bits---it would have to play games with the "file system @acronym{ID}"
  7766. field of the header to make sure that the file system @acronym{ID}/i-number pairs
  7767. of different files were always different), and I don't know which
  7768. @command{cpio}s, if any, play those games. Those that don't might get
  7769. confused and think two files are the same file when they're not, and
  7770. make hard links between them.
  7771. @command{tar}s way of handling multiple hard links to a file places only
  7772. one copy of the link on the tape, but the name attached to that copy
  7773. is the @emph{only} one you can use to retrieve the file; @command{cpio}s
  7774. way puts one copy for every link, but you can retrieve it using any
  7775. of the names.
  7776. @quotation
  7777. What type of check sum (if any) is used, and how is this calculated.
  7778. @end quotation
  7779. See the attached manual pages for @command{tar} and @command{cpio} format.
  7780. @command{tar} uses a checksum which is the sum of all the bytes in the
  7781. @command{tar} header for a file; @command{cpio} uses no checksum.
  7782. @quotation
  7783. If anyone knows why @command{cpio} was made when @command{tar} was present
  7784. at the unix scene,
  7785. @end quotation
  7786. It wasn't. @command{cpio} first showed up in PWB/UNIX 1.0; no
  7787. generally-available version of UNIX had @command{tar} at the time. I don't
  7788. know whether any version that was generally available @emph{within AT&T}
  7789. had @command{tar}, or, if so, whether the people within AT&T who did
  7790. @command{cpio} knew about it.
  7791. On restore, if there is a corruption on a tape @command{tar} will stop at
  7792. that point, while @command{cpio} will skip over it and try to restore the
  7793. rest of the files.
  7794. The main difference is just in the command syntax and header format.
  7795. @command{tar} is a little more tape-oriented in that everything is blocked
  7796. to start on a record boundary.
  7797. @quotation
  7798. Is there any differences between the ability to recover crashed
  7799. archives between the two of them. (Is there any chance of recovering
  7800. crashed archives at all.)
  7801. @end quotation
  7802. Theoretically it should be easier under @command{tar} since the blocking
  7803. lets you find a header with some variation of @samp{dd skip=@var{nn}}.
  7804. However, modern @command{cpio}'s and variations have an option to just
  7805. search for the next file header after an error with a reasonable chance
  7806. of resyncing. However, lots of tape driver software won't allow you to
  7807. continue past a media error which should be the only reason for getting
  7808. out of sync unless a file changed sizes while you were writing the
  7809. archive.
  7810. @quotation
  7811. If anyone knows why @command{cpio} was made when @command{tar} was present
  7812. at the unix scene, please tell me about this too.
  7813. @end quotation
  7814. Probably because it is more media efficient (by not blocking everything
  7815. and using only the space needed for the headers where @command{tar}
  7816. always uses 512 bytes per file header) and it knows how to archive
  7817. special files.
  7818. You might want to look at the freely available alternatives. The
  7819. major ones are @command{afio}, @GNUTAR{}, and
  7820. @command{pax}, each of which have their own extensions with some
  7821. backwards compatibility.
  7822. Sparse files were @command{tar}red as sparse files (which you can
  7823. easily test, because the resulting archive gets smaller, and
  7824. @acronym{GNU} @command{cpio} can no longer read it).
  7825. @node Media
  7826. @chapter Tapes and Other Archive Media
  7827. @UNREVISED
  7828. A few special cases about tape handling warrant more detailed
  7829. description. These special cases are discussed below.
  7830. Many complexities surround the use of @command{tar} on tape drives. Since
  7831. the creation and manipulation of archives located on magnetic tape was
  7832. the original purpose of @command{tar}, it contains many features making
  7833. such manipulation easier.
  7834. Archives are usually written on dismountable media---tape cartridges,
  7835. mag tapes, or floppy disks.
  7836. The amount of data a tape or disk holds depends not only on its size,
  7837. but also on how it is formatted. A 2400 foot long reel of mag tape
  7838. holds 40 megabytes of data when formatted at 1600 bits per inch. The
  7839. physically smaller EXABYTE tape cartridge holds 2.3 gigabytes.
  7840. Magnetic media are re-usable---once the archive on a tape is no longer
  7841. needed, the archive can be erased and the tape or disk used over.
  7842. Media quality does deteriorate with use, however. Most tapes or disks
  7843. should be discarded when they begin to produce data errors. EXABYTE
  7844. tape cartridges should be discarded when they generate an @dfn{error
  7845. count} (number of non-usable bits) of more than 10k.
  7846. Magnetic media are written and erased using magnetic fields, and
  7847. should be protected from such fields to avoid damage to stored data.
  7848. Sticking a floppy disk to a filing cabinet using a magnet is probably
  7849. not a good idea.
  7850. @menu
  7851. * Device:: Device selection and switching
  7852. * Remote Tape Server::
  7853. * Common Problems and Solutions::
  7854. * Blocking:: Blocking
  7855. * Many:: Many archives on one tape
  7856. * Using Multiple Tapes:: Using Multiple Tapes
  7857. * label:: Including a Label in the Archive
  7858. * verify::
  7859. * Write Protection::
  7860. @end menu
  7861. @node Device
  7862. @section Device Selection and Switching
  7863. @UNREVISED
  7864. @table @option
  7865. @item -f [@var{hostname}:]@var{file}
  7866. @itemx --file=[@var{hostname}:]@var{file}
  7867. Use archive file or device @var{file} on @var{hostname}.
  7868. @end table
  7869. This option is used to specify the file name of the archive @command{tar}
  7870. works on.
  7871. If the file name is @samp{-}, @command{tar} reads the archive from standard
  7872. input (when listing or extracting), or writes it to standard output
  7873. (when creating). If the @samp{-} file name is given when updating an
  7874. archive, @command{tar} will read the original archive from its standard
  7875. input, and will write the entire new archive to its standard output.
  7876. If the file name contains a @samp{:}, it is interpreted as
  7877. @samp{hostname:file name}. If the @var{hostname} contains an @dfn{at}
  7878. sign (@samp{@@}), it is treated as @samp{user@@hostname:file name}. In
  7879. either case, @command{tar} will invoke the command @command{rsh} (or
  7880. @command{remsh}) to start up an @command{/usr/libexec/rmt} on the remote
  7881. machine. If you give an alternate login name, it will be given to the
  7882. @command{rsh}.
  7883. Naturally, the remote machine must have an executable
  7884. @command{/usr/libexec/rmt}. This program is free software from the
  7885. University of California, and a copy of the source code can be found
  7886. with the sources for @command{tar}; it's compiled and installed by default.
  7887. The exact path to this utility is determined when configuring the package.
  7888. It is @file{@var{prefix}/libexec/rmt}, where @var{prefix} stands for
  7889. your installation prefix. This location may also be overridden at
  7890. runtime by using @option{rmt-command=@var{command}} option (@xref{Option Summary,
  7891. ---rmt-command}, for detailed description of this option. @xref{Remote
  7892. Tape Server}, for the description of @command{rmt} command).
  7893. If this option is not given, but the environment variable @env{TAPE}
  7894. is set, its value is used; otherwise, old versions of @command{tar}
  7895. used a default archive name (which was picked when @command{tar} was
  7896. compiled). The default is normally set up to be the @dfn{first} tape
  7897. drive or other transportable I/O medium on the system.
  7898. Starting with version 1.11.5, @GNUTAR{} uses
  7899. standard input and standard output as the default device, and I will
  7900. not try anymore supporting automatic device detection at installation
  7901. time. This was failing really in too many cases, it was hopeless.
  7902. This is now completely left to the installer to override standard
  7903. input and standard output for default device, if this seems
  7904. preferable. Further, I think @emph{most} actual usages of
  7905. @command{tar} are done with pipes or disks, not really tapes,
  7906. cartridges or diskettes.
  7907. Some users think that using standard input and output is running
  7908. after trouble. This could lead to a nasty surprise on your screen if
  7909. you forget to specify an output file name---especially if you are going
  7910. through a network or terminal server capable of buffering large amounts
  7911. of output. We had so many bug reports in that area of configuring
  7912. default tapes automatically, and so many contradicting requests, that
  7913. we finally consider the problem to be portably intractable. We could
  7914. of course use something like @samp{/dev/tape} as a default, but this
  7915. is @emph{also} running after various kind of trouble, going from hung
  7916. processes to accidental destruction of real tapes. After having seen
  7917. all this mess, using standard input and output as a default really
  7918. sounds like the only clean choice left, and a very useful one too.
  7919. @GNUTAR{} reads and writes archive in records, I
  7920. suspect this is the main reason why block devices are preferred over
  7921. character devices. Most probably, block devices are more efficient
  7922. too. The installer could also check for @samp{DEFTAPE} in
  7923. @file{<sys/mtio.h>}.
  7924. @table @option
  7925. @xopindex{force-local, short description}
  7926. @item --force-local
  7927. Archive file is local even if it contains a colon.
  7928. @opindex rsh-command
  7929. @item --rsh-command=@var{command}
  7930. Use remote @var{command} instead of @command{rsh}. This option exists
  7931. so that people who use something other than the standard @command{rsh}
  7932. (e.g., a Kerberized @command{rsh}) can access a remote device.
  7933. When this command is not used, the shell command found when
  7934. the @command{tar} program was installed is used instead. This is
  7935. the first found of @file{/usr/ucb/rsh}, @file{/usr/bin/remsh},
  7936. @file{/usr/bin/rsh}, @file{/usr/bsd/rsh} or @file{/usr/bin/nsh}.
  7937. The installer may have overridden this by defining the environment
  7938. variable @env{RSH} @emph{at installation time}.
  7939. @item -[0-7][lmh]
  7940. Specify drive and density.
  7941. @xopindex{multi-volume, short description}
  7942. @item -M
  7943. @itemx --multi-volume
  7944. Create/list/extract multi-volume archive.
  7945. This option causes @command{tar} to write a @dfn{multi-volume} archive---one
  7946. that may be larger than will fit on the medium used to hold it.
  7947. @xref{Multi-Volume Archives}.
  7948. @xopindex{tape-length, short description}
  7949. @item -L @var{num}
  7950. @itemx --tape-length=@var{num}
  7951. Change tape after writing @var{num} x 1024 bytes.
  7952. This option might be useful when your tape drivers do not properly
  7953. detect end of physical tapes. By being slightly conservative on the
  7954. maximum tape length, you might avoid the problem entirely.
  7955. @xopindex{info-script, short description}
  7956. @xopindex{new-volume-script, short description}
  7957. @item -F @var{file}
  7958. @itemx --info-script=@var{file}
  7959. @itemx --new-volume-script=@var{file}
  7960. Execute @file{file} at end of each tape. This implies
  7961. @option{--multi-volume} (@option{-M}). @xref{info-script}, for a detailed
  7962. description of this option.
  7963. @end table
  7964. @node Remote Tape Server
  7965. @section The Remote Tape Server
  7966. @cindex remote tape drive
  7967. @pindex rmt
  7968. In order to access the tape drive on a remote machine, @command{tar}
  7969. uses the remote tape server written at the University of California at
  7970. Berkeley. The remote tape server must be installed as
  7971. @file{@var{prefix}/libexec/rmt} on any machine whose tape drive you
  7972. want to use. @command{tar} calls @command{rmt} by running an
  7973. @command{rsh} or @command{remsh} to the remote machine, optionally
  7974. using a different login name if one is supplied.
  7975. A copy of the source for the remote tape server is provided. It is
  7976. Copyright @copyright{} 1983 by the Regents of the University of
  7977. California, but can be freely distributed. It is compiled and
  7978. installed by default.
  7979. @cindex absolute file names
  7980. Unless you use the @option{--absolute-names} (@option{-P}) option,
  7981. @GNUTAR{} will not allow you to create an archive that contains
  7982. absolute file names (a file name beginning with @samp{/}.) If you try,
  7983. @command{tar} will automatically remove the leading @samp{/} from the
  7984. file names it stores in the archive. It will also type a warning
  7985. message telling you what it is doing.
  7986. When reading an archive that was created with a different
  7987. @command{tar} program, @GNUTAR{} automatically
  7988. extracts entries in the archive which have absolute file names as if
  7989. the file names were not absolute. This is an important feature. A
  7990. visitor here once gave a @command{tar} tape to an operator to restore;
  7991. the operator used Sun @command{tar} instead of @GNUTAR{},
  7992. and the result was that it replaced large portions of
  7993. our @file{/bin} and friends with versions from the tape; needless to
  7994. say, we were unhappy about having to recover the file system from
  7995. backup tapes.
  7996. For example, if the archive contained a file @file{/usr/bin/computoy},
  7997. @GNUTAR{} would extract the file to @file{usr/bin/computoy},
  7998. relative to the current directory. If you want to extract the files in
  7999. an archive to the same absolute names that they had when the archive
  8000. was created, you should do a @samp{cd /} before extracting the files
  8001. from the archive, or you should either use the @option{--absolute-names}
  8002. option, or use the command @samp{tar -C / @dots{}}.
  8003. @cindex Ultrix 3.1 and write failure
  8004. Some versions of Unix (Ultrix 3.1 is known to have this problem),
  8005. can claim that a short write near the end of a tape succeeded,
  8006. when it actually failed. This will result in the -M option not
  8007. working correctly. The best workaround at the moment is to use a
  8008. significantly larger blocking factor than the default 20.
  8009. In order to update an archive, @command{tar} must be able to backspace the
  8010. archive in order to reread or rewrite a record that was just read (or
  8011. written). This is currently possible only on two kinds of files: normal
  8012. disk files (or any other file that can be backspaced with @samp{lseek}),
  8013. and industry-standard 9-track magnetic tape (or any other kind of tape
  8014. that can be backspaced with the @code{MTIOCTOP} @code{ioctl}.
  8015. This means that the @option{--append}, @option{--concatenate}, and
  8016. @option{--delete} commands will not work on any other kind of file.
  8017. Some media simply cannot be backspaced, which means these commands and
  8018. options will never be able to work on them. These non-backspacing
  8019. media include pipes and cartridge tape drives.
  8020. Some other media can be backspaced, and @command{tar} will work on them
  8021. once @command{tar} is modified to do so.
  8022. Archives created with the @option{--multi-volume}, @option{--label}, and
  8023. @option{--incremental} (@option{-G}) options may not be readable by other version
  8024. of @command{tar}. In particular, restoring a file that was split over
  8025. a volume boundary will require some careful work with @command{dd}, if
  8026. it can be done at all. Other versions of @command{tar} may also create
  8027. an empty file whose name is that of the volume header. Some versions
  8028. of @command{tar} may create normal files instead of directories archived
  8029. with the @option{--incremental} (@option{-G}) option.
  8030. @node Common Problems and Solutions
  8031. @section Some Common Problems and their Solutions
  8032. @ifclear PUBLISH
  8033. @format
  8034. errors from system:
  8035. permission denied
  8036. no such file or directory
  8037. not owner
  8038. errors from @command{tar}:
  8039. directory checksum error
  8040. header format error
  8041. errors from media/system:
  8042. i/o error
  8043. device busy
  8044. @end format
  8045. @end ifclear
  8046. @node Blocking
  8047. @section Blocking
  8048. @UNREVISED
  8049. @dfn{Block} and @dfn{record} terminology is rather confused, and it
  8050. is also confusing to the expert reader. On the other hand, readers
  8051. who are new to the field have a fresh mind, and they may safely skip
  8052. the next two paragraphs, as the remainder of this manual uses those
  8053. two terms in a quite consistent way.
  8054. John Gilmore, the writer of the public domain @command{tar} from which
  8055. @GNUTAR{} was originally derived, wrote (June 1995):
  8056. @quotation
  8057. The nomenclature of tape drives comes from IBM, where I believe
  8058. they were invented for the IBM 650 or so. On IBM mainframes, what
  8059. is recorded on tape are tape blocks. The logical organization of
  8060. data is into records. There are various ways of putting records into
  8061. blocks, including @code{F} (fixed sized records), @code{V} (variable
  8062. sized records), @code{FB} (fixed blocked: fixed size records, @var{n}
  8063. to a block), @code{VB} (variable size records, @var{n} to a block),
  8064. @code{VSB} (variable spanned blocked: variable sized records that can
  8065. occupy more than one block), etc. The @code{JCL} @samp{DD RECFORM=}
  8066. parameter specified this to the operating system.
  8067. The Unix man page on @command{tar} was totally confused about this.
  8068. When I wrote @code{PD TAR}, I used the historically correct terminology
  8069. (@command{tar} writes data records, which are grouped into blocks).
  8070. It appears that the bogus terminology made it into @acronym{POSIX} (no surprise
  8071. here), and now Fran@,{c}ois has migrated that terminology back
  8072. into the source code too.
  8073. @end quotation
  8074. The term @dfn{physical block} means the basic transfer chunk from or
  8075. to a device, after which reading or writing may stop without anything
  8076. being lost. In this manual, the term @dfn{block} usually refers to
  8077. a disk physical block, @emph{assuming} that each disk block is 512
  8078. bytes in length. It is true that some disk devices have different
  8079. physical blocks, but @command{tar} ignore these differences in its own
  8080. format, which is meant to be portable, so a @command{tar} block is always
  8081. 512 bytes in length, and @dfn{block} always mean a @command{tar} block.
  8082. The term @dfn{logical block} often represents the basic chunk of
  8083. allocation of many disk blocks as a single entity, which the operating
  8084. system treats somewhat atomically; this concept is only barely used
  8085. in @GNUTAR{}.
  8086. The term @dfn{physical record} is another way to speak of a physical
  8087. block, those two terms are somewhat interchangeable. In this manual,
  8088. the term @dfn{record} usually refers to a tape physical block,
  8089. @emph{assuming} that the @command{tar} archive is kept on magnetic tape.
  8090. It is true that archives may be put on disk or used with pipes,
  8091. but nevertheless, @command{tar} tries to read and write the archive one
  8092. @dfn{record} at a time, whatever the medium in use. One record is made
  8093. up of an integral number of blocks, and this operation of putting many
  8094. disk blocks into a single tape block is called @dfn{reblocking}, or
  8095. more simply, @dfn{blocking}. The term @dfn{logical record} refers to
  8096. the logical organization of many characters into something meaningful
  8097. to the application. The term @dfn{unit record} describes a small set
  8098. of characters which are transmitted whole to or by the application,
  8099. and often refers to a line of text. Those two last terms are unrelated
  8100. to what we call a @dfn{record} in @GNUTAR{}.
  8101. When writing to tapes, @command{tar} writes the contents of the archive
  8102. in chunks known as @dfn{records}. To change the default blocking
  8103. factor, use the @option{--blocking-factor=@var{512-size}} (@option{-b
  8104. @var{512-size}}) option. Each record will then be composed of
  8105. @var{512-size} blocks. (Each @command{tar} block is 512 bytes.
  8106. @xref{Standard}.) Each file written to the archive uses at least one
  8107. full record. As a result, using a larger record size can result in
  8108. more wasted space for small files. On the other hand, a larger record
  8109. size can often be read and written much more efficiently.
  8110. Further complicating the problem is that some tape drives ignore the
  8111. blocking entirely. For these, a larger record size can still improve
  8112. performance (because the software layers above the tape drive still
  8113. honor the blocking), but not as dramatically as on tape drives that
  8114. honor blocking.
  8115. When reading an archive, @command{tar} can usually figure out the
  8116. record size on itself. When this is the case, and a non-standard
  8117. record size was used when the archive was created, @command{tar} will
  8118. print a message about a non-standard blocking factor, and then operate
  8119. normally. On some tape devices, however, @command{tar} cannot figure
  8120. out the record size itself. On most of those, you can specify a
  8121. blocking factor (with @option{--blocking-factor}) larger than the
  8122. actual blocking factor, and then use the @option{--read-full-records}
  8123. (@option{-B}) option. (If you specify a blocking factor with
  8124. @option{--blocking-factor} and don't use the
  8125. @option{--read-full-records} option, then @command{tar} will not
  8126. attempt to figure out the recording size itself.) On some devices,
  8127. you must always specify the record size exactly with
  8128. @option{--blocking-factor} when reading, because @command{tar} cannot
  8129. figure it out. In any case, use @option{--list} (@option{-t}) before
  8130. doing any extractions to see whether @command{tar} is reading the archive
  8131. correctly.
  8132. @command{tar} blocks are all fixed size (512 bytes), and its scheme for
  8133. putting them into records is to put a whole number of them (one or
  8134. more) into each record. @command{tar} records are all the same size;
  8135. at the end of the file there's a block containing all zeros, which
  8136. is how you tell that the remainder of the last record(s) are garbage.
  8137. In a standard @command{tar} file (no options), the block size is 512
  8138. and the record size is 10240, for a blocking factor of 20. What the
  8139. @option{--blocking-factor} option does is sets the blocking factor,
  8140. changing the record size while leaving the block size at 512 bytes.
  8141. 20 was fine for ancient 800 or 1600 bpi reel-to-reel tape drives;
  8142. most tape drives these days prefer much bigger records in order to
  8143. stream and not waste tape. When writing tapes for myself, some tend
  8144. to use a factor of the order of 2048, say, giving a record size of
  8145. around one megabyte.
  8146. If you use a blocking factor larger than 20, older @command{tar}
  8147. programs might not be able to read the archive, so we recommend this
  8148. as a limit to use in practice. @GNUTAR{}, however,
  8149. will support arbitrarily large record sizes, limited only by the
  8150. amount of virtual memory or the physical characteristics of the tape
  8151. device.
  8152. @menu
  8153. * Format Variations:: Format Variations
  8154. * Blocking Factor:: The Blocking Factor of an Archive
  8155. @end menu
  8156. @node Format Variations
  8157. @subsection Format Variations
  8158. @cindex Format Parameters
  8159. @cindex Format Options
  8160. @cindex Options, archive format specifying
  8161. @cindex Options, format specifying
  8162. @UNREVISED
  8163. Format parameters specify how an archive is written on the archive
  8164. media. The best choice of format parameters will vary depending on
  8165. the type and number of files being archived, and on the media used to
  8166. store the archive.
  8167. To specify format parameters when accessing or creating an archive,
  8168. you can use the options described in the following sections.
  8169. If you do not specify any format parameters, @command{tar} uses
  8170. default parameters. You cannot modify a compressed archive.
  8171. If you create an archive with the @option{--blocking-factor} option
  8172. specified (@pxref{Blocking Factor}), you must specify that
  8173. blocking-factor when operating on the archive. @xref{Formats}, for other
  8174. examples of format parameter considerations.
  8175. @node Blocking Factor
  8176. @subsection The Blocking Factor of an Archive
  8177. @cindex Blocking Factor
  8178. @cindex Record Size
  8179. @cindex Number of blocks per record
  8180. @cindex Number of bytes per record
  8181. @cindex Bytes per record
  8182. @cindex Blocks per record
  8183. @UNREVISED
  8184. @opindex blocking-factor
  8185. The data in an archive is grouped into blocks, which are 512 bytes.
  8186. Blocks are read and written in whole number multiples called
  8187. @dfn{records}. The number of blocks in a record (i.e., the size of a
  8188. record in units of 512 bytes) is called the @dfn{blocking factor}.
  8189. The @option{--blocking-factor=@var{512-size}} (@option{-b
  8190. @var{512-size}}) option specifies the blocking factor of an archive.
  8191. The default blocking factor is typically 20 (i.e., 10240 bytes), but
  8192. can be specified at installation. To find out the blocking factor of
  8193. an existing archive, use @samp{tar --list --file=@var{archive-name}}.
  8194. This may not work on some devices.
  8195. Records are separated by gaps, which waste space on the archive media.
  8196. If you are archiving on magnetic tape, using a larger blocking factor
  8197. (and therefore larger records) provides faster throughput and allows you
  8198. to fit more data on a tape (because there are fewer gaps). If you are
  8199. archiving on cartridge, a very large blocking factor (say 126 or more)
  8200. greatly increases performance. A smaller blocking factor, on the other
  8201. hand, may be useful when archiving small files, to avoid archiving lots
  8202. of nulls as @command{tar} fills out the archive to the end of the record.
  8203. In general, the ideal record size depends on the size of the
  8204. inter-record gaps on the tape you are using, and the average size of the
  8205. files you are archiving. @xref{create}, for information on
  8206. writing archives.
  8207. @FIXME{Need example of using a cartridge with blocking factor=126 or more.}
  8208. Archives with blocking factors larger than 20 cannot be read
  8209. by very old versions of @command{tar}, or by some newer versions
  8210. of @command{tar} running on old machines with small address spaces.
  8211. With @GNUTAR{}, the blocking factor of an archive is limited
  8212. only by the maximum record size of the device containing the archive,
  8213. or by the amount of available virtual memory.
  8214. Also, on some systems, not using adequate blocking factors, as sometimes
  8215. imposed by the device drivers, may yield unexpected diagnostics. For
  8216. example, this has been reported:
  8217. @smallexample
  8218. Cannot write to /dev/dlt: Invalid argument
  8219. @end smallexample
  8220. @noindent
  8221. In such cases, it sometimes happen that the @command{tar} bundled by
  8222. the system is aware of block size idiosyncrasies, while @GNUTAR{}
  8223. requires an explicit specification for the block size,
  8224. which it cannot guess. This yields some people to consider
  8225. @GNUTAR{} is misbehaving, because by comparison,
  8226. @cite{the bundle @command{tar} works OK}. Adding @w{@kbd{-b 256}},
  8227. for example, might resolve the problem.
  8228. If you use a non-default blocking factor when you create an archive, you
  8229. must specify the same blocking factor when you modify that archive. Some
  8230. archive devices will also require you to specify the blocking factor when
  8231. reading that archive, however this is not typically the case. Usually, you
  8232. can use @option{--list} (@option{-t}) without specifying a blocking factor---@command{tar}
  8233. reports a non-default record size and then lists the archive members as
  8234. it would normally. To extract files from an archive with a non-standard
  8235. blocking factor (particularly if you're not sure what the blocking factor
  8236. is), you can usually use the @option{--read-full-records} (@option{-B}) option while
  8237. specifying a blocking factor larger then the blocking factor of the archive
  8238. (i.e., @samp{tar --extract --read-full-records --blocking-factor=300}.
  8239. @xref{list}, for more information on the @option{--list} (@option{-t})
  8240. operation. @xref{Reading}, for a more detailed explanation of that option.
  8241. @table @option
  8242. @item --blocking-factor=@var{number}
  8243. @itemx -b @var{number}
  8244. Specifies the blocking factor of an archive. Can be used with any
  8245. operation, but is usually not necessary with @option{--list} (@option{-t}).
  8246. @end table
  8247. Device blocking
  8248. @table @option
  8249. @item -b @var{blocks}
  8250. @itemx --blocking-factor=@var{blocks}
  8251. Set record size to @math{@var{blocks} * 512} bytes.
  8252. This option is used to specify a @dfn{blocking factor} for the archive.
  8253. When reading or writing the archive, @command{tar}, will do reads and writes
  8254. of the archive in records of @math{@var{block}*512} bytes. This is true
  8255. even when the archive is compressed. Some devices requires that all
  8256. write operations be a multiple of a certain size, and so, @command{tar}
  8257. pads the archive out to the next record boundary.
  8258. The default blocking factor is set when @command{tar} is compiled, and is
  8259. typically 20. Blocking factors larger than 20 cannot be read by very
  8260. old versions of @command{tar}, or by some newer versions of @command{tar}
  8261. running on old machines with small address spaces.
  8262. With a magnetic tape, larger records give faster throughput and fit
  8263. more data on a tape (because there are fewer inter-record gaps).
  8264. If the archive is in a disk file or a pipe, you may want to specify
  8265. a smaller blocking factor, since a large one will result in a large
  8266. number of null bytes at the end of the archive.
  8267. When writing cartridge or other streaming tapes, a much larger
  8268. blocking factor (say 126 or more) will greatly increase performance.
  8269. However, you must specify the same blocking factor when reading or
  8270. updating the archive.
  8271. Apparently, Exabyte drives have a physical block size of 8K bytes.
  8272. If we choose our blocksize as a multiple of 8k bytes, then the problem
  8273. seems to disappear. Id est, we are using block size of 112 right
  8274. now, and we haven't had the problem since we switched@dots{}
  8275. With @GNUTAR{} the blocking factor is limited only
  8276. by the maximum record size of the device containing the archive, or by
  8277. the amount of available virtual memory.
  8278. However, deblocking or reblocking is virtually avoided in a special
  8279. case which often occurs in practice, but which requires all the
  8280. following conditions to be simultaneously true:
  8281. @itemize @bullet
  8282. @item
  8283. the archive is subject to a compression option,
  8284. @item
  8285. the archive is not handled through standard input or output, nor
  8286. redirected nor piped,
  8287. @item
  8288. the archive is directly handled to a local disk, instead of any special
  8289. device,
  8290. @item
  8291. @option{--blocking-factor} is not explicitly specified on the @command{tar}
  8292. invocation.
  8293. @end itemize
  8294. If the output goes directly to a local disk, and not through
  8295. stdout, then the last write is not extended to a full record size.
  8296. Otherwise, reblocking occurs. Here are a few other remarks on this
  8297. topic:
  8298. @itemize @bullet
  8299. @item
  8300. @command{gzip} will complain about trailing garbage if asked to
  8301. uncompress a compressed archive on tape, there is an option to turn
  8302. the message off, but it breaks the regularity of simply having to use
  8303. @samp{@var{prog} -d} for decompression. It would be nice if gzip was
  8304. silently ignoring any number of trailing zeros. I'll ask Jean-loup
  8305. Gailly, by sending a copy of this message to him.
  8306. @item
  8307. @command{compress} does not show this problem, but as Jean-loup pointed
  8308. out to Michael, @samp{compress -d} silently adds garbage after
  8309. the result of decompression, which tar ignores because it already
  8310. recognized its end-of-file indicator. So this bug may be safely
  8311. ignored.
  8312. @item
  8313. @samp{gzip -d -q} will be silent about the trailing zeros indeed,
  8314. but will still return an exit status of 2 which tar reports in turn.
  8315. @command{tar} might ignore the exit status returned, but I hate doing
  8316. that, as it weakens the protection @command{tar} offers users against
  8317. other possible problems at decompression time. If @command{gzip} was
  8318. silently skipping trailing zeros @emph{and} also avoiding setting the
  8319. exit status in this innocuous case, that would solve this situation.
  8320. @item
  8321. @command{tar} should become more solid at not stopping to read a pipe at
  8322. the first null block encountered. This inelegantly breaks the pipe.
  8323. @command{tar} should rather drain the pipe out before exiting itself.
  8324. @end itemize
  8325. @xopindex{ignore-zeros, short description}
  8326. @item -i
  8327. @itemx --ignore-zeros
  8328. Ignore blocks of zeros in archive (means EOF).
  8329. The @option{--ignore-zeros} (@option{-i}) option causes @command{tar} to ignore blocks
  8330. of zeros in the archive. Normally a block of zeros indicates the
  8331. end of the archive, but when reading a damaged archive, or one which
  8332. was created by concatenating several archives together, this option
  8333. allows @command{tar} to read the entire archive. This option is not on
  8334. by default because many versions of @command{tar} write garbage after
  8335. the zeroed blocks.
  8336. Note that this option causes @command{tar} to read to the end of the
  8337. archive file, which may sometimes avoid problems when multiple files
  8338. are stored on a single physical tape.
  8339. @xopindex{read-full-records, short description}
  8340. @item -B
  8341. @itemx --read-full-records
  8342. Reblock as we read (for reading 4.2@acronym{BSD} pipes).
  8343. If @option{--read-full-records} is used, @command{tar}
  8344. will not panic if an attempt to read a record from the archive does
  8345. not return a full record. Instead, @command{tar} will keep reading
  8346. until it has obtained a full
  8347. record.
  8348. This option is turned on by default when @command{tar} is reading
  8349. an archive from standard input, or from a remote machine. This is
  8350. because on @acronym{BSD} Unix systems, a read of a pipe will return however
  8351. much happens to be in the pipe, even if it is less than @command{tar}
  8352. requested. If this option was not used, @command{tar} would fail as
  8353. soon as it read an incomplete record from the pipe.
  8354. This option is also useful with the commands for updating an archive.
  8355. @end table
  8356. Tape blocking
  8357. @FIXME{Appropriate options should be moved here from elsewhere.}
  8358. @cindex blocking factor
  8359. @cindex tape blocking
  8360. When handling various tapes or cartridges, you have to take care of
  8361. selecting a proper blocking, that is, the number of disk blocks you
  8362. put together as a single tape block on the tape, without intervening
  8363. tape gaps. A @dfn{tape gap} is a small landing area on the tape
  8364. with no information on it, used for decelerating the tape to a
  8365. full stop, and for later regaining the reading or writing speed.
  8366. When the tape driver starts reading a record, the record has to
  8367. be read whole without stopping, as a tape gap is needed to stop the
  8368. tape motion without loosing information.
  8369. @cindex Exabyte blocking
  8370. @cindex DAT blocking
  8371. Using higher blocking (putting more disk blocks per tape block) will use
  8372. the tape more efficiently as there will be less tape gaps. But reading
  8373. such tapes may be more difficult for the system, as more memory will be
  8374. required to receive at once the whole record. Further, if there is a
  8375. reading error on a huge record, this is less likely that the system will
  8376. succeed in recovering the information. So, blocking should not be too
  8377. low, nor it should be too high. @command{tar} uses by default a blocking of
  8378. 20 for historical reasons, and it does not really matter when reading or
  8379. writing to disk. Current tape technology would easily accommodate higher
  8380. blockings. Sun recommends a blocking of 126 for Exabytes and 96 for DATs.
  8381. We were told that for some DLT drives, the blocking should be a multiple
  8382. of 4Kb, preferably 64Kb (@w{@kbd{-b 128}}) or 256 for decent performance.
  8383. Other manufacturers may use different recommendations for the same tapes.
  8384. This might also depends of the buffering techniques used inside modern
  8385. tape controllers. Some imposes a minimum blocking, or a maximum blocking.
  8386. Others request blocking to be some exponent of two.
  8387. So, there is no fixed rule for blocking. But blocking at read time
  8388. should ideally be the same as blocking used at write time. At one place
  8389. I know, with a wide variety of equipment, they found it best to use a
  8390. blocking of 32 to guarantee that their tapes are fully interchangeable.
  8391. I was also told that, for recycled tapes, prior erasure (by the same
  8392. drive unit that will be used to create the archives) sometimes lowers
  8393. the error rates observed at rewriting time.
  8394. I might also use @option{--number-blocks} instead of
  8395. @option{--block-number}, so @option{--block} will then expand to
  8396. @option{--blocking-factor} unambiguously.
  8397. @node Many
  8398. @section Many Archives on One Tape
  8399. @FIXME{Appropriate options should be moved here from elsewhere.}
  8400. @findex ntape @r{device}
  8401. Most tape devices have two entries in the @file{/dev} directory, or
  8402. entries that come in pairs, which differ only in the minor number for
  8403. this device. Let's take for example @file{/dev/tape}, which often
  8404. points to the only or usual tape device of a given system. There might
  8405. be a corresponding @file{/dev/nrtape} or @file{/dev/ntape}. The simpler
  8406. name is the @emph{rewinding} version of the device, while the name
  8407. having @samp{nr} in it is the @emph{no rewinding} version of the same
  8408. device.
  8409. A rewinding tape device will bring back the tape to its beginning point
  8410. automatically when this device is opened or closed. Since @command{tar}
  8411. opens the archive file before using it and closes it afterwards, this
  8412. means that a simple:
  8413. @smallexample
  8414. $ @kbd{tar cf /dev/tape @var{directory}}
  8415. @end smallexample
  8416. @noindent
  8417. will reposition the tape to its beginning both prior and after saving
  8418. @var{directory} contents to it, thus erasing prior tape contents and
  8419. making it so that any subsequent write operation will destroy what has
  8420. just been saved.
  8421. @cindex tape positioning
  8422. So, a rewinding device is normally meant to hold one and only one file.
  8423. If you want to put more than one @command{tar} archive on a given tape, you
  8424. will need to avoid using the rewinding version of the tape device. You
  8425. will also have to pay special attention to tape positioning. Errors in
  8426. positioning may overwrite the valuable data already on your tape. Many
  8427. people, burnt by past experiences, will only use rewinding devices and
  8428. limit themselves to one file per tape, precisely to avoid the risk of
  8429. such errors. Be fully aware that writing at the wrong position on a
  8430. tape loses all information past this point and most probably until the
  8431. end of the tape, and this destroyed information @emph{cannot} be
  8432. recovered.
  8433. To save @var{directory-1} as a first archive at the beginning of a
  8434. tape, and leave that tape ready for a second archive, you should use:
  8435. @smallexample
  8436. $ @kbd{mt -f /dev/nrtape rewind}
  8437. $ @kbd{tar cf /dev/nrtape @var{directory-1}}
  8438. @end smallexample
  8439. @cindex tape marks
  8440. @dfn{Tape marks} are special magnetic patterns written on the tape
  8441. media, which are later recognizable by the reading hardware. These
  8442. marks are used after each file, when there are many on a single tape.
  8443. An empty file (that is to say, two tape marks in a row) signal the
  8444. logical end of the tape, after which no file exist. Usually,
  8445. non-rewinding tape device drivers will react to the close request issued
  8446. by @command{tar} by first writing two tape marks after your archive, and by
  8447. backspacing over one of these. So, if you remove the tape at that time
  8448. from the tape drive, it is properly terminated. But if you write
  8449. another file at the current position, the second tape mark will be
  8450. erased by the new information, leaving only one tape mark between files.
  8451. So, you may now save @var{directory-2} as a second archive after the
  8452. first on the same tape by issuing the command:
  8453. @smallexample
  8454. $ @kbd{tar cf /dev/nrtape @var{directory-2}}
  8455. @end smallexample
  8456. @noindent
  8457. and so on for all the archives you want to put on the same tape.
  8458. Another usual case is that you do not write all the archives the same
  8459. day, and you need to remove and store the tape between two archive
  8460. sessions. In general, you must remember how many files are already
  8461. saved on your tape. Suppose your tape already has 16 files on it, and
  8462. that you are ready to write the 17th. You have to take care of skipping
  8463. the first 16 tape marks before saving @var{directory-17}, say, by using
  8464. these commands:
  8465. @smallexample
  8466. $ @kbd{mt -f /dev/nrtape rewind}
  8467. $ @kbd{mt -f /dev/nrtape fsf 16}
  8468. $ @kbd{tar cf /dev/nrtape @var{directory-17}}
  8469. @end smallexample
  8470. In all the previous examples, we put aside blocking considerations, but
  8471. you should do the proper things for that as well. @xref{Blocking}.
  8472. @menu
  8473. * Tape Positioning:: Tape Positions and Tape Marks
  8474. * mt:: The @command{mt} Utility
  8475. @end menu
  8476. @node Tape Positioning
  8477. @subsection Tape Positions and Tape Marks
  8478. @UNREVISED
  8479. Just as archives can store more than one file from the file system,
  8480. tapes can store more than one archive file. To keep track of where
  8481. archive files (or any other type of file stored on tape) begin and
  8482. end, tape archive devices write magnetic @dfn{tape marks} on the
  8483. archive media. Tape drives write one tape mark between files,
  8484. two at the end of all the file entries.
  8485. If you think of data as a series of records "rrrr"'s, and tape marks as
  8486. "*"'s, a tape might look like the following:
  8487. @smallexample
  8488. rrrr*rrrrrr*rrrrr*rr*rrrrr**-------------------------
  8489. @end smallexample
  8490. Tape devices read and write tapes using a read/write @dfn{tape
  8491. head}---a physical part of the device which can only access one
  8492. point on the tape at a time. When you use @command{tar} to read or
  8493. write archive data from a tape device, the device will begin reading
  8494. or writing from wherever on the tape the tape head happens to be,
  8495. regardless of which archive or what part of the archive the tape
  8496. head is on. Before writing an archive, you should make sure that no
  8497. data on the tape will be overwritten (unless it is no longer needed).
  8498. Before reading an archive, you should make sure the tape head is at
  8499. the beginning of the archive you want to read. You can do it manually
  8500. via @code{mt} utility (@pxref{mt}). The @code{restore} script does
  8501. that automatically (@pxref{Scripted Restoration}).
  8502. If you want to add new archive file entries to a tape, you should
  8503. advance the tape to the end of the existing file entries, backspace
  8504. over the last tape mark, and write the new archive file. If you were
  8505. to add two archives to the example above, the tape might look like the
  8506. following:
  8507. @smallexample
  8508. rrrr*rrrrrr*rrrrr*rr*rrrrr*rrr*rrrr**----------------
  8509. @end smallexample
  8510. @node mt
  8511. @subsection The @command{mt} Utility
  8512. @UNREVISED
  8513. @FIXME{Is it true that this only works on non-block devices?
  8514. should explain the difference, (fixed or variable).}
  8515. @xref{Blocking Factor}.
  8516. You can use the @command{mt} utility to advance or rewind a tape past a
  8517. specified number of archive files on the tape. This will allow you
  8518. to move to the beginning of an archive before extracting or reading
  8519. it, or to the end of all the archives before writing a new one.
  8520. @FIXME{Why isn't there an "advance 'til you find two tape marks
  8521. together"?}
  8522. The syntax of the @command{mt} command is:
  8523. @smallexample
  8524. @kbd{mt [-f @var{tapename}] @var{operation} [@var{number}]}
  8525. @end smallexample
  8526. where @var{tapename} is the name of the tape device, @var{number} is
  8527. the number of times an operation is performed (with a default of one),
  8528. and @var{operation} is one of the following:
  8529. @FIXME{is there any use for record operations?}
  8530. @table @option
  8531. @item eof
  8532. @itemx weof
  8533. Writes @var{number} tape marks at the current position on the tape.
  8534. @item fsf
  8535. Moves tape position forward @var{number} files.
  8536. @item bsf
  8537. Moves tape position back @var{number} files.
  8538. @item rewind
  8539. Rewinds the tape. (Ignores @var{number}).
  8540. @item offline
  8541. @itemx rewoff1
  8542. Rewinds the tape and takes the tape device off-line. (Ignores @var{number}).
  8543. @item status
  8544. Prints status information about the tape unit.
  8545. @end table
  8546. @FIXME{Is there a better way to frob the spacing on the list?}
  8547. If you don't specify a @var{tapename}, @command{mt} uses the environment
  8548. variable @env{TAPE}; if @env{TAPE} is not set, @command{mt} will use
  8549. the default device specified in your @file{sys/mtio.h} file
  8550. (@code{DEFTAPE} variable). If this is not defined, the program will
  8551. display a descriptive error message and exit with code 1.
  8552. @command{mt} returns a 0 exit status when the operation(s) were
  8553. successful, 1 if the command was unrecognized, and 2 if an operation
  8554. failed.
  8555. @node Using Multiple Tapes
  8556. @section Using Multiple Tapes
  8557. Often you might want to write a large archive, one larger than will fit
  8558. on the actual tape you are using. In such a case, you can run multiple
  8559. @command{tar} commands, but this can be inconvenient, particularly if you
  8560. are using options like @option{--exclude=@var{pattern}} or dumping entire file systems.
  8561. Therefore, @command{tar} provides a special mode for creating
  8562. multi-volume archives.
  8563. @dfn{Multi-volume} archive is a single @command{tar} archive, stored
  8564. on several media volumes of fixed size. Although in this section we will
  8565. often call @samp{volume} a @dfn{tape}, there is absolutely no
  8566. requirement for multi-volume archives to be stored on tapes. Instead,
  8567. they can use whatever media type the user finds convenient, they can
  8568. even be located on files.
  8569. When creating a multi-volume archive, @GNUTAR{} continues to fill
  8570. current volume until it runs out of space, then it switches to
  8571. next volume (usually the operator is queried to replace the tape on
  8572. this point), and continues working on the new volume. This operation
  8573. continues until all requested files are dumped. If @GNUTAR{} detects
  8574. end of media while dumping a file, such a file is archived in split
  8575. form. Some very big files can even be split across several volumes.
  8576. Each volume is itself a valid @GNUTAR{} archive, so it can be read
  8577. without any special options. Consequently any file member residing
  8578. entirely on one volume can be extracted or otherwise operated upon
  8579. without needing the other volume. Sure enough, to extract a split
  8580. member you would need all volumes its parts reside on.
  8581. Multi-volume archives suffer from several limitations. In particular,
  8582. they cannot be compressed.
  8583. @GNUTAR{} is able to create multi-volume archives of two formats
  8584. (@pxref{Formats}): @samp{GNU} and @samp{POSIX}.
  8585. @menu
  8586. * Multi-Volume Archives:: Archives Longer than One Tape or Disk
  8587. * Tape Files:: Tape Files
  8588. * Tarcat:: Concatenate Volumes into a Single Archive
  8589. @end menu
  8590. @node Multi-Volume Archives
  8591. @subsection Archives Longer than One Tape or Disk
  8592. @cindex Multi-volume archives
  8593. @opindex multi-volume
  8594. To create an archive that is larger than will fit on a single unit of
  8595. the media, use the @option{--multi-volume} (@option{-M}) option in conjunction with
  8596. the @option{--create} option (@pxref{create}). A @dfn{multi-volume}
  8597. archive can be manipulated like any other archive (provided the
  8598. @option{--multi-volume} option is specified), but is stored on more
  8599. than one tape or disk.
  8600. When you specify @option{--multi-volume}, @command{tar} does not report an
  8601. error when it comes to the end of an archive volume (when reading), or
  8602. the end of the media (when writing). Instead, it prompts you to load
  8603. a new storage volume. If the archive is on a magnetic tape, you
  8604. should change tapes when you see the prompt; if the archive is on a
  8605. floppy disk, you should change disks; etc.
  8606. @table @option
  8607. @item --multi-volume
  8608. @itemx -M
  8609. Creates a multi-volume archive, when used in conjunction with
  8610. @option{--create} (@option{-c}). To perform any other operation on a multi-volume
  8611. archive, specify @option{--multi-volume} in conjunction with that
  8612. operation.
  8613. For example:
  8614. @smallexample
  8615. $ @kbd{tar --create --multi-volume --file=/dev/tape @var{files}}
  8616. @end smallexample
  8617. @end table
  8618. The method @command{tar} uses to detect end of tape is not perfect, and
  8619. fails on some operating systems or on some devices. If @command{tar}
  8620. cannot detect the end of the tape itself, you can use
  8621. @option{--tape-length} option to inform it about the capacity of the
  8622. tape:
  8623. @anchor{tape-length}
  8624. @table @option
  8625. @opindex tape-length
  8626. @item --tape-length=@var{size}
  8627. @itemx -L @var{size}
  8628. Set maximum length of a volume. The @var{size} argument should then
  8629. be the usable size of the tape in units of 1024 bytes. This option
  8630. selects @option{--multi-volume} automatically. For example:
  8631. @smallexample
  8632. $ @kbd{tar --create --tape-length=41943040 --file=/dev/tape @var{files}}
  8633. @end smallexample
  8634. @end table
  8635. @anchor{change volume prompt}
  8636. When @GNUTAR{} comes to the end of a storage media, it asks you to
  8637. change the volume. The built-in prompt for POSIX locale
  8638. is@footnote{If you run @GNUTAR{} under a different locale, the
  8639. translation to the locale's language will be used.}:
  8640. @smallexample
  8641. Prepare volume #@var{n} for `@var{archive}' and hit return:
  8642. @end smallexample
  8643. @noindent
  8644. where @var{n} is the ordinal number of the volume to be created and
  8645. @var{archive} is archive file or device name.
  8646. When prompting for a new tape, @command{tar} accepts any of the following
  8647. responses:
  8648. @table @kbd
  8649. @item ?
  8650. Request @command{tar} to explain possible responses
  8651. @item q
  8652. Request @command{tar} to exit immediately.
  8653. @item n @var{file-name}
  8654. Request @command{tar} to write the next volume on the file @var{file-name}.
  8655. @item !
  8656. Request @command{tar} to run a subshell. This option can be disabled
  8657. by giving @option{--restrict} command line option to
  8658. @command{tar}@footnote{@xref{--restrict}, for more information about
  8659. this option}.
  8660. @item y
  8661. Request @command{tar} to begin writing the next volume.
  8662. @end table
  8663. (You should only type @samp{y} after you have changed the tape;
  8664. otherwise @command{tar} will write over the volume it just finished.)
  8665. @cindex Volume number file
  8666. @cindex volno file
  8667. @anchor{volno-file}
  8668. @opindex volno-file
  8669. The volume number used by @command{tar} in its tape-changing prompt
  8670. can be changed; if you give the
  8671. @option{--volno-file=@var{file-of-number}} option, then
  8672. @var{file-of-number} should be an non-existing file to be created, or
  8673. else, a file already containing a decimal number. That number will be
  8674. used as the volume number of the first volume written. When
  8675. @command{tar} is finished, it will rewrite the file with the
  8676. now-current volume number. (This does not change the volume number
  8677. written on a tape label, as per @ref{label}, it @emph{only} affects
  8678. the number used in the prompt.)
  8679. @cindex End-of-archive info script
  8680. @cindex Info script
  8681. @anchor{info-script}
  8682. @opindex info-script
  8683. @opindex new-volume-script
  8684. If you want more elaborate behavior than this, you can write a special
  8685. @dfn{new volume script}, that will be responsible for changing the
  8686. volume, and instruct @command{tar} to use it instead of its normal
  8687. prompting procedure:
  8688. @table @option
  8689. @item --info-script=@var{script-name}
  8690. @itemx --new-volume-script=@var{script-name}
  8691. @itemx -F @var{script-name}
  8692. Specify the full name of the volume script to use. The script can be
  8693. used to eject cassettes, or to broadcast messages such as
  8694. @samp{Someone please come change my tape} when performing unattended
  8695. backups.
  8696. @end table
  8697. The @var{script-name} is executed without any command line
  8698. arguments. It inherits @command{tar}'s shell environment.
  8699. Additional data is passed to it via the following
  8700. environment variables:
  8701. @table @env
  8702. @vrindex TAR_VERSION, info script environment variable
  8703. @item TAR_VERSION
  8704. @GNUTAR{} version number.
  8705. @vrindex TAR_ARCHIVE, info script environment variable
  8706. @item TAR_ARCHIVE
  8707. The name of the archive @command{tar} is processing.
  8708. @vrindex TAR_BLOCKING_FACTOR, info script environment variable
  8709. @item TAR_BLOCKING_FACTOR
  8710. Current blocking factor (@pxref{Blocking}.
  8711. @vrindex TAR_VOLUME, info script environment variable
  8712. @item TAR_VOLUME
  8713. Ordinal number of the volume @command{tar} is about to start.
  8714. @vrindex TAR_SUBCOMMAND, info script environment variable
  8715. @item TAR_SUBCOMMAND
  8716. A short option describing the operation @command{tar} is executing
  8717. @xref{Operations}, for a complete list of subcommand options.
  8718. @vrindex TAR_FORMAT, info script environment variable
  8719. @item TAR_FORMAT
  8720. Format of the archive being processed. @xref{Formats}, for a complete
  8721. list of archive format names.
  8722. @vrindex TAR_FD, info script environment variable
  8723. @item TAR_FD
  8724. File descriptor which can be used to communicate the new volume
  8725. name to @command{tar}.
  8726. @end table
  8727. The volume script can instruct @command{tar} to use new archive name,
  8728. by writing in to file descriptor @env{$TAR_FD} (see below for an example).
  8729. If the info script fails, @command{tar} exits; otherwise, it begins
  8730. writing the next volume.
  8731. If you want @command{tar} to cycle through a series of files or tape
  8732. drives, there are three approaches to choose from. First of all, you
  8733. can give @command{tar} multiple @option{--file} options. In this case
  8734. the specified files will be used, in sequence, as the successive
  8735. volumes of the archive. Only when the first one in the sequence needs
  8736. to be used again will @command{tar} prompt for a tape change (or run
  8737. the info script). For example, suppose someone has two tape drives on
  8738. a system named @file{/dev/tape0} and @file{/dev/tape1}. For having
  8739. @GNUTAR{} to switch to the second drive when it needs to write the
  8740. second tape, and then back to the first tape, etc., just do either of:
  8741. @smallexample
  8742. $ @kbd{tar --create --multi-volume --file=/dev/tape0 --file=/dev/tape1 @var{files}}
  8743. $ @kbd{tar cMff /dev/tape0 /dev/tape1 @var{files}}
  8744. @end smallexample
  8745. The second method is to use the @samp{n} response to the tape-change
  8746. prompt.
  8747. Finally, the most flexible approach is to use a volume script, that
  8748. writes new archive name to the file descriptor @env{$TAR_FD}. For example, the
  8749. following volume script will create a series of archive files, named
  8750. @file{@var{archive}-@var{vol}}, where @var{archive} is the name of the
  8751. archive being created (as given by @option{--file} option) and
  8752. @var{vol} is the ordinal number of the archive being created:
  8753. @smallexample
  8754. @group
  8755. #! /bin/sh
  8756. echo Preparing volume $TAR_VOLUME of $TAR_ARCHIVE.
  8757. name=`expr $TAR_ARCHIVE : '\(.*\)-.*'`
  8758. case $TAR_SUBCOMMAND in
  8759. -c) ;;
  8760. -d|-x|-t) test -r $@{name:-$TAR_ARCHIVE@}-$TAR_VOLUME || exit 1
  8761. ;;
  8762. *) exit 1
  8763. esac
  8764. echo $@{name:-$TAR_ARCHIVE@}-$TAR_VOLUME >&$TAR_FD
  8765. @end group
  8766. @end smallexample
  8767. The same script can be used while listing, comparing or extracting
  8768. from the created archive. For example:
  8769. @smallexample
  8770. @group
  8771. # @r{Create a multi-volume archive:}
  8772. $ @kbd{tar -c -L1024 -f archive.tar -F new-volume .}
  8773. # @r{Extract from the created archive:}
  8774. $ @kbd{tar -x -f archive.tar -F new-volume .}
  8775. @end group
  8776. @end smallexample
  8777. @noindent
  8778. Notice, that the first command had to use @option{-L} option, since
  8779. otherwise @GNUTAR{} will end up writing everything to file
  8780. @file{archive.tar}.
  8781. You can read each individual volume of a multi-volume archive as if it
  8782. were an archive by itself. For example, to list the contents of one
  8783. volume, use @option{--list}, without @option{--multi-volume} specified.
  8784. To extract an archive member from one volume (assuming it is described
  8785. that volume), use @option{--extract}, again without
  8786. @option{--multi-volume}.
  8787. If an archive member is split across volumes (i.e., its entry begins on
  8788. one volume of the media and ends on another), you need to specify
  8789. @option{--multi-volume} to extract it successfully. In this case, you
  8790. should load the volume where the archive member starts, and use
  8791. @samp{tar --extract --multi-volume}---@command{tar} will prompt for later
  8792. volumes as it needs them. @xref{extracting archives}, for more
  8793. information about extracting archives.
  8794. Multi-volume archives can be modified like any other archive. To add
  8795. files to a multi-volume archive, you need to only mount the last
  8796. volume of the archive media (and new volumes, if needed). For all
  8797. other operations, you need to use the entire archive.
  8798. If a multi-volume archive was labeled using
  8799. @option{--label=@var{archive-label}} (@pxref{label}) when it was
  8800. created, @command{tar} will not automatically label volumes which are
  8801. added later. To label subsequent volumes, specify
  8802. @option{--label=@var{archive-label}} again in conjunction with the
  8803. @option{--append}, @option{--update} or @option{--concatenate} operation.
  8804. Notice that multi-volume support is a GNU extension and the archives
  8805. created in this mode should be read only using @GNUTAR{}. If you
  8806. absolutely have to process such archives using a third-party @command{tar}
  8807. implementation, read @ref{Split Recovery}.
  8808. @node Tape Files
  8809. @subsection Tape Files
  8810. @UNREVISED
  8811. To give the archive a name which will be recorded in it, use the
  8812. @option{--label=@var{volume-label}} (@option{-V @var{volume-label}})
  8813. option. This will write a special block identifying
  8814. @var{volume-label} as the name of the archive to the front of the
  8815. archive which will be displayed when the archive is listed with
  8816. @option{--list}. If you are creating a multi-volume archive with
  8817. @option{--multi-volume} (@pxref{Using Multiple Tapes}), then the
  8818. volume label will have @samp{Volume @var{nnn}} appended to the name
  8819. you give, where @var{nnn} is the number of the volume of the archive.
  8820. (If you use the @option{--label=@var{volume-label}}) option when
  8821. reading an archive, it checks to make sure the label on the tape
  8822. matches the one you give. @xref{label}.
  8823. When @command{tar} writes an archive to tape, it creates a single
  8824. tape file. If multiple archives are written to the same tape, one
  8825. after the other, they each get written as separate tape files. When
  8826. extracting, it is necessary to position the tape at the right place
  8827. before running @command{tar}. To do this, use the @command{mt} command.
  8828. For more information on the @command{mt} command and on the organization
  8829. of tapes into a sequence of tape files, see @ref{mt}.
  8830. People seem to often do:
  8831. @smallexample
  8832. @kbd{--label="@var{some-prefix} `date +@var{some-format}`"}
  8833. @end smallexample
  8834. or such, for pushing a common date in all volumes or an archive set.
  8835. @node Tarcat
  8836. @subsection Concatenate Volumes into a Single Archive
  8837. @pindex tarcat
  8838. Sometimes it is necessary to convert existing @GNUTAR{} multi-volume
  8839. archive to a single @command{tar} archive. Simply concatenating all
  8840. volumes into one will not work, since each volume carries an additional
  8841. information at the beginning. @GNUTAR{} is shipped with the shell
  8842. script @command{tarcat} designed for this purpose.
  8843. The script takes a list of files comprising a multi-volume archive
  8844. and creates the resulting archive at the standard output. For example:
  8845. @smallexample
  8846. @kbd{tarcat vol.1 vol.2 vol.3 | tar tf -}
  8847. @end smallexample
  8848. The script implements a simple heuristics to determine the format of
  8849. the first volume file and to decide how to process the rest of the
  8850. files. However, it makes no attempt to verify whether the files are
  8851. given in order or even if they are valid @command{tar} archives.
  8852. It uses @command{dd} and does not filter its standard error, so you
  8853. will usually see lots of spurious messages.
  8854. @FIXME{The script is not installed. Should we install it?}
  8855. @node label
  8856. @section Including a Label in the Archive
  8857. @cindex Labeling an archive
  8858. @cindex Labels on the archive media
  8859. @cindex Labeling multi-volume archives
  8860. @UNREVISED
  8861. @opindex label
  8862. To avoid problems caused by misplaced paper labels on the archive
  8863. media, you can include a @dfn{label} entry---an archive member which
  8864. contains the name of the archive---in the archive itself. Use the
  8865. @option{--label=@var{archive-label}} (@option{-V @var{archive-label}})
  8866. option in conjunction with the @option{--create} operation to include
  8867. a label entry in the archive as it is being created.
  8868. @table @option
  8869. @item --label=@var{archive-label}
  8870. @itemx -V @var{archive-label}
  8871. Includes an @dfn{archive-label} at the beginning of the archive when
  8872. the archive is being created, when used in conjunction with the
  8873. @option{--create} operation. Checks to make sure the archive label
  8874. matches the one specified (when used in conjunction with any other
  8875. operation.
  8876. @end table
  8877. If you create an archive using both
  8878. @option{--label=@var{archive-label}} (@option{-V @var{archive-label}})
  8879. and @option{--multi-volume} (@option{-M}), each volume of the archive
  8880. will have an archive label of the form @samp{@var{archive-label}
  8881. Volume @var{n}}, where @var{n} is 1 for the first volume, 2 for the
  8882. next, and so on. @xref{Using Multiple Tapes}, for information on
  8883. creating multiple volume archives.
  8884. @cindex Volume label, listing
  8885. @cindex Listing volume label
  8886. The volume label will be displayed by @option{--list} along with
  8887. the file contents. If verbose display is requested, it will also be
  8888. explicitly marked as in the example below:
  8889. @smallexample
  8890. @group
  8891. $ @kbd{tar --verbose --list --file=iamanarchive}
  8892. V--------- 0 0 0 1992-03-07 12:01 iamalabel--Volume Header--
  8893. -rw-r--r-- ringo user 40 1990-05-21 13:30 iamafilename
  8894. @end group
  8895. @end smallexample
  8896. @opindex test-label
  8897. @anchor{--test-label option}
  8898. However, @option{--list} option will cause listing entire
  8899. contents of the archive, which may be undesirable (for example, if the
  8900. archive is stored on a tape). You can request checking only the volume
  8901. by specifying @option{--test-label} option. This option reads only the
  8902. first block of an archive, so it can be used with slow storage
  8903. devices. For example:
  8904. @smallexample
  8905. @group
  8906. $ @kbd{tar --test-label --file=iamanarchive}
  8907. iamalabel
  8908. @end group
  8909. @end smallexample
  8910. If @option{--test-label} is used with a single command line
  8911. argument, @command{tar} compares the volume label with the
  8912. argument. It exits with code 0 if the two strings match, and with code
  8913. 2 otherwise. In this case no output is displayed. For example:
  8914. @smallexample
  8915. @group
  8916. $ @kbd{tar --test-label --file=iamanarchive 'iamalable'}
  8917. @result{} 0
  8918. $ @kbd{tar --test-label --file=iamanarchive 'iamalable' alabel}
  8919. @result{} 1
  8920. @end group
  8921. @end smallexample
  8922. If you request any operation, other than @option{--create}, along
  8923. with using @option{--label} option, @command{tar} will first check if
  8924. the archive label matches the one specified and will refuse to proceed
  8925. if it does not. Use this as a safety precaution to avoid accidentally
  8926. overwriting existing archives. For example, if you wish to add files
  8927. to @file{archive}, presumably labeled with string @samp{My volume},
  8928. you will get:
  8929. @smallexample
  8930. @group
  8931. $ @kbd{tar -rf archive --label 'My volume' .}
  8932. tar: Archive not labeled to match `My volume'
  8933. @end group
  8934. @end smallexample
  8935. @noindent
  8936. in case its label does not match. This will work even if
  8937. @file{archive} is not labeled at all.
  8938. Similarly, @command{tar} will refuse to list or extract the
  8939. archive if its label doesn't match the @var{archive-label}
  8940. specified. In those cases, @var{archive-label} argument is interpreted
  8941. as a globbing-style pattern which must match the actual magnetic
  8942. volume label. @xref{exclude}, for a precise description of how match
  8943. is attempted@footnote{Previous versions of @command{tar} used full
  8944. regular expression matching, or before that, only exact string
  8945. matching, instead of wildcard matchers. We decided for the sake of
  8946. simplicity to use a uniform matching device through
  8947. @command{tar}.}. If the switch @option{--multi-volume} (@option{-M}) is being used,
  8948. the volume label matcher will also suffix @var{archive-label} by
  8949. @w{@samp{ Volume [1-9]*}} if the initial match fails, before giving
  8950. up. Since the volume numbering is automatically added in labels at
  8951. creation time, it sounded logical to equally help the user taking care
  8952. of it when the archive is being read.
  8953. The @option{--label} was once called @option{--volume}, but is not
  8954. available under that name anymore.
  8955. You can also use @option{--label} to get a common information on
  8956. all tapes of a series. For having this information different in each
  8957. series created through a single script used on a regular basis, just
  8958. manage to get some date string as part of the label. For example:
  8959. @smallexample
  8960. @group
  8961. $ @kbd{tar cfMV /dev/tape "Daily backup for `date +%Y-%m-%d`"}
  8962. $ @kbd{tar --create --file=/dev/tape --multi-volume \
  8963. --volume="Daily backup for `date +%Y-%m-%d`"}
  8964. @end group
  8965. @end smallexample
  8966. Also note that each label has its own date and time, which corresponds
  8967. to when @GNUTAR{} initially attempted to write it,
  8968. often soon after the operator launches @command{tar} or types the
  8969. carriage return telling that the next tape is ready. Comparing date
  8970. labels does give an idea of tape throughput only if the delays for
  8971. rewinding tapes and the operator switching them were negligible, which
  8972. is usually not the case.
  8973. @node verify
  8974. @section Verifying Data as It is Stored
  8975. @cindex Verifying a write operation
  8976. @cindex Double-checking a write operation
  8977. @table @option
  8978. @item -W
  8979. @itemx --verify
  8980. @opindex verify, short description
  8981. Attempt to verify the archive after writing.
  8982. @end table
  8983. This option causes @command{tar} to verify the archive after writing it.
  8984. Each volume is checked after it is written, and any discrepancies
  8985. are recorded on the standard error output.
  8986. Verification requires that the archive be on a back-space-able medium.
  8987. This means pipes, some cartridge tape drives, and some other devices
  8988. cannot be verified.
  8989. You can insure the accuracy of an archive by comparing files in the
  8990. system with archive members. @command{tar} can compare an archive to the
  8991. file system as the archive is being written, to verify a write
  8992. operation, or can compare a previously written archive, to insure that
  8993. it is up to date.
  8994. @xopindex{verify, using with @option{--create}}
  8995. @xopindex{create, using with @option{--verify}}
  8996. To check for discrepancies in an archive immediately after it is
  8997. written, use the @option{--verify} (@option{-W}) option in conjunction with
  8998. the @option{--create} operation. When this option is
  8999. specified, @command{tar} checks archive members against their counterparts
  9000. in the file system, and reports discrepancies on the standard error.
  9001. To verify an archive, you must be able to read it from before the end
  9002. of the last written entry. This option is useful for detecting data
  9003. errors on some tapes. Archives written to pipes, some cartridge tape
  9004. drives, and some other devices cannot be verified.
  9005. One can explicitly compare an already made archive with the file
  9006. system by using the @option{--compare} (@option{--diff}, @option{-d})
  9007. option, instead of using the more automatic @option{--verify} option.
  9008. @xref{compare}.
  9009. Note that these two options have a slightly different intent. The
  9010. @option{--compare} option checks how identical are the logical contents of some
  9011. archive with what is on your disks, while the @option{--verify} option is
  9012. really for checking if the physical contents agree and if the recording
  9013. media itself is of dependable quality. So, for the @option{--verify}
  9014. operation, @command{tar} tries to defeat all in-memory cache pertaining to
  9015. the archive, while it lets the speed optimization undisturbed for the
  9016. @option{--compare} option. If you nevertheless use @option{--compare} for
  9017. media verification, you may have to defeat the in-memory cache yourself,
  9018. maybe by opening and reclosing the door latch of your recording unit,
  9019. forcing some doubt in your operating system about the fact this is really
  9020. the same volume as the one just written or read.
  9021. The @option{--verify} option would not be necessary if drivers were indeed
  9022. able to detect dependably all write failures. This sometimes require many
  9023. magnetic heads, some able to read after the writes occurred. One would
  9024. not say that drivers unable to detect all cases are necessarily flawed,
  9025. as long as programming is concerned.
  9026. The @option{--verify} (@option{-W}) option will not work in
  9027. conjunction with the @option{--multi-volume} (@option{-M}) option or
  9028. the @option{--append} (@option{-r}), @option{--update} (@option{-u})
  9029. and @option{--delete} operations. @xref{Operations}, for more
  9030. information on these operations.
  9031. Also, since @command{tar} normally strips leading @samp{/} from file
  9032. names (@pxref{absolute}), a command like @samp{tar --verify -cf
  9033. /tmp/foo.tar /etc} will work as desired only if the working directory is
  9034. @file{/}, as @command{tar} uses the archive's relative member names
  9035. (e.g., @file{etc/motd}) when verifying the archive.
  9036. @node Write Protection
  9037. @section Write Protection
  9038. Almost all tapes and diskettes, and in a few rare cases, even disks can
  9039. be @dfn{write protected}, to protect data on them from being changed.
  9040. Once an archive is written, you should write protect the media to prevent
  9041. the archive from being accidentally overwritten or deleted. (This will
  9042. protect the archive from being changed with a tape or floppy drive---it
  9043. will not protect it from magnet fields or other physical hazards).
  9044. The write protection device itself is usually an integral part of the
  9045. physical media, and can be a two position (write enabled/write
  9046. disabled) switch, a notch which can be popped out or covered, a ring
  9047. which can be removed from the center of a tape reel, or some other
  9048. changeable feature.
  9049. @node Changes
  9050. @appendix Changes
  9051. This appendix lists some important user-visible changes between
  9052. version @GNUTAR{} @value{VERSION} and previous versions. An up-to-date
  9053. version of this document is available at
  9054. @uref{http://www.gnu.org/@/software/@/tar/manual/changes.html,the
  9055. @GNUTAR{} documentation page}.
  9056. @table @asis
  9057. @item Use of globbing patterns when listing and extracting.
  9058. Previous versions of GNU tar assumed shell-style globbing when
  9059. extracting from or listing an archive. For example:
  9060. @smallexample
  9061. $ @kbd{tar xf foo.tar '*.c'}
  9062. @end smallexample
  9063. would extract all files whose names end in @samp{.c}. This behavior
  9064. was not documented and was incompatible with traditional tar
  9065. implementations. Therefore, starting from version 1.15.91, GNU tar
  9066. no longer uses globbing by default. For example, the above invocation
  9067. is now interpreted as a request to extract from the archive the file
  9068. named @file{*.c}.
  9069. To facilitate transition to the new behavior for those users who got
  9070. used to the previous incorrect one, @command{tar} will print a warning
  9071. if it finds out that a requested member was not found in the archive
  9072. and its name looks like a globbing pattern. For example:
  9073. @smallexample
  9074. $ @kbd{tar xf foo.tar '*.c'}
  9075. tar: Pattern matching characters used in file names. Please,
  9076. tar: use --wildcards to enable pattern matching, or --no-wildcards to
  9077. tar: suppress this warning.
  9078. tar: *.c: Not found in archive
  9079. tar: Error exit delayed from previous errors
  9080. @end smallexample
  9081. To treat member names as globbing patterns, use --wildcards option.
  9082. If you want to tar to mimic the behavior of versions prior to 1.15.91,
  9083. add this option to your @env{TAR_OPTIONS} variable.
  9084. @xref{wildcards}, for the detailed discussion of the use of globbing
  9085. patterns by @GNUTAR{}.
  9086. @item Use of short option @option{-o}.
  9087. Earlier versions of @GNUTAR{} understood @option{-o} command line
  9088. option as a synonym for @option{--old-archive}.
  9089. @GNUTAR{} starting from version 1.13.90 understands this option as
  9090. a synonym for @option{--no-same-owner}. This is compatible with
  9091. UNIX98 @command{tar} implementations.
  9092. However, to facilitate transition, @option{-o} option retains its
  9093. old semantics when it is used with one of archive-creation commands.
  9094. Users are encouraged to use @option{--format=oldgnu} instead.
  9095. It is especially important, since versions of @acronym{GNU} Automake
  9096. up to and including 1.8.4 invoke tar with this option to produce
  9097. distribution tarballs. @xref{Formats,v7}, for the detailed discussion
  9098. of this issue and its implications.
  9099. @FIXME{Change the first argument to tar-formats when the new Automake is
  9100. out. The proposition to add @anchor{} to the appropriate place of its
  9101. docs was accepted by Automake people --Sergey 2006-05-25}.
  9102. @xref{Options, tar-v7, Changing Automake's Behavior,
  9103. automake, GNU Automake}, for a description on how to use various
  9104. archive formats with @command{automake}.
  9105. Future versions of @GNUTAR{} will understand @option{-o} only as a
  9106. synonym for @option{--no-same-owner}.
  9107. @item Use of short option @option{-l}
  9108. Earlier versions of @GNUTAR{} understood @option{-l} option as a
  9109. synonym for @option{--one-file-system}. Since such usage contradicted
  9110. to UNIX98 specification and harmed compatibility with other
  9111. implementation, it was declared deprecated in version 1.14. However,
  9112. to facilitate transition to its new semantics, it was supported by
  9113. versions 1.15 and 1.15.90. The present use of @option{-l} as a short
  9114. variant of @option{--check-links} was introduced in version 1.15.91.
  9115. @item Use of options @option{--portability} and @option{--old-archive}
  9116. These options are deprecated. Please use @option{--format=v7} instead.
  9117. @item Use of option @option{--posix}
  9118. This option is deprecated. Please use @option{--format=posix} instead.
  9119. @end table
  9120. @node Configuring Help Summary
  9121. @appendix Configuring Help Summary
  9122. Running @kbd{tar --help} displays the short @command{tar} option
  9123. summary (@pxref{help}). This summary is organized by @dfn{groups} of
  9124. semantically close options. The options within each group are printed
  9125. in the following order: a short option, eventually followed by a list
  9126. of corresponding long option names, followed by a short description of
  9127. the option. For example, here is an excerpt from the actual @kbd{tar
  9128. --help} output:
  9129. @verbatim
  9130. Main operation mode:
  9131. -A, --catenate, --concatenate append tar files to an archive
  9132. -c, --create create a new archive
  9133. -d, --diff, --compare find differences between archive and
  9134. file system
  9135. --delete delete from the archive
  9136. @end verbatim
  9137. @vrindex ARGP_HELP_FMT, environment variable
  9138. The exact visual representation of the help output is configurable via
  9139. @env{ARGP_HELP_FMT} environment variable. The value of this variable
  9140. is a comma-separated list of @dfn{format variable} assignments. There
  9141. are two kinds of format variables. An @dfn{offset variable} keeps the
  9142. offset of some part of help output text from the leftmost column on
  9143. the screen. A @dfn{boolean} variable is a flag that toggles some
  9144. output feature on or off. Depending on the type of the corresponding
  9145. variable, there are two kinds of assignments:
  9146. @table @asis
  9147. @item Offset assignment
  9148. The assignment to an offset variable has the following syntax:
  9149. @smallexample
  9150. @var{variable}=@var{value}
  9151. @end smallexample
  9152. @noindent
  9153. where @var{variable} is the variable name, and @var{value} is a
  9154. numeric value to be assigned to the variable.
  9155. @item Boolean assignment
  9156. To assign @code{true} value to a variable, simply put this variable name. To
  9157. assign @code{false} value, prefix the variable name with @samp{no-}. For
  9158. example:
  9159. @smallexample
  9160. @group
  9161. # Assign @code{true} value:
  9162. dup-args
  9163. # Assign @code{false} value:
  9164. no-dup-args
  9165. @end group
  9166. @end smallexample
  9167. @end table
  9168. Following variables are declared:
  9169. @deftypevr {Help Output} boolean dup-args
  9170. If true, arguments for an option are shown with both short and long
  9171. options, even when a given option has both forms, for example:
  9172. @smallexample
  9173. -f ARCHIVE, --file=ARCHIVE use archive file or device ARCHIVE
  9174. @end smallexample
  9175. If false, then if an option has both short and long forms, the
  9176. argument is only shown with the long one, for example:
  9177. @smallexample
  9178. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9179. @end smallexample
  9180. @noindent
  9181. and a message indicating that the argument is applicable to both
  9182. forms is printed below the options. This message can be disabled
  9183. using @code{dup-args-note} (see below).
  9184. The default is false.
  9185. @end deftypevr
  9186. @deftypevr {Help Output} boolean dup-args-note
  9187. If this variable is true, which is the default, the following notice
  9188. is displayed at the end of the help output:
  9189. @quotation
  9190. Mandatory or optional arguments to long options are also mandatory or
  9191. optional for any corresponding short options.
  9192. @end quotation
  9193. Setting @code{no-dup-args-note} inhibits this message. Normally, only one of
  9194. variables @code{dup-args} or @code{dup-args-note} should be set.
  9195. @end deftypevr
  9196. @deftypevr {Help Output} offset short-opt-col
  9197. Column in which short options start. Default is 2.
  9198. @smallexample
  9199. @group
  9200. $ @kbd{tar --help|grep ARCHIVE}
  9201. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9202. $ @kbd{ARGP_HELP_FMT=short-opt-col=6 tar --help|grep ARCHIVE}
  9203. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9204. @end group
  9205. @end smallexample
  9206. @end deftypevr
  9207. @deftypevr {Help Output} offset long-opt-col
  9208. Column in which long options start. Default is 6. For example:
  9209. @smallexample
  9210. @group
  9211. $ @kbd{tar --help|grep ARCHIVE}
  9212. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9213. $ @kbd{ARGP_HELP_FMT=long-opt-col=16 tar --help|grep ARCHIVE}
  9214. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9215. @end group
  9216. @end smallexample
  9217. @end deftypevr
  9218. @deftypevr {Help Output} offset doc-opt-col
  9219. Column in which @dfn{doc options} start. A doc option isn't actually
  9220. an option, but rather an arbitrary piece of documentation that is
  9221. displayed in much the same manner as the options. For example, in
  9222. the description of @option{--format} option:
  9223. @smallexample
  9224. @group
  9225. -H, --format=FORMAT create archive of the given format.
  9226. FORMAT is one of the following:
  9227. gnu GNU tar 1.13.x format
  9228. oldgnu GNU format as per tar <= 1.12
  9229. pax POSIX 1003.1-2001 (pax) format
  9230. posix same as pax
  9231. ustar POSIX 1003.1-1988 (ustar) format
  9232. v7 old V7 tar format
  9233. @end group
  9234. @end smallexample
  9235. @noindent
  9236. the format names are doc options. Thus, if you set
  9237. @kbd{ARGP_HELP_FMT=doc-opt-col=6} the above part of the help output
  9238. will look as follows:
  9239. @smallexample
  9240. @group
  9241. -H, --format=FORMAT create archive of the given format.
  9242. FORMAT is one of the following:
  9243. gnu GNU tar 1.13.x format
  9244. oldgnu GNU format as per tar <= 1.12
  9245. pax POSIX 1003.1-2001 (pax) format
  9246. posix same as pax
  9247. ustar POSIX 1003.1-1988 (ustar) format
  9248. v7 old V7 tar format
  9249. @end group
  9250. @end smallexample
  9251. @end deftypevr
  9252. @deftypevr {Help Output} offset opt-doc-col
  9253. Column in which option description starts. Default is 29.
  9254. @smallexample
  9255. @group
  9256. $ @kbd{tar --help|grep ARCHIVE}
  9257. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9258. $ @kbd{ARGP_HELP_FMT=opt-doc-col=19 tar --help|grep ARCHIVE}
  9259. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9260. $ @kbd{ARGP_HELP_FMT=opt-doc-col=9 tar --help|grep ARCHIVE}
  9261. -f, --file=ARCHIVE
  9262. use archive file or device ARCHIVE
  9263. @end group
  9264. @end smallexample
  9265. @noindent
  9266. Notice, that the description starts on a separate line if
  9267. @code{opt-doc-col} value is too small.
  9268. @end deftypevr
  9269. @deftypevr {Help Output} offset header-col
  9270. Column in which @dfn{group headers} are printed. A group header is a
  9271. descriptive text preceding an option group. For example, in the
  9272. following text:
  9273. @verbatim
  9274. Main operation mode:
  9275. -A, --catenate, --concatenate append tar files to
  9276. an archive
  9277. -c, --create create a new archive
  9278. @end verbatim
  9279. @noindent
  9280. @samp{Main operation mode:} is the group header.
  9281. The default value is 1.
  9282. @end deftypevr
  9283. @deftypevr {Help Output} offset usage-indent
  9284. Indentation of wrapped usage lines. Affects @option{--usage}
  9285. output. Default is 12.
  9286. @end deftypevr
  9287. @deftypevr {Help Output} offset rmargin
  9288. Right margin of the text output. Used for wrapping.
  9289. @end deftypevr
  9290. @node Fixing Snapshot Files
  9291. @appendix Fixing Snapshot Files
  9292. @include tar-snapshot-edit.texi
  9293. @node Tar Internals
  9294. @appendix Tar Internals
  9295. @include intern.texi
  9296. @node Genfile
  9297. @appendix Genfile
  9298. @include genfile.texi
  9299. @node Free Software Needs Free Documentation
  9300. @appendix Free Software Needs Free Documentation
  9301. @include freemanuals.texi
  9302. @node Copying This Manual
  9303. @appendix Copying This Manual
  9304. @menu
  9305. * GNU Free Documentation License:: License for copying this manual
  9306. @end menu
  9307. @include fdl.texi
  9308. @node Index of Command Line Options
  9309. @appendix Index of Command Line Options
  9310. This appendix contains an index of all @GNUTAR{} long command line
  9311. options. The options are listed without the preceding double-dash.
  9312. For a cross-reference of short command line options, @ref{Short Option Summary}.
  9313. @printindex op
  9314. @node Index
  9315. @appendix Index
  9316. @printindex cp
  9317. @summarycontents
  9318. @contents
  9319. @bye
  9320. @c Local variables:
  9321. @c texinfo-column-for-description: 32
  9322. @c End: