4
0

tar.texi 426 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621
  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-null}
  2294. @item --no-null
  2295. If the @option{--null} option was given previously, this option
  2296. cancels its effect, so that any following @option{--files-from}
  2297. options will expect their file lists to be newline-terminated.
  2298. @opsummary{no-overwrite-dir}
  2299. @item --no-overwrite-dir
  2300. Preserve metadata of existing directories when extracting files
  2301. from an archive. @xref{Overwrite Old Files}.
  2302. @opsummary{no-quote-chars}
  2303. @item --no-quote-chars=@var{string}
  2304. Remove characters listed in @var{string} from the list of quoted
  2305. characters set by the previous @option{--quote-chars} option
  2306. (@pxref{quoting styles}).
  2307. @opsummary{no-recursion}
  2308. @item --no-recursion
  2309. With this option, @command{tar} will not recurse into directories.
  2310. @xref{recurse}.
  2311. @opsummary{no-same-owner}
  2312. @item --no-same-owner
  2313. @itemx -o
  2314. When extracting an archive, do not attempt to preserve the owner
  2315. specified in the @command{tar} archive. This the default behavior
  2316. for ordinary users.
  2317. @opsummary{no-same-permissions}
  2318. @item --no-same-permissions
  2319. When extracting an archive, subtract the user's umask from files from
  2320. the permissions specified in the archive. This is the default behavior
  2321. for ordinary users.
  2322. @opsummary{no-unquote}
  2323. @item --no-unquote
  2324. Treat all input file or member names literally, do not interpret
  2325. escape sequences. @xref{input name quoting}.
  2326. @opsummary{no-wildcards}
  2327. @item --no-wildcards
  2328. Do not use wildcards.
  2329. @xref{controlling pattern-matching}.
  2330. @opsummary{no-wildcards-match-slash}
  2331. @item --no-wildcards-match-slash
  2332. Wildcards do not match @samp{/}.
  2333. @xref{controlling pattern-matching}.
  2334. @opsummary{null}
  2335. @item --null
  2336. When @command{tar} is using the @option{--files-from} option, this option
  2337. instructs @command{tar} to expect file names terminated with @acronym{NUL}, so
  2338. @command{tar} can correctly work with file names that contain newlines.
  2339. @xref{nul}.
  2340. @opsummary{numeric-owner}
  2341. @item --numeric-owner
  2342. This option will notify @command{tar} that it should use numeric user
  2343. and group IDs when creating a @command{tar} file, rather than names.
  2344. @xref{Attributes}.
  2345. @item -o
  2346. The function of this option depends on the action @command{tar} is
  2347. performing. When extracting files, @option{-o} is a synonym for
  2348. @option{--no-same-owner}, i.e., it prevents @command{tar} from
  2349. restoring ownership of files being extracted.
  2350. When creating an archive, it is a synonym for
  2351. @option{--old-archive}. This behavior is for compatibility
  2352. with previous versions of @GNUTAR{}, and will be
  2353. removed in future releases.
  2354. @xref{Changes}, for more information.
  2355. @opsummary{occurrence}
  2356. @item --occurrence[=@var{number}]
  2357. This option can be used in conjunction with one of the subcommands
  2358. @option{--delete}, @option{--diff}, @option{--extract} or
  2359. @option{--list} when a list of files is given either on the command
  2360. line or via @option{-T} option.
  2361. This option instructs @command{tar} to process only the @var{number}th
  2362. occurrence of each named file. @var{Number} defaults to 1, so
  2363. @smallexample
  2364. tar -x -f archive.tar --occurrence filename
  2365. @end smallexample
  2366. @noindent
  2367. will extract the first occurrence of the member @file{filename} from @file{archive.tar}
  2368. and will terminate without scanning to the end of the archive.
  2369. @opsummary{old-archive}
  2370. @item --old-archive
  2371. Synonym for @option{--format=v7}.
  2372. @opsummary{one-file-system}
  2373. @item --one-file-system
  2374. Used when creating an archive. Prevents @command{tar} from recursing into
  2375. directories that are on different file systems from the current
  2376. directory.
  2377. @opsummary{overwrite}
  2378. @item --overwrite
  2379. Overwrite existing files and directory metadata when extracting files
  2380. from an archive. @xref{Overwrite Old Files}.
  2381. @opsummary{overwrite-dir}
  2382. @item --overwrite-dir
  2383. Overwrite the metadata of existing directories when extracting files
  2384. from an archive. @xref{Overwrite Old Files}.
  2385. @opsummary{owner}
  2386. @item --owner=@var{user}
  2387. Specifies that @command{tar} should use @var{user} as the owner of members
  2388. when creating archives, instead of the user associated with the source
  2389. file. @var{user} is first decoded as a user symbolic name, but if
  2390. this interpretation fails, it has to be a decimal numeric user @acronym{ID}.
  2391. @xref{override}.
  2392. This option does not affect extraction from archives.
  2393. @opsummary{pax-option}
  2394. @item --pax-option=@var{keyword-list}
  2395. This option is meaningful only with @acronym{POSIX.1-2001} archives
  2396. (@pxref{posix}). It modifies the way @command{tar} handles the
  2397. extended header keywords. @var{Keyword-list} is a comma-separated
  2398. list of keyword options. @xref{PAX keywords}, for a detailed
  2399. discussion.
  2400. @opsummary{portability}
  2401. @item --portability
  2402. @itemx --old-archive
  2403. Synonym for @option{--format=v7}.
  2404. @opsummary{posix}
  2405. @item --posix
  2406. Same as @option{--format=posix}.
  2407. @opsummary{preserve}
  2408. @item --preserve
  2409. Synonymous with specifying both @option{--preserve-permissions} and
  2410. @option{--same-order}. @xref{Setting Access Permissions}.
  2411. @opsummary{preserve-order}
  2412. @item --preserve-order
  2413. (See @option{--same-order}; @pxref{Reading}.)
  2414. @opsummary{preserve-permissions}
  2415. @opsummary{same-permissions}
  2416. @item --preserve-permissions
  2417. @itemx --same-permissions
  2418. @itemx -p
  2419. When @command{tar} is extracting an archive, it normally subtracts the
  2420. users' umask from the permissions specified in the archive and uses
  2421. that number as the permissions to create the destination file.
  2422. Specifying this option instructs @command{tar} that it should use the
  2423. permissions directly from the archive. @xref{Setting Access Permissions}.
  2424. @opsummary{quote-chars}
  2425. @item --quote-chars=@var{string}
  2426. Always quote characters from @var{string}, even if the selected
  2427. quoting style would not quote them (@pxref{quoting styles}).
  2428. @opsummary{quoting-style}
  2429. @item --quoting-style=@var{style}
  2430. Set quoting style to use when printing member and file names
  2431. (@pxref{quoting styles}). Valid @var{style} values are:
  2432. @code{literal}, @code{shell}, @code{shell-always}, @code{c},
  2433. @code{escape}, @code{locale}, and @code{clocale}. Default quoting
  2434. style is @code{escape}, unless overridden while configuring the
  2435. package.
  2436. @opsummary{read-full-records}
  2437. @item --read-full-records
  2438. @itemx -B
  2439. Specifies that @command{tar} should reblock its input, for reading
  2440. from pipes on systems with buggy implementations. @xref{Reading}.
  2441. @opsummary{record-size}
  2442. @item --record-size=@var{size}
  2443. Instructs @command{tar} to use @var{size} bytes per record when accessing the
  2444. archive. @xref{Blocking Factor}.
  2445. @opsummary{recursion}
  2446. @item --recursion
  2447. With this option, @command{tar} recurses into directories (default).
  2448. @xref{recurse}.
  2449. @opsummary{recursive-unlink}
  2450. @item --recursive-unlink
  2451. Remove existing
  2452. directory hierarchies before extracting directories of the same name
  2453. from the archive. @xref{Recursive Unlink}.
  2454. @opsummary{remove-files}
  2455. @item --remove-files
  2456. Directs @command{tar} to remove the source file from the file system after
  2457. appending it to an archive. @xref{remove files}.
  2458. @opsummary{restrict}
  2459. @item --restrict
  2460. Disable use of some potentially harmful @command{tar} options.
  2461. Currently this option disables shell invocation from multi-volume menu
  2462. (@pxref{Using Multiple Tapes}).
  2463. @opsummary{rmt-command}
  2464. @item --rmt-command=@var{cmd}
  2465. Notifies @command{tar} that it should use @var{cmd} instead of
  2466. the default @file{/usr/libexec/rmt} (@pxref{Remote Tape Server}).
  2467. @opsummary{rsh-command}
  2468. @item --rsh-command=@var{cmd}
  2469. Notifies @command{tar} that is should use @var{cmd} to communicate with remote
  2470. devices. @xref{Device}.
  2471. @opsummary{same-order}
  2472. @item --same-order
  2473. @itemx --preserve-order
  2474. @itemx -s
  2475. This option is an optimization for @command{tar} when running on machines with
  2476. small amounts of memory. It informs @command{tar} that the list of file
  2477. arguments has already been sorted to match the order of files in the
  2478. archive. @xref{Reading}.
  2479. @opsummary{same-owner}
  2480. @item --same-owner
  2481. When extracting an archive, @command{tar} will attempt to preserve the owner
  2482. specified in the @command{tar} archive with this option present.
  2483. This is the default behavior for the superuser; this option has an
  2484. effect only for ordinary users. @xref{Attributes}.
  2485. @opsummary{same-permissions}
  2486. @item --same-permissions
  2487. (See @option{--preserve-permissions}; @pxref{Setting Access Permissions}.)
  2488. @opsummary{seek}
  2489. @item --seek
  2490. @itemx -n
  2491. Assume that the archive media supports seeks to arbitrary
  2492. locations. Usually @command{tar} determines automatically whether
  2493. the archive can be seeked or not. This option is intended for use
  2494. in cases when such recognition fails.
  2495. @opsummary{show-defaults}
  2496. @item --show-defaults
  2497. Displays the default options used by @command{tar} and exits
  2498. successfully. This option is intended for use in shell scripts.
  2499. Here is an example of what you can see using this option:
  2500. @smallexample
  2501. $ tar --show-defaults
  2502. --format=gnu -f- -b20 --quoting-style=escape \
  2503. --rmt-command=/usr/libexec/rmt --rsh-command=/usr/bin/rsh
  2504. @end smallexample
  2505. @opsummary{show-omitted-dirs}
  2506. @item --show-omitted-dirs
  2507. Instructs @command{tar} to mention the directories it is skipping when
  2508. operating on a @command{tar} archive. @xref{show-omitted-dirs}.
  2509. @opsummary{show-transformed-names}
  2510. @opsummary{show-stored-names}
  2511. @item --show-transformed-names
  2512. @itemx --show-stored-names
  2513. Display file or member names after applying any transformations
  2514. (@pxref{transform}). In particular, when used in conjunction with one of
  2515. the archive creation operations it instructs @command{tar} to list the
  2516. member names stored in the archive, as opposed to the actual file
  2517. names. @xref{listing member and file names}.
  2518. @opsummary{sparse}
  2519. @item --sparse
  2520. @itemx -S
  2521. Invokes a @acronym{GNU} extension when adding files to an archive that handles
  2522. sparse files efficiently. @xref{sparse}.
  2523. @opsummary{sparse-version}
  2524. @item --sparse-version=@var{version}
  2525. Specifies the @dfn{format version} to use when archiving sparse
  2526. files. Implies @option{--sparse}. @xref{sparse}. For the description
  2527. of the supported sparse formats, @xref{Sparse Formats}.
  2528. @opsummary{starting-file}
  2529. @item --starting-file=@var{name}
  2530. @itemx -K @var{name}
  2531. This option affects extraction only; @command{tar} will skip extracting
  2532. files in the archive until it finds one that matches @var{name}.
  2533. @xref{Scarce}.
  2534. @opsummary{strip-components}
  2535. @item --strip-components=@var{number}
  2536. Strip given @var{number} of leading components from file names before
  2537. extraction. For example, if archive @file{archive.tar} contained
  2538. @file{/some/file/name}, then running
  2539. @smallexample
  2540. tar --extract --file archive.tar --strip-components=2
  2541. @end smallexample
  2542. @noindent
  2543. would extract this file to file @file{name}.
  2544. @opsummary{suffix}, summary
  2545. @item --suffix=@var{suffix}
  2546. Alters the suffix @command{tar} uses when backing up files from the default
  2547. @samp{~}. @xref{backup}.
  2548. @opsummary{tape-length}
  2549. @item --tape-length=@var{num}
  2550. @itemx -L @var{num}
  2551. Specifies the length of tapes that @command{tar} is writing as being
  2552. @w{@var{num} x 1024} bytes long. @xref{Using Multiple Tapes}.
  2553. @opsummary{test-label}
  2554. @item --test-label
  2555. Reads the volume label. If an argument is specified, test whether it
  2556. matches the volume label. @xref{--test-label option}.
  2557. @opsummary{to-command}
  2558. @item --to-command=@var{command}
  2559. During extraction @command{tar} will pipe extracted files to the
  2560. standard input of @var{command}. @xref{Writing to an External Program}.
  2561. @opsummary{to-stdout}
  2562. @item --to-stdout
  2563. @itemx -O
  2564. During extraction, @command{tar} will extract files to stdout rather
  2565. than to the file system. @xref{Writing to Standard Output}.
  2566. @opsummary{totals}
  2567. @item --totals[=@var{signo}]
  2568. Displays the total number of bytes transferred when processing an
  2569. archive. If an argument is given, these data are displayed on
  2570. request, when signal @var{signo} is delivered to @command{tar}.
  2571. @xref{totals}.
  2572. @opsummary{touch}
  2573. @item --touch
  2574. @itemx -m
  2575. Sets the data modification time of extracted files to the extraction time,
  2576. rather than the data modification time stored in the archive.
  2577. @xref{Data Modification Times}.
  2578. @opsummary{transform}
  2579. @opsummary{xform}
  2580. @item --transform=@var{sed-expr}
  2581. @itemx --xform=@var{sed-expr}
  2582. Transform file or member names using @command{sed} replacement expression
  2583. @var{sed-expr}. For example,
  2584. @smallexample
  2585. $ @kbd{tar cf archive.tar --transform 's,^\./,usr/,' .}
  2586. @end smallexample
  2587. @noindent
  2588. will add to @file{archive} files from the current working directory,
  2589. replacing initial @samp{./} prefix with @samp{usr/}. For the detailed
  2590. discussion, @xref{transform}.
  2591. To see transformed member names in verbose listings, use
  2592. @option{--show-transformed-names} option
  2593. (@pxref{show-transformed-names}).
  2594. @opsummary{uncompress}
  2595. @item --uncompress
  2596. (See @option{--compress}. @pxref{gzip})
  2597. @opsummary{ungzip}
  2598. @item --ungzip
  2599. (See @option{--gzip}. @pxref{gzip})
  2600. @opsummary{unlink-first}
  2601. @item --unlink-first
  2602. @itemx -U
  2603. Directs @command{tar} to remove the corresponding file from the file
  2604. system before extracting it from the archive. @xref{Unlink First}.
  2605. @opsummary{unquote}
  2606. @item --unquote
  2607. Enable unquoting input file or member names (default). @xref{input
  2608. name quoting}.
  2609. @opsummary{use-compress-program}
  2610. @item --use-compress-program=@var{prog}
  2611. Instructs @command{tar} to access the archive through @var{prog}, which is
  2612. presumed to be a compression program of some sort. @xref{gzip}.
  2613. @opsummary{utc}
  2614. @item --utc
  2615. Display file modification dates in @acronym{UTC}. This option implies
  2616. @option{--verbose}.
  2617. @opsummary{verbose}
  2618. @item --verbose
  2619. @itemx -v
  2620. Specifies that @command{tar} should be more verbose about the
  2621. operations it is performing. This option can be specified multiple
  2622. times for some operations to increase the amount of information displayed.
  2623. @xref{verbose}.
  2624. @opsummary{verify}
  2625. @item --verify
  2626. @itemx -W
  2627. Verifies that the archive was correctly written when creating an
  2628. archive. @xref{verify}.
  2629. @opsummary{version}
  2630. @item --version
  2631. Print information about the program's name, version, origin and legal
  2632. status, all on standard output, and then exit successfully.
  2633. @xref{help}.
  2634. @opsummary{volno-file}
  2635. @item --volno-file=@var{file}
  2636. Used in conjunction with @option{--multi-volume}. @command{tar} will
  2637. keep track of which volume of a multi-volume archive it is working in
  2638. @var{file}. @xref{volno-file}.
  2639. @opsummary{wildcards}
  2640. @item --wildcards
  2641. Use wildcards when matching member names with patterns.
  2642. @xref{controlling pattern-matching}.
  2643. @opsummary{wildcards-match-slash}
  2644. @item --wildcards-match-slash
  2645. Wildcards match @samp{/}.
  2646. @xref{controlling pattern-matching}.
  2647. @end table
  2648. @node Short Option Summary
  2649. @subsection Short Options Cross Reference
  2650. Here is an alphabetized list of all of the short option forms, matching
  2651. them with the equivalent long option.
  2652. @multitable @columnfractions 0.20 0.80
  2653. @headitem Short Option @tab Reference
  2654. @item -A @tab @ref{--concatenate}.
  2655. @item -B @tab @ref{--read-full-records}.
  2656. @item -C @tab @ref{--directory}.
  2657. @item -F @tab @ref{--info-script}.
  2658. @item -G @tab @ref{--incremental}.
  2659. @item -J @tab @ref{--lzma}.
  2660. @item -K @tab @ref{--starting-file}.
  2661. @item -L @tab @ref{--tape-length}.
  2662. @item -M @tab @ref{--multi-volume}.
  2663. @item -N @tab @ref{--newer}.
  2664. @item -O @tab @ref{--to-stdout}.
  2665. @item -P @tab @ref{--absolute-names}.
  2666. @item -R @tab @ref{--block-number}.
  2667. @item -S @tab @ref{--sparse}.
  2668. @item -T @tab @ref{--files-from}.
  2669. @item -U @tab @ref{--unlink-first}.
  2670. @item -V @tab @ref{--label}.
  2671. @item -W @tab @ref{--verify}.
  2672. @item -X @tab @ref{--exclude-from}.
  2673. @item -Z @tab @ref{--compress}.
  2674. @item -b @tab @ref{--blocking-factor}.
  2675. @item -c @tab @ref{--create}.
  2676. @item -d @tab @ref{--compare}.
  2677. @item -f @tab @ref{--file}.
  2678. @item -g @tab @ref{--listed-incremental}.
  2679. @item -h @tab @ref{--dereference}.
  2680. @item -i @tab @ref{--ignore-zeros}.
  2681. @item -j @tab @ref{--bzip2}.
  2682. @item -k @tab @ref{--keep-old-files}.
  2683. @item -l @tab @ref{--check-links}.
  2684. @item -m @tab @ref{--touch}.
  2685. @item -o @tab When creating, @ref{--no-same-owner}, when extracting ---
  2686. @ref{--portability}.
  2687. The latter usage is deprecated. It is retained for compatibility with
  2688. the earlier versions of @GNUTAR{}. In future releases
  2689. @option{-o} will be equivalent to @option{--no-same-owner} only.
  2690. @item -p @tab @ref{--preserve-permissions}.
  2691. @item -r @tab @ref{--append}.
  2692. @item -s @tab @ref{--same-order}.
  2693. @item -t @tab @ref{--list}.
  2694. @item -u @tab @ref{--update}.
  2695. @item -v @tab @ref{--verbose}.
  2696. @item -w @tab @ref{--interactive}.
  2697. @item -x @tab @ref{--extract}.
  2698. @item -z @tab @ref{--gzip}.
  2699. @end multitable
  2700. @node help
  2701. @section @GNUTAR{} documentation
  2702. @cindex Getting program version number
  2703. @opindex version
  2704. @cindex Version of the @command{tar} program
  2705. Being careful, the first thing is really checking that you are using
  2706. @GNUTAR{}, indeed. The @option{--version} option
  2707. causes @command{tar} to print information about its name, version,
  2708. origin and legal status, all on standard output, and then exit
  2709. successfully. For example, @w{@samp{tar --version}} might print:
  2710. @smallexample
  2711. tar (GNU tar) @value{VERSION}
  2712. Copyright (C) 2008 Free Software Foundation, Inc.
  2713. This is free software. You may redistribute copies of it under the terms
  2714. of the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
  2715. There is NO WARRANTY, to the extent permitted by law.
  2716. Written by John Gilmore and Jay Fenlason.
  2717. @end smallexample
  2718. @noindent
  2719. The first occurrence of @samp{tar} in the result above is the program
  2720. name in the package (for example, @command{rmt} is another program),
  2721. while the second occurrence of @samp{tar} is the name of the package
  2722. itself, containing possibly many programs. The package is currently
  2723. named @samp{tar}, after the name of the main program it
  2724. contains@footnote{There are plans to merge the @command{cpio} and
  2725. @command{tar} packages into a single one which would be called
  2726. @code{paxutils}. So, who knows if, one of this days, the
  2727. @option{--version} would not output @w{@samp{tar (@acronym{GNU}
  2728. paxutils) 3.2}}}.
  2729. @cindex Obtaining help
  2730. @cindex Listing all @command{tar} options
  2731. @xopindex{help, introduction}
  2732. Another thing you might want to do is checking the spelling or meaning
  2733. of some particular @command{tar} option, without resorting to this
  2734. manual, for once you have carefully read it. @GNUTAR{}
  2735. has a short help feature, triggerable through the
  2736. @option{--help} option. By using this option, @command{tar} will
  2737. print a usage message listing all available options on standard
  2738. output, then exit successfully, without doing anything else and
  2739. ignoring all other options. Even if this is only a brief summary, it
  2740. may be several screens long. So, if you are not using some kind of
  2741. scrollable window, you might prefer to use something like:
  2742. @smallexample
  2743. $ @kbd{tar --help | less}
  2744. @end smallexample
  2745. @noindent
  2746. presuming, here, that you like using @command{less} for a pager. Other
  2747. popular pagers are @command{more} and @command{pg}. If you know about some
  2748. @var{keyword} which interests you and do not want to read all the
  2749. @option{--help} output, another common idiom is doing:
  2750. @smallexample
  2751. tar --help | grep @var{keyword}
  2752. @end smallexample
  2753. @noindent
  2754. for getting only the pertinent lines. Notice, however, that some
  2755. @command{tar} options have long description lines and the above
  2756. command will list only the first of them.
  2757. The exact look of the option summary displayed by @kbd{tar --help} is
  2758. configurable. @xref{Configuring Help Summary}, for a detailed description.
  2759. @opindex usage
  2760. If you only wish to check the spelling of an option, running @kbd{tar
  2761. --usage} may be a better choice. This will display a terse list of
  2762. @command{tar} option without accompanying explanations.
  2763. The short help output is quite succinct, and you might have to get
  2764. back to the full documentation for precise points. If you are reading
  2765. this paragraph, you already have the @command{tar} manual in some
  2766. form. This manual is available in a variety of forms from
  2767. @url{http://www.gnu.org/software/tar/manual}. It may be printed out of the @GNUTAR{}
  2768. distribution, provided you have @TeX{} already installed somewhere,
  2769. and a laser printer around. Just configure the distribution, execute
  2770. the command @w{@samp{make dvi}}, then print @file{doc/tar.dvi} the
  2771. usual way (contact your local guru to know how). If @GNUTAR{}
  2772. has been conveniently installed at your place, this
  2773. manual is also available in interactive, hypertextual form as an Info
  2774. file. Just call @w{@samp{info tar}} or, if you do not have the
  2775. @command{info} program handy, use the Info reader provided within
  2776. @acronym{GNU} Emacs, calling @samp{tar} from the main Info menu.
  2777. There is currently no @code{man} page for @GNUTAR{}.
  2778. If you observe such a @code{man} page on the system you are running,
  2779. either it does not belong to @GNUTAR{}, or it has not
  2780. been produced by @acronym{GNU}. Some package maintainers convert
  2781. @kbd{tar --help} output to a man page, using @command{help2man}. In
  2782. any case, please bear in mind that the authoritative source of
  2783. information about @GNUTAR{} is this Texinfo documentation.
  2784. @node defaults
  2785. @section Obtaining @GNUTAR{} default values
  2786. @opindex show-defaults
  2787. @GNUTAR{} has some predefined defaults that are used when you do not
  2788. explicitly specify another values. To obtain a list of such
  2789. defaults, use @option{--show-defaults} option. This will output the
  2790. values in the form of @command{tar} command line options:
  2791. @smallexample
  2792. @group
  2793. @kbd{tar --show-defaults}
  2794. --format=gnu -f- -b20 --quoting-style=escape
  2795. --rmt-command=/etc/rmt --rsh-command=/usr/bin/rsh
  2796. @end group
  2797. @end smallexample
  2798. @noindent
  2799. Notice, that this option outputs only one line. The example output above
  2800. has been split to fit page boundaries.
  2801. @noindent
  2802. The above output shows that this version of @GNUTAR{} defaults to
  2803. using @samp{gnu} archive format (@pxref{Formats}), it uses standard
  2804. output as the archive, if no @option{--file} option has been given
  2805. (@pxref{file tutorial}), the default blocking factor is 20
  2806. (@pxref{Blocking Factor}). It also shows the default locations where
  2807. @command{tar} will look for @command{rmt} and @command{rsh} binaries.
  2808. @node verbose
  2809. @section Checking @command{tar} progress
  2810. Typically, @command{tar} performs most operations without reporting any
  2811. information to the user except error messages. When using @command{tar}
  2812. with many options, particularly ones with complicated or
  2813. difficult-to-predict behavior, it is possible to make serious mistakes.
  2814. @command{tar} provides several options that make observing @command{tar}
  2815. easier. These options cause @command{tar} to print information as it
  2816. progresses in its job, and you might want to use them just for being
  2817. more careful about what is going on, or merely for entertaining
  2818. yourself. If you have encountered a problem when operating on an
  2819. archive, however, you may need more information than just an error
  2820. message in order to solve the problem. The following options can be
  2821. helpful diagnostic tools.
  2822. @cindex Verbose operation
  2823. @opindex verbose
  2824. Normally, the @option{--list} (@option{-t}) command to list an archive
  2825. prints just the file names (one per line) and the other commands are
  2826. silent. When used with most operations, the @option{--verbose}
  2827. (@option{-v}) option causes @command{tar} to print the name of each
  2828. file or archive member as it is processed. This and the other options
  2829. which make @command{tar} print status information can be useful in
  2830. monitoring @command{tar}.
  2831. With @option{--create} or @option{--extract}, @option{--verbose} used
  2832. once just prints the names of the files or members as they are processed.
  2833. Using it twice causes @command{tar} to print a longer listing
  2834. (@xref{verbose member listing}, for the description) for each member.
  2835. Since @option{--list} already prints the names of the members,
  2836. @option{--verbose} used once with @option{--list} causes @command{tar}
  2837. to print an @samp{ls -l} type listing of the files in the archive.
  2838. The following examples both extract members with long list output:
  2839. @smallexample
  2840. $ @kbd{tar --extract --file=archive.tar --verbose --verbose}
  2841. $ @kbd{tar xvvf archive.tar}
  2842. @end smallexample
  2843. Verbose output appears on the standard output except when an archive is
  2844. being written to the standard output, as with @samp{tar --create
  2845. --file=- --verbose} (@samp{tar cfv -}, or even @samp{tar cv}---if the
  2846. installer let standard output be the default archive). In that case
  2847. @command{tar} writes verbose output to the standard error stream.
  2848. If @option{--index-file=@var{file}} is specified, @command{tar} sends
  2849. verbose output to @var{file} rather than to standard output or standard
  2850. error.
  2851. @anchor{totals}
  2852. @cindex Obtaining total status information
  2853. @opindex totals
  2854. The @option{--totals} option causes @command{tar} to print on the
  2855. standard error the total amount of bytes transferred when processing
  2856. an archive. When creating or appending to an archive, this option
  2857. prints the number of bytes written to the archive and the average
  2858. speed at which they have been written, e.g.:
  2859. @smallexample
  2860. @group
  2861. $ @kbd{tar -c -f archive.tar --totals /home}
  2862. Total bytes written: 7924664320 (7.4GiB, 85MiB/s)
  2863. @end group
  2864. @end smallexample
  2865. When reading an archive, this option displays the number of bytes
  2866. read:
  2867. @smallexample
  2868. @group
  2869. $ @kbd{tar -x -f archive.tar --totals}
  2870. Total bytes read: 7924664320 (7.4GiB, 95MiB/s)
  2871. @end group
  2872. @end smallexample
  2873. Finally, when deleting from an archive, the @option{--totals} option
  2874. displays both numbers plus number of bytes removed from the archive:
  2875. @smallexample
  2876. @group
  2877. $ @kbd{tar --delete -f foo.tar --totals --wildcards '*~'}
  2878. Total bytes read: 9543680 (9.2MiB, 201MiB/s)
  2879. Total bytes written: 3829760 (3.7MiB, 81MiB/s)
  2880. Total bytes deleted: 1474048
  2881. @end group
  2882. @end smallexample
  2883. You can also obtain this information on request. When
  2884. @option{--totals} is used with an argument, this argument is
  2885. interpreted as a symbolic name of a signal, upon delivery of which the
  2886. statistics is to be printed:
  2887. @table @option
  2888. @item --totals=@var{signo}
  2889. Print statistics upon delivery of signal @var{signo}. Valid arguments
  2890. are: @code{SIGHUP}, @code{SIGQUIT}, @code{SIGINT}, @code{SIGUSR1} and
  2891. @code{SIGUSR2}. Shortened names without @samp{SIG} prefix are also
  2892. accepted.
  2893. @end table
  2894. Both forms of @option{--totals} option can be used simultaneously.
  2895. Thus, @kbd{tar -x --totals --totals=USR1} instructs @command{tar} to
  2896. extract all members from its default archive and print statistics
  2897. after finishing the extraction, as well as when receiving signal
  2898. @code{SIGUSR1}.
  2899. @anchor{Progress information}
  2900. @cindex Progress information
  2901. The @option{--checkpoint} option prints an occasional message
  2902. as @command{tar} reads or writes the archive. It is designed for
  2903. those who don't need the more detailed (and voluminous) output of
  2904. @option{--block-number} (@option{-R}), but do want visual confirmation
  2905. that @command{tar} is actually making forward progress. By default it
  2906. prints a message each 10 records read or written. This can be changed
  2907. by giving it a numeric argument after an equal sign:
  2908. @smallexample
  2909. $ @kbd{tar -c --checkpoint=1000} /var
  2910. tar: Write checkpoint 1000
  2911. tar: Write checkpoint 2000
  2912. tar: Write checkpoint 3000
  2913. @end smallexample
  2914. This example shows the default checkpoint message used by
  2915. @command{tar}. If you place a dot immediately after the equal
  2916. sign, it will print a @samp{.} at each checkpoint@footnote{This is
  2917. actually a shortcut for @option{--checkpoint=@var{n}
  2918. --checkpoint-action=dot}. @xref{checkpoints, dot}.}. For example:
  2919. @smallexample
  2920. $ @kbd{tar -c --checkpoint=.1000} /var
  2921. ...
  2922. @end smallexample
  2923. The @option{--checkpoint} option provides a flexible mechanism for
  2924. executing arbitrary actions upon hitting checkpoints, see the next
  2925. section (@pxref{checkpoints}), for more information on it.
  2926. @opindex show-omitted-dirs
  2927. @anchor{show-omitted-dirs}
  2928. The @option{--show-omitted-dirs} option, when reading an archive---with
  2929. @option{--list} or @option{--extract}, for example---causes a message
  2930. to be printed for each directory in the archive which is skipped.
  2931. This happens regardless of the reason for skipping: the directory might
  2932. not have been named on the command line (implicitly or explicitly),
  2933. it might be excluded by the use of the
  2934. @option{--exclude=@var{pattern}} option, or some other reason.
  2935. @opindex block-number
  2936. @cindex Block number where error occurred
  2937. @anchor{block-number}
  2938. If @option{--block-number} (@option{-R}) is used, @command{tar} prints, along with
  2939. every message it would normally produce, the block number within the
  2940. archive where the message was triggered. Also, supplementary messages
  2941. are triggered when reading blocks full of NULs, or when hitting end of
  2942. file on the archive. As of now, if the archive if properly terminated
  2943. with a NUL block, the reading of the file may stop before end of file
  2944. is met, so the position of end of file will not usually show when
  2945. @option{--block-number} (@option{-R}) is used. Note that @GNUTAR{}
  2946. drains the archive before exiting when reading the
  2947. archive from a pipe.
  2948. @cindex Error message, block number of
  2949. This option is especially useful when reading damaged archives, since
  2950. it helps pinpoint the damaged sections. It can also be used with
  2951. @option{--list} (@option{-t}) when listing a file-system backup tape, allowing you to
  2952. choose among several backup tapes when retrieving a file later, in
  2953. favor of the tape where the file appears earliest (closest to the
  2954. front of the tape). @xref{backup}.
  2955. @node checkpoints
  2956. @section Checkpoints
  2957. @cindex checkpoints, defined
  2958. @opindex checkpoint
  2959. @opindex checkpoint-action
  2960. A @dfn{checkpoint} is a moment of time before writing @var{n}th record to
  2961. the archive (a @dfn{write checkpoint}), or before reading @var{n}th record
  2962. from the archive (a @dfn{read checkpoint}). Checkpoints allow to
  2963. periodically execute arbitrary actions.
  2964. The checkpoint facility is enabled using the following option:
  2965. @table @option
  2966. @xopindex{checkpoint, defined}
  2967. @item --checkpoint[=@var{n}]
  2968. Schedule checkpoints before writing or reading each @var{n}th record.
  2969. The default value for @var{n} is 10.
  2970. @end table
  2971. A list of arbitrary @dfn{actions} can be executed at each checkpoint.
  2972. These actions include: pausing, displaying textual messages, and
  2973. executing arbitrary external programs. Actions are defined using
  2974. the @option{--checkpoint-action} option.
  2975. @table @option
  2976. @xopindex{checkpoint-action, defined}
  2977. @item --checkpoint-action=@var{action}
  2978. Execute an @var{action} at each checkpoint.
  2979. @end table
  2980. @cindex @code{echo}, checkpoint action
  2981. The simplest value of @var{action} is @samp{echo}. It instructs
  2982. @command{tar} to display the default message on the standard error
  2983. stream upon arriving at each checkpoint. The default message is (in
  2984. @acronym{POSIX} locale) @samp{Write checkpoint @var{n}}, for write
  2985. checkpoints, and @samp{Read checkpoint @var{n}}, for read checkpoints.
  2986. Here, @var{n} represents ordinal number of the checkpoint.
  2987. In another locales, translated versions of this message are used.
  2988. This is the default action, so running:
  2989. @smallexample
  2990. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=echo} /var
  2991. @end smallexample
  2992. @noindent
  2993. is equivalent to:
  2994. @smallexample
  2995. $ @kbd{tar -c --checkpoint=1000} /var
  2996. @end smallexample
  2997. The @samp{echo} action also allows to supply a customized message.
  2998. You do so by placing an equals sign and the message right after it,
  2999. e.g.:
  3000. @smallexample
  3001. --checkpoint-action="echo=Hit %s checkpoint #%u"
  3002. @end smallexample
  3003. The @samp{%s} and @samp{%u} in the above example are
  3004. @dfn{meta-characters}. The @samp{%s} meta-character is replaced with
  3005. the @dfn{type} of the checkpoint: @samp{write} or
  3006. @samp{read} (or a corresponding translated version in locales other
  3007. than @acronym{POSIX}). The @samp{%u} meta-character is replaced with
  3008. the ordinal number of the checkpoint. Thus, the above example could
  3009. produce the following output when used with the @option{--create}
  3010. option:
  3011. @smallexample
  3012. tar: Hit write checkpoint #10
  3013. tar: Hit write checkpoint #20
  3014. tar: Hit write checkpoint #30
  3015. @end smallexample
  3016. Aside from meta-character expansion, the message string is subject to
  3017. @dfn{unquoting}, during which the backslash @dfn{escape sequences} are
  3018. replaced with their corresponding @acronym{ASCII} characters
  3019. (@pxref{escape sequences}). E.g. the following action will produce an
  3020. audible bell and the message described above at each checkpoint:
  3021. @smallexample
  3022. --checkpoint-action='echo=\aHit %s checkpoint #%u'
  3023. @end smallexample
  3024. @cindex @code{bell}, checkpoint action
  3025. There is also a special action which produces an audible signal:
  3026. @samp{bell}. It is not equivalent to @samp{echo='\a'}, because
  3027. @samp{bell} sends the bell directly to the console (@file{/dev/tty}),
  3028. whereas @samp{echo='\a'} sends it to the standard error.
  3029. @cindex @code{ttyout}, checkpoint action
  3030. The @samp{ttyout=@var{string}} action outputs @var{string} to
  3031. @file{/dev/tty}, so it can be used even if the standard output is
  3032. redirected elsewhere. The @var{string} is subject to the same
  3033. modifications as with @samp{echo} action. In contrast to the latter,
  3034. @samp{ttyout} does not prepend @command{tar} executable name to the
  3035. string, nor does it output a newline after it. For example, the
  3036. following action will print the checkpoint message at the same screen
  3037. line, overwriting any previous message:
  3038. @smallexample
  3039. --checkpoint-action="ttyout=\rHit %s checkpoint #%u"
  3040. @end smallexample
  3041. @cindex @code{dot}, checkpoint action
  3042. Another available checkpoint action is @samp{dot} (or @samp{.}). It
  3043. instructs @command{tar} to print a single dot on the standard listing
  3044. stream, e.g.:
  3045. @smallexample
  3046. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=dot} /var
  3047. ...
  3048. @end smallexample
  3049. For compatibility with previous @GNUTAR{} versions, this action can
  3050. be abbreviated by placing a dot in front of the checkpoint frequency,
  3051. as shown in the previous section.
  3052. @cindex @code{sleep}, checkpoint action
  3053. Yet another action, @samp{sleep}, pauses @command{tar} for a specified
  3054. amount of seconds. The following example will stop for 30 seconds at each
  3055. checkpoint:
  3056. @smallexample
  3057. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=sleep=30}
  3058. @end smallexample
  3059. @cindex @code{exec}, checkpoint action
  3060. Finally, the @code{exec} action executes a given external program.
  3061. For example:
  3062. @smallexample
  3063. $ @kbd{tar -c --checkpoint=1000 --checkpoint-action=exec=/sbin/cpoint}
  3064. @end smallexample
  3065. This program is executed using @command{/bin/sh -c}, with no
  3066. additional arguments. Its exit code is ignored. It gets a copy of
  3067. @command{tar}'s environment plus the following variables:
  3068. @table @env
  3069. @vrindex TAR_VERSION, checkpoint script environment
  3070. @item TAR_VERSION
  3071. @GNUTAR{} version number.
  3072. @vrindex TAR_ARCHIVE, checkpoint script environment
  3073. @item TAR_ARCHIVE
  3074. The name of the archive @command{tar} is processing.
  3075. @vrindex TAR_BLOCKING_FACTOR, checkpoint script environment
  3076. @item TAR_BLOCKING_FACTOR
  3077. Current blocking factor (@pxref{Blocking}).
  3078. @vrindex TAR_CHECKPOINT, checkpoint script environment
  3079. @item TAR_CHECKPOINT
  3080. Number of the checkpoint.
  3081. @vrindex TAR_SUBCOMMAND, checkpoint script environment
  3082. @item TAR_SUBCOMMAND
  3083. A short option describing the operation @command{tar} is executing.
  3084. @xref{Operations}, for a complete list of subcommand options.
  3085. @vrindex TAR_FORMAT, checkpoint script environment
  3086. @item TAR_FORMAT
  3087. Format of the archive being processed. @xref{Formats}, for a complete
  3088. list of archive format names.
  3089. @end table
  3090. Any number of actions can be defined, by supplying several
  3091. @option{--checkpoint-action} options in the command line. For
  3092. example, the command below displays two messages, pauses
  3093. execution for 30 seconds and executes the @file{/sbin/cpoint} script:
  3094. @example
  3095. @group
  3096. $ @kbd{tar -c -f arc.tar \
  3097. --checkpoint-action='\aecho=Hit %s checkpoint #%u' \
  3098. --checkpoint-action='echo=Sleeping for 30 seconds' \
  3099. --checkpoint-action='sleep=30' \
  3100. --checkpoint-action='exec=/sbin/cpoint'}
  3101. @end group
  3102. @end example
  3103. This example also illustrates the fact that
  3104. @option{--checkpoint-action} can be used without
  3105. @option{--checkpoint}. In this case, the default checkpoint frequency
  3106. (at each 10th record) is assumed.
  3107. @node interactive
  3108. @section Asking for Confirmation During Operations
  3109. @cindex Interactive operation
  3110. Typically, @command{tar} carries out a command without stopping for
  3111. further instructions. In some situations however, you may want to
  3112. exclude some files and archive members from the operation (for instance
  3113. if disk or storage space is tight). You can do this by excluding
  3114. certain files automatically (@pxref{Choosing}), or by performing
  3115. an operation interactively, using the @option{--interactive} (@option{-w}) option.
  3116. @command{tar} also accepts @option{--confirmation} for this option.
  3117. @opindex interactive
  3118. When the @option{--interactive} (@option{-w}) option is specified, before
  3119. reading, writing, or deleting files, @command{tar} first prints a message
  3120. for each such file, telling what operation it intends to take, then asks
  3121. for confirmation on the terminal. The actions which require
  3122. confirmation include adding a file to the archive, extracting a file
  3123. from the archive, deleting a file from the archive, and deleting a file
  3124. from disk. To confirm the action, you must type a line of input
  3125. beginning with @samp{y}. If your input line begins with anything other
  3126. than @samp{y}, @command{tar} skips that file.
  3127. If @command{tar} is reading the archive from the standard input,
  3128. @command{tar} opens the file @file{/dev/tty} to support the interactive
  3129. communications.
  3130. Verbose output is normally sent to standard output, separate from
  3131. other error messages. However, if the archive is produced directly
  3132. on standard output, then verbose output is mixed with errors on
  3133. @code{stderr}. Producing the archive on standard output may be used
  3134. as a way to avoid using disk space, when the archive is soon to be
  3135. consumed by another process reading it, say. Some people felt the need
  3136. of producing an archive on stdout, still willing to segregate between
  3137. verbose output and error output. A possible approach would be using a
  3138. named pipe to receive the archive, and having the consumer process to
  3139. read from that named pipe. This has the advantage of letting standard
  3140. output free to receive verbose output, all separate from errors.
  3141. @node operations
  3142. @chapter @GNUTAR{} Operations
  3143. @menu
  3144. * Basic tar::
  3145. * Advanced tar::
  3146. * create options::
  3147. * extract options::
  3148. * backup::
  3149. * Applications::
  3150. * looking ahead::
  3151. @end menu
  3152. @node Basic tar
  3153. @section Basic @GNUTAR{} Operations
  3154. The basic @command{tar} operations, @option{--create} (@option{-c}),
  3155. @option{--list} (@option{-t}) and @option{--extract} (@option{--get},
  3156. @option{-x}), are currently presented and described in the tutorial
  3157. chapter of this manual. This section provides some complementary notes
  3158. for these operations.
  3159. @table @option
  3160. @xopindex{create, complementary notes}
  3161. @item --create
  3162. @itemx -c
  3163. Creating an empty archive would have some kind of elegance. One can
  3164. initialize an empty archive and later use @option{--append}
  3165. (@option{-r}) for adding all members. Some applications would not
  3166. welcome making an exception in the way of adding the first archive
  3167. member. On the other hand, many people reported that it is
  3168. dangerously too easy for @command{tar} to destroy a magnetic tape with
  3169. an empty archive@footnote{This is well described in @cite{Unix-haters
  3170. Handbook}, by Simson Garfinkel, Daniel Weise & Steven Strassmann, IDG
  3171. Books, ISBN 1-56884-203-1.}. The two most common errors are:
  3172. @enumerate
  3173. @item
  3174. Mistakingly using @code{create} instead of @code{extract}, when the
  3175. intent was to extract the full contents of an archive. This error
  3176. is likely: keys @kbd{c} and @kbd{x} are right next to each other on
  3177. the QWERTY keyboard. Instead of being unpacked, the archive then
  3178. gets wholly destroyed. When users speak about @dfn{exploding} an
  3179. archive, they usually mean something else :-).
  3180. @item
  3181. Forgetting the argument to @code{file}, when the intent was to create
  3182. an archive with a single file in it. This error is likely because a
  3183. tired user can easily add the @kbd{f} key to the cluster of option
  3184. letters, by the mere force of habit, without realizing the full
  3185. consequence of doing so. The usual consequence is that the single
  3186. file, which was meant to be saved, is rather destroyed.
  3187. @end enumerate
  3188. So, recognizing the likelihood and the catastrophic nature of these
  3189. errors, @GNUTAR{} now takes some distance from elegance, and
  3190. cowardly refuses to create an archive when @option{--create} option is
  3191. given, there are no arguments besides options, and
  3192. @option{--files-from} (@option{-T}) option is @emph{not} used. To get
  3193. around the cautiousness of @GNUTAR{} and nevertheless create an
  3194. archive with nothing in it, one may still use, as the value for the
  3195. @option{--files-from} option, a file with no names in it, as shown in
  3196. the following commands:
  3197. @smallexample
  3198. @kbd{tar --create --file=empty-archive.tar --files-from=/dev/null}
  3199. @kbd{tar cfT empty-archive.tar /dev/null}
  3200. @end smallexample
  3201. @xopindex{extract, complementary notes}
  3202. @item --extract
  3203. @itemx --get
  3204. @itemx -x
  3205. A socket is stored, within a @GNUTAR{} archive, as a pipe.
  3206. @item @option{--list} (@option{-t})
  3207. @GNUTAR{} now shows dates as @samp{1996-08-30},
  3208. while it used to show them as @samp{Aug 30 1996}. Preferably,
  3209. people should get used to ISO 8601 dates. Local American dates should
  3210. be made available again with full date localization support, once
  3211. ready. In the meantime, programs not being localizable for dates
  3212. should prefer international dates, that's really the way to go.
  3213. Look up @url{http://www.cl.cam.ac.uk/@/~mgk25/@/iso-time.html} if you
  3214. are curious, it contains a detailed explanation of the ISO 8601 standard.
  3215. @end table
  3216. @node Advanced tar
  3217. @section Advanced @GNUTAR{} Operations
  3218. Now that you have learned the basics of using @GNUTAR{}, you may want
  3219. to learn about further ways in which @command{tar} can help you.
  3220. This chapter presents five, more advanced operations which you probably
  3221. won't use on a daily basis, but which serve more specialized functions.
  3222. We also explain the different styles of options and why you might want
  3223. to use one or another, or a combination of them in your @command{tar}
  3224. commands. Additionally, this chapter includes options which allow you to
  3225. define the output from @command{tar} more carefully, and provide help and
  3226. error correction in special circumstances.
  3227. @FIXME{check this after the chapter is actually revised to make sure
  3228. it still introduces the info in the chapter correctly : ).}
  3229. @menu
  3230. * Operations::
  3231. * append::
  3232. * update::
  3233. * concatenate::
  3234. * delete::
  3235. * compare::
  3236. @end menu
  3237. @node Operations
  3238. @subsection The Five Advanced @command{tar} Operations
  3239. @UNREVISED
  3240. In the last chapter, you learned about the first three operations to
  3241. @command{tar}. This chapter presents the remaining five operations to
  3242. @command{tar}: @option{--append}, @option{--update}, @option{--concatenate},
  3243. @option{--delete}, and @option{--compare}.
  3244. You are not likely to use these operations as frequently as those
  3245. covered in the last chapter; however, since they perform specialized
  3246. functions, they are quite useful when you do need to use them. We
  3247. will give examples using the same directory and files that you created
  3248. in the last chapter. As you may recall, the directory is called
  3249. @file{practice}, the files are @samp{jazz}, @samp{blues}, @samp{folk},
  3250. @samp{rock}, and the two archive files you created are
  3251. @samp{collection.tar} and @samp{music.tar}.
  3252. We will also use the archive files @samp{afiles.tar} and
  3253. @samp{bfiles.tar}. The archive @samp{afiles.tar} contains the members @samp{apple},
  3254. @samp{angst}, and @samp{aspic}; @samp{bfiles.tar} contains the members
  3255. @samp{./birds}, @samp{baboon}, and @samp{./box}.
  3256. Unless we state otherwise, all practicing you do and examples you follow
  3257. in this chapter will take place in the @file{practice} directory that
  3258. you created in the previous chapter; see @ref{prepare for examples}.
  3259. (Below in this section, we will remind you of the state of the examples
  3260. where the last chapter left them.)
  3261. The five operations that we will cover in this chapter are:
  3262. @table @option
  3263. @item --append
  3264. @itemx -r
  3265. Add new entries to an archive that already exists.
  3266. @item --update
  3267. @itemx -r
  3268. Add more recent copies of archive members to the end of an archive, if
  3269. they exist.
  3270. @item --concatenate
  3271. @itemx --catenate
  3272. @itemx -A
  3273. Add one or more pre-existing archives to the end of another archive.
  3274. @item --delete
  3275. Delete items from an archive (does not work on tapes).
  3276. @item --compare
  3277. @itemx --diff
  3278. @itemx -d
  3279. Compare archive members to their counterparts in the file system.
  3280. @end table
  3281. @node append
  3282. @subsection How to Add Files to Existing Archives: @option{--append}
  3283. @UNREVISED
  3284. @opindex append
  3285. If you want to add files to an existing archive, you don't need to
  3286. create a new archive; you can use @option{--append} (@option{-r}).
  3287. The archive must already exist in order to use @option{--append}. (A
  3288. related operation is the @option{--update} operation; you can use this
  3289. to add newer versions of archive members to an existing archive. To learn how to
  3290. do this with @option{--update}, @pxref{update}.)
  3291. If you use @option{--append} to add a file that has the same name as an
  3292. archive member to an archive containing that archive member, then the
  3293. old member is not deleted. What does happen, however, is somewhat
  3294. complex. @command{tar} @emph{allows} you to have infinite number of files
  3295. with the same name. Some operations treat these same-named members no
  3296. differently than any other set of archive members: for example, if you
  3297. view an archive with @option{--list} (@option{-t}), you will see all
  3298. of those members listed, with their data modification times, owners, etc.
  3299. Other operations don't deal with these members as perfectly as you might
  3300. prefer; if you were to use @option{--extract} to extract the archive,
  3301. only the most recently added copy of a member with the same name as four
  3302. other members would end up in the working directory. This is because
  3303. @option{--extract} extracts an archive in the order the members appeared
  3304. in the archive; the most recently archived members will be extracted
  3305. last. Additionally, an extracted member will @emph{replace} a file of
  3306. the same name which existed in the directory already, and @command{tar}
  3307. will not prompt you about this@footnote{Unless you give it
  3308. @option{--keep-old-files} option, or the disk copy is newer than the
  3309. the one in the archive and you invoke @command{tar} with
  3310. @option{--keep-newer-files} option}. Thus, only the most recently archived
  3311. member will end up being extracted, as it will replace the one
  3312. extracted before it, and so on.
  3313. There exists a special option that allows you to get around this
  3314. behavior and extract (or list) only a particular copy of the file.
  3315. This is @option{--occurrence} option. If you run @command{tar} with
  3316. this option, it will extract only the first copy of the file. You
  3317. may also give this option an argument specifying the number of
  3318. copy to be extracted. Thus, for example if the archive
  3319. @file{archive.tar} contained three copies of file @file{myfile}, then
  3320. the command
  3321. @smallexample
  3322. tar --extract --file archive.tar --occurrence=2 myfile
  3323. @end smallexample
  3324. @noindent
  3325. would extract only the second copy. @xref{Option
  3326. Summary,---occurrence}, for the description of @option{--occurrence}
  3327. option.
  3328. @FIXME{ hag -- you might want to incorporate some of the above into the
  3329. MMwtSN node; not sure. i didn't know how to make it simpler...
  3330. There are a few ways to get around this. (maybe xref Multiple Members
  3331. with the Same Name.}
  3332. @cindex Members, replacing with other members
  3333. @cindex Replacing members with other members
  3334. If you want to replace an archive member, use @option{--delete} to
  3335. delete the member you want to remove from the archive, , and then use
  3336. @option{--append} to add the member you want to be in the archive. Note
  3337. that you can not change the order of the archive; the most recently
  3338. added member will still appear last. In this sense, you cannot truly
  3339. ``replace'' one member with another. (Replacing one member with another
  3340. will not work on certain types of media, such as tapes; see @ref{delete}
  3341. and @ref{Media}, for more information.)
  3342. @menu
  3343. * appending files:: Appending Files to an Archive
  3344. * multiple::
  3345. @end menu
  3346. @node appending files
  3347. @subsubsection Appending Files to an Archive
  3348. @UNREVISED
  3349. @cindex Adding files to an Archive
  3350. @cindex Appending files to an Archive
  3351. @cindex Archives, Appending files to
  3352. The simplest way to add a file to an already existing archive is the
  3353. @option{--append} (@option{-r}) operation, which writes specified
  3354. files into the archive whether or not they are already among the
  3355. archived files.
  3356. When you use @option{--append}, you @emph{must} specify file name
  3357. arguments, as there is no default. If you specify a file that already
  3358. exists in the archive, another copy of the file will be added to the
  3359. end of the archive. As with other operations, the member names of the
  3360. newly added files will be exactly the same as their names given on the
  3361. command line. The @option{--verbose} (@option{-v}) option will print
  3362. out the names of the files as they are written into the archive.
  3363. @option{--append} cannot be performed on some tape drives, unfortunately,
  3364. due to deficiencies in the formats those tape drives use. The archive
  3365. must be a valid @command{tar} archive, or else the results of using this
  3366. operation will be unpredictable. @xref{Media}.
  3367. To demonstrate using @option{--append} to add a file to an archive,
  3368. create a file called @file{rock} in the @file{practice} directory.
  3369. Make sure you are in the @file{practice} directory. Then, run the
  3370. following @command{tar} command to add @file{rock} to
  3371. @file{collection.tar}:
  3372. @smallexample
  3373. $ @kbd{tar --append --file=collection.tar rock}
  3374. @end smallexample
  3375. @noindent
  3376. If you now use the @option{--list} (@option{-t}) operation, you will see that
  3377. @file{rock} has been added to the archive:
  3378. @smallexample
  3379. $ @kbd{tar --list --file=collection.tar}
  3380. -rw-r--r-- me user 28 1996-10-18 16:31 jazz
  3381. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3382. -rw-r--r-- me user 20 1996-09-23 16:44 folk
  3383. -rw-r--r-- me user 20 1996-09-23 16:44 rock
  3384. @end smallexample
  3385. @node multiple
  3386. @subsubsection Multiple Members with the Same Name
  3387. You can use @option{--append} (@option{-r}) to add copies of files
  3388. which have been updated since the archive was created. (However, we
  3389. do not recommend doing this since there is another @command{tar}
  3390. option called @option{--update}; @xref{update}, for more information.
  3391. We describe this use of @option{--append} here for the sake of
  3392. completeness.) When you extract the archive, the older version will
  3393. be effectively lost. This works because files are extracted from an
  3394. archive in the order in which they were archived. Thus, when the
  3395. archive is extracted, a file archived later in time will replace a
  3396. file of the same name which was archived earlier, even though the
  3397. older version of the file will remain in the archive unless you delete
  3398. all versions of the file.
  3399. Supposing you change the file @file{blues} and then append the changed
  3400. version to @file{collection.tar}. As you saw above, the original
  3401. @file{blues} is in the archive @file{collection.tar}. If you change the
  3402. file and append the new version of the file to the archive, there will
  3403. be two copies in the archive. When you extract the archive, the older
  3404. version of the file will be extracted first, and then replaced by the
  3405. newer version when it is extracted.
  3406. You can append the new, changed copy of the file @file{blues} to the
  3407. archive in this way:
  3408. @smallexample
  3409. $ @kbd{tar --append --verbose --file=collection.tar blues}
  3410. blues
  3411. @end smallexample
  3412. @noindent
  3413. Because you specified the @option{--verbose} option, @command{tar} has
  3414. printed the name of the file being appended as it was acted on. Now
  3415. list the contents of the archive:
  3416. @smallexample
  3417. $ @kbd{tar --list --verbose --file=collection.tar}
  3418. -rw-r--r-- me user 28 1996-10-18 16:31 jazz
  3419. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3420. -rw-r--r-- me user 20 1996-09-23 16:44 folk
  3421. -rw-r--r-- me user 20 1996-09-23 16:44 rock
  3422. -rw-r--r-- me user 58 1996-10-24 18:30 blues
  3423. @end smallexample
  3424. @noindent
  3425. The newest version of @file{blues} is now at the end of the archive
  3426. (note the different creation dates and file sizes). If you extract
  3427. the archive, the older version of the file @file{blues} will be
  3428. replaced by the newer version. You can confirm this by extracting
  3429. the archive and running @samp{ls} on the directory.
  3430. If you wish to extract the first occurrence of the file @file{blues}
  3431. from the archive, use @option{--occurrence} option, as shown in
  3432. the following example:
  3433. @smallexample
  3434. $ @kbd{tar --extract -vv --occurrence --file=collection.tar blues}
  3435. -rw-r--r-- me user 21 1996-09-23 16:44 blues
  3436. @end smallexample
  3437. @xref{Writing}, for more information on @option{--extract} and
  3438. @xref{Option Summary, --occurrence}, for the description of
  3439. @option{--occurrence} option.
  3440. @node update
  3441. @subsection Updating an Archive
  3442. @UNREVISED
  3443. @cindex Updating an archive
  3444. @opindex update
  3445. In the previous section, you learned how to use @option{--append} to
  3446. add a file to an existing archive. A related operation is
  3447. @option{--update} (@option{-u}). The @option{--update} operation
  3448. updates a @command{tar} archive by comparing the date of the specified
  3449. archive members against the date of the file with the same name. If
  3450. the file has been modified more recently than the archive member, then
  3451. the newer version of the file is added to the archive (as with
  3452. @option{--append}).
  3453. Unfortunately, you cannot use @option{--update} with magnetic tape drives.
  3454. The operation will fail.
  3455. @FIXME{other examples of media on which --update will fail? need to ask
  3456. charles and/or mib/thomas/dave shevett..}
  3457. Both @option{--update} and @option{--append} work by adding to the end
  3458. of the archive. When you extract a file from the archive, only the
  3459. version stored last will wind up in the file system, unless you use
  3460. the @option{--backup} option. @xref{multiple}, for a detailed discussion.
  3461. @menu
  3462. * how to update::
  3463. @end menu
  3464. @node how to update
  3465. @subsubsection How to Update an Archive Using @option{--update}
  3466. You must use file name arguments with the @option{--update}
  3467. (@option{-u}) operation. If you don't specify any files,
  3468. @command{tar} won't act on any files and won't tell you that it didn't
  3469. do anything (which may end up confusing you).
  3470. @c note: the above parenthetical added because in fact, this
  3471. @c behavior just confused the author. :-)
  3472. To see the @option{--update} option at work, create a new file,
  3473. @file{classical}, in your practice directory, and some extra text to the
  3474. file @file{blues}, using any text editor. Then invoke @command{tar} with
  3475. the @samp{update} operation and the @option{--verbose} (@option{-v})
  3476. option specified, using the names of all the files in the practice
  3477. directory as file name arguments:
  3478. @smallexample
  3479. $ @kbd{tar --update -v -f collection.tar blues folk rock classical}
  3480. blues
  3481. classical
  3482. $
  3483. @end smallexample
  3484. @noindent
  3485. Because we have specified verbose mode, @command{tar} prints out the names
  3486. of the files it is working on, which in this case are the names of the
  3487. files that needed to be updated. If you run @samp{tar --list} and look
  3488. at the archive, you will see @file{blues} and @file{classical} at its
  3489. end. There will be a total of two versions of the member @samp{blues};
  3490. the one at the end will be newer and larger, since you added text before
  3491. updating it.
  3492. (The reason @command{tar} does not overwrite the older file when updating
  3493. it is because writing to the middle of a section of tape is a difficult
  3494. process. Tapes are not designed to go backward. @xref{Media}, for more
  3495. information about tapes.
  3496. @option{--update} (@option{-u}) is not suitable for performing backups for two
  3497. reasons: it does not change directory content entries, and it
  3498. lengthens the archive every time it is used. The @GNUTAR{}
  3499. options intended specifically for backups are more
  3500. efficient. If you need to run backups, please consult @ref{Backups}.
  3501. @node concatenate
  3502. @subsection Combining Archives with @option{--concatenate}
  3503. @cindex Adding archives to an archive
  3504. @cindex Concatenating Archives
  3505. @opindex concatenate
  3506. @opindex catenate
  3507. @c @cindex @option{-A} described
  3508. Sometimes it may be convenient to add a second archive onto the end of
  3509. an archive rather than adding individual files to the archive. To add
  3510. one or more archives to the end of another archive, you should use the
  3511. @option{--concatenate} (@option{--catenate}, @option{-A}) operation.
  3512. To use @option{--concatenate}, give the first archive with
  3513. @option{--file} option and name the rest of archives to be
  3514. concatenated on the command line. The members, and their member
  3515. names, will be copied verbatim from those archives to the first one.
  3516. @footnote{This can cause multiple members to have the same name, for
  3517. information on how this affects reading the archive, @ref{multiple}.}
  3518. The new, concatenated archive will be called by the same name as the
  3519. one given with the @option{--file} option. As usual, if you omit
  3520. @option{--file}, @command{tar} will use the value of the environment
  3521. variable @env{TAPE}, or, if this has not been set, the default archive name.
  3522. @FIXME{There is no way to specify a new name...}
  3523. To demonstrate how @option{--concatenate} works, create two small archives
  3524. called @file{bluesrock.tar} and @file{folkjazz.tar}, using the relevant
  3525. files from @file{practice}:
  3526. @smallexample
  3527. $ @kbd{tar -cvf bluesrock.tar blues rock}
  3528. blues
  3529. rock
  3530. $ @kbd{tar -cvf folkjazz.tar folk jazz}
  3531. folk
  3532. jazz
  3533. @end smallexample
  3534. @noindent
  3535. If you like, You can run @samp{tar --list} to make sure the archives
  3536. contain what they are supposed to:
  3537. @smallexample
  3538. $ @kbd{tar -tvf bluesrock.tar}
  3539. -rw-r--r-- melissa user 105 1997-01-21 19:42 blues
  3540. -rw-r--r-- melissa user 33 1997-01-20 15:34 rock
  3541. $ @kbd{tar -tvf jazzfolk.tar}
  3542. -rw-r--r-- melissa user 20 1996-09-23 16:44 folk
  3543. -rw-r--r-- melissa user 65 1997-01-30 14:15 jazz
  3544. @end smallexample
  3545. We can concatenate these two archives with @command{tar}:
  3546. @smallexample
  3547. $ @kbd{cd ..}
  3548. $ @kbd{tar --concatenate --file=bluesrock.tar jazzfolk.tar}
  3549. @end smallexample
  3550. If you now list the contents of the @file{bluesrock.tar}, you will see
  3551. that now it also contains the archive members of @file{jazzfolk.tar}:
  3552. @smallexample
  3553. $ @kbd{tar --list --file=bluesrock.tar}
  3554. blues
  3555. rock
  3556. folk
  3557. jazz
  3558. @end smallexample
  3559. When you use @option{--concatenate}, the source and target archives must
  3560. already exist and must have been created using compatible format
  3561. parameters. Notice, that @command{tar} does not check whether the
  3562. archives it concatenates have compatible formats, it does not
  3563. even check if the files are really tar archives.
  3564. Like @option{--append} (@option{-r}), this operation cannot be performed on some
  3565. tape drives, due to deficiencies in the formats those tape drives use.
  3566. @cindex @code{concatenate} vs @command{cat}
  3567. @cindex @command{cat} vs @code{concatenate}
  3568. It may seem more intuitive to you to want or try to use @command{cat} to
  3569. concatenate two archives instead of using the @option{--concatenate}
  3570. operation; after all, @command{cat} is the utility for combining files.
  3571. However, @command{tar} archives incorporate an end-of-file marker which
  3572. must be removed if the concatenated archives are to be read properly as
  3573. one archive. @option{--concatenate} removes the end-of-archive marker
  3574. from the target archive before each new archive is appended. If you use
  3575. @command{cat} to combine the archives, the result will not be a valid
  3576. @command{tar} format archive. If you need to retrieve files from an
  3577. archive that was added to using the @command{cat} utility, use the
  3578. @option{--ignore-zeros} (@option{-i}) option. @xref{Ignore Zeros}, for further
  3579. information on dealing with archives improperly combined using the
  3580. @command{cat} shell utility.
  3581. @node delete
  3582. @subsection Removing Archive Members Using @option{--delete}
  3583. @UNREVISED
  3584. @cindex Deleting files from an archive
  3585. @cindex Removing files from an archive
  3586. @opindex delete
  3587. You can remove members from an archive by using the @option{--delete}
  3588. option. Specify the name of the archive with @option{--file}
  3589. (@option{-f}) and then specify the names of the members to be deleted;
  3590. if you list no member names, nothing will be deleted. The
  3591. @option{--verbose} option will cause @command{tar} to print the names
  3592. of the members as they are deleted. As with @option{--extract}, you
  3593. must give the exact member names when using @samp{tar --delete}.
  3594. @option{--delete} will remove all versions of the named file from the
  3595. archive. The @option{--delete} operation can run very slowly.
  3596. Unlike other operations, @option{--delete} has no short form.
  3597. @cindex Tapes, using @option{--delete} and
  3598. @cindex Deleting from tape archives
  3599. This operation will rewrite the archive. You can only use
  3600. @option{--delete} on an archive if the archive device allows you to
  3601. write to any point on the media, such as a disk; because of this, it
  3602. does not work on magnetic tapes. Do not try to delete an archive member
  3603. from a magnetic tape; the action will not succeed, and you will be
  3604. likely to scramble the archive and damage your tape. There is no safe
  3605. way (except by completely re-writing the archive) to delete files from
  3606. most kinds of magnetic tape. @xref{Media}.
  3607. To delete all versions of the file @file{blues} from the archive
  3608. @file{collection.tar} in the @file{practice} directory, make sure you
  3609. are in that directory, and then,
  3610. @smallexample
  3611. $ @kbd{tar --list --file=collection.tar}
  3612. blues
  3613. folk
  3614. jazz
  3615. rock
  3616. $ @kbd{tar --delete --file=collection.tar blues}
  3617. $ @kbd{tar --list --file=collection.tar}
  3618. folk
  3619. jazz
  3620. rock
  3621. $
  3622. @end smallexample
  3623. @FIXME{Check if the above listing is actually produced after running
  3624. all the examples on collection.tar.}
  3625. The @option{--delete} option has been reported to work properly when
  3626. @command{tar} acts as a filter from @code{stdin} to @code{stdout}.
  3627. @node compare
  3628. @subsection Comparing Archive Members with the File System
  3629. @cindex Verifying the currency of an archive
  3630. @UNREVISED
  3631. @opindex compare
  3632. The @option{--compare} (@option{-d}), or @option{--diff} operation compares
  3633. specified archive members against files with the same names, and then
  3634. reports differences in file size, mode, owner, modification date and
  3635. contents. You should @emph{only} specify archive member names, not file
  3636. names. If you do not name any members, then @command{tar} will compare the
  3637. entire archive. If a file is represented in the archive but does not
  3638. exist in the file system, @command{tar} reports a difference.
  3639. You have to specify the record size of the archive when modifying an
  3640. archive with a non-default record size.
  3641. @command{tar} ignores files in the file system that do not have
  3642. corresponding members in the archive.
  3643. The following example compares the archive members @file{rock},
  3644. @file{blues} and @file{funk} in the archive @file{bluesrock.tar} with
  3645. files of the same name in the file system. (Note that there is no file,
  3646. @file{funk}; @command{tar} will report an error message.)
  3647. @smallexample
  3648. $ @kbd{tar --compare --file=bluesrock.tar rock blues funk}
  3649. rock
  3650. blues
  3651. tar: funk not found in archive
  3652. @end smallexample
  3653. The spirit behind the @option{--compare} (@option{--diff},
  3654. @option{-d}) option is to check whether the archive represents the
  3655. current state of files on disk, more than validating the integrity of
  3656. the archive media. For this later goal, @xref{verify}.
  3657. @node create options
  3658. @section Options Used by @option{--create}
  3659. @xopindex{create, additional options}
  3660. The previous chapter described the basics of how to use
  3661. @option{--create} (@option{-c}) to create an archive from a set of files.
  3662. @xref{create}. This section described advanced options to be used with
  3663. @option{--create}.
  3664. @menu
  3665. * override:: Overriding File Metadata.
  3666. * Ignore Failed Read::
  3667. @end menu
  3668. @node override
  3669. @subsection Overriding File Metadata
  3670. As described above, a @command{tar} archive keeps, for each member it contains,
  3671. its @dfn{metadata}, such as modification time, mode and ownership of
  3672. the file. @GNUTAR{} allows to replace these data with other values
  3673. when adding files to the archive. The options described in this
  3674. section affect creation of archives of any type. For POSIX archives,
  3675. see also @ref{PAX keywords}, for additional ways of controlling
  3676. metadata, stored in the archive.
  3677. @table @option
  3678. @opindex mode
  3679. @item --mode=@var{permissions}
  3680. When adding files to an archive, @command{tar} will use
  3681. @var{permissions} for the archive members, rather than the permissions
  3682. from the files. @var{permissions} can be specified either as an octal
  3683. number or as symbolic permissions, like with
  3684. @command{chmod} (@xref{File permissions, Permissions, File
  3685. permissions, fileutils, @acronym{GNU} file utilities}. This reference
  3686. also has useful information for those not being overly familiar with
  3687. the UNIX permission system). Using latter syntax allows for
  3688. more flexibility. For example, the value @samp{a+rw} adds read and write
  3689. permissions for everybody, while retaining executable bits on directories
  3690. or on any other file already marked as executable:
  3691. @smallexample
  3692. $ @kbd{tar -c -f archive.tar --mode='a+rw' .}
  3693. @end smallexample
  3694. @item --mtime=@var{date}
  3695. @opindex mtime
  3696. When adding files to an archive, @command{tar} will use @var{date} as
  3697. the modification time of members when creating archives, instead of
  3698. their actual modification times. The argument @var{date} can be
  3699. either a textual date representation in almost arbitrary format
  3700. (@pxref{Date input formats}) or a name of the existing file, starting
  3701. with @samp{/} or @samp{.}. In the latter case, the modification time
  3702. of that file will be used.
  3703. The following example will set the modification date to 00:00:00 UTC,
  3704. January 1, 1970:
  3705. @smallexample
  3706. $ @kbd{tar -c -f archive.tar --mtime='1970-01-01' .}
  3707. @end smallexample
  3708. @noindent
  3709. When used with @option{--verbose} (@pxref{verbose tutorial}) @GNUTAR{}
  3710. will try to convert the specified date back to its textual
  3711. representation and compare it with the one given with
  3712. @option{--mtime} options. If the two dates differ, @command{tar} will
  3713. print a warning saying what date it will use. This is to help user
  3714. ensure he is using the right date.
  3715. For example:
  3716. @smallexample
  3717. $ @kbd{tar -c -f archive.tar -v --mtime=yesterday .}
  3718. tar: Option --mtime: Treating date `yesterday' as 2006-06-20
  3719. 13:06:29.152478
  3720. @dots{}
  3721. @end smallexample
  3722. @item --owner=@var{user}
  3723. @opindex owner
  3724. Specifies that @command{tar} should use @var{user} as the owner of members
  3725. when creating archives, instead of the user associated with the source
  3726. file. The argument @var{user} can be either an existing user symbolic
  3727. name, or a decimal numeric user @acronym{ID}.
  3728. There is no value indicating a missing number, and @samp{0} usually means
  3729. @code{root}. Some people like to force @samp{0} as the value to offer in
  3730. their distributions for the owner of files, because the @code{root} user is
  3731. anonymous anyway, so that might as well be the owner of anonymous
  3732. archives. For example:
  3733. @smallexample
  3734. @group
  3735. $ @kbd{tar -c -f archive.tar --owner=0 .}
  3736. # @r{Or:}
  3737. $ @kbd{tar -c -f archive.tar --owner=root .}
  3738. @end group
  3739. @end smallexample
  3740. @item --group=@var{group}
  3741. @opindex group
  3742. Files added to the @command{tar} archive will have a group @acronym{ID} of @var{group},
  3743. rather than the group from the source file. The argument @var{group}
  3744. can be either an existing group symbolic name, or a decimal numeric group @acronym{ID}.
  3745. @end table
  3746. @node Ignore Failed Read
  3747. @subsection Ignore Fail Read
  3748. @table @option
  3749. @item --ignore-failed-read
  3750. @opindex ignore-failed-read
  3751. Do not exit with nonzero on unreadable files or directories.
  3752. @end table
  3753. @node extract options
  3754. @section Options Used by @option{--extract}
  3755. @UNREVISED
  3756. @xopindex{extract, additional options}
  3757. The previous chapter showed how to use @option{--extract} to extract
  3758. an archive into the file system. Various options cause @command{tar} to
  3759. extract more information than just file contents, such as the owner,
  3760. the permissions, the modification date, and so forth. This section
  3761. presents options to be used with @option{--extract} when certain special
  3762. considerations arise. You may review the information presented in
  3763. @ref{extract} for more basic information about the
  3764. @option{--extract} operation.
  3765. @menu
  3766. * Reading:: Options to Help Read Archives
  3767. * Writing:: Changing How @command{tar} Writes Files
  3768. * Scarce:: Coping with Scarce Resources
  3769. @end menu
  3770. @node Reading
  3771. @subsection Options to Help Read Archives
  3772. @cindex Options when reading archives
  3773. @UNREVISED
  3774. @cindex Reading incomplete records
  3775. @cindex Records, incomplete
  3776. @opindex read-full-records
  3777. Normally, @command{tar} will request data in full record increments from
  3778. an archive storage device. If the device cannot return a full record,
  3779. @command{tar} will report an error. However, some devices do not always
  3780. return full records, or do not require the last record of an archive to
  3781. be padded out to the next record boundary. To keep reading until you
  3782. obtain a full record, or to accept an incomplete record if it contains
  3783. an end-of-archive marker, specify the @option{--read-full-records} (@option{-B}) option
  3784. in conjunction with the @option{--extract} or @option{--list} operations.
  3785. @xref{Blocking}.
  3786. The @option{--read-full-records} (@option{-B}) option is turned on by default when
  3787. @command{tar} reads an archive from standard input, or from a remote
  3788. machine. This is because on @acronym{BSD} Unix systems, attempting to read a
  3789. pipe returns however much happens to be in the pipe, even if it is
  3790. less than was requested. If this option were not enabled, @command{tar}
  3791. would fail as soon as it read an incomplete record from the pipe.
  3792. If you're not sure of the blocking factor of an archive, you can
  3793. read the archive by specifying @option{--read-full-records} (@option{-B}) and
  3794. @option{--blocking-factor=@var{512-size}} (@option{-b
  3795. @var{512-size}}), using a blocking factor larger than what the archive
  3796. uses. This lets you avoid having to determine the blocking factor
  3797. of an archive. @xref{Blocking Factor}.
  3798. @menu
  3799. * read full records::
  3800. * Ignore Zeros::
  3801. @end menu
  3802. @node read full records
  3803. @unnumberedsubsubsec Reading Full Records
  3804. @FIXME{need sentence or so of intro here}
  3805. @table @option
  3806. @opindex read-full-records
  3807. @item --read-full-records
  3808. @item -B
  3809. Use in conjunction with @option{--extract} (@option{--get},
  3810. @option{-x}) to read an archive which contains incomplete records, or
  3811. one which has a blocking factor less than the one specified.
  3812. @end table
  3813. @node Ignore Zeros
  3814. @unnumberedsubsubsec Ignoring Blocks of Zeros
  3815. @cindex End-of-archive blocks, ignoring
  3816. @cindex Ignoring end-of-archive blocks
  3817. @opindex ignore-zeros
  3818. Normally, @command{tar} stops reading when it encounters a block of zeros
  3819. between file entries (which usually indicates the end of the archive).
  3820. @option{--ignore-zeros} (@option{-i}) allows @command{tar} to
  3821. completely read an archive which contains a block of zeros before the
  3822. end (i.e., a damaged archive, or one that was created by concatenating
  3823. several archives together).
  3824. The @option{--ignore-zeros} (@option{-i}) option is turned off by default because many
  3825. versions of @command{tar} write garbage after the end-of-archive entry,
  3826. since that part of the media is never supposed to be read. @GNUTAR{}
  3827. does not write after the end of an archive, but seeks to
  3828. maintain compatibility among archiving utilities.
  3829. @table @option
  3830. @item --ignore-zeros
  3831. @itemx -i
  3832. To ignore blocks of zeros (i.e., end-of-archive entries) which may be
  3833. encountered while reading an archive. Use in conjunction with
  3834. @option{--extract} or @option{--list}.
  3835. @end table
  3836. @node Writing
  3837. @subsection Changing How @command{tar} Writes Files
  3838. @UNREVISED
  3839. @FIXME{Introductory paragraph}
  3840. @menu
  3841. * Dealing with Old Files::
  3842. * Overwrite Old Files::
  3843. * Keep Old Files::
  3844. * Keep Newer Files::
  3845. * Unlink First::
  3846. * Recursive Unlink::
  3847. * Data Modification Times::
  3848. * Setting Access Permissions::
  3849. * Directory Modification Times and Permissions::
  3850. * Writing to Standard Output::
  3851. * Writing to an External Program::
  3852. * remove files::
  3853. @end menu
  3854. @node Dealing with Old Files
  3855. @unnumberedsubsubsec Options Controlling the Overwriting of Existing Files
  3856. @xopindex{overwrite-dir, introduced}
  3857. When extracting files, if @command{tar} discovers that the extracted
  3858. file already exists, it normally replaces the file by removing it before
  3859. extracting it, to prevent confusion in the presence of hard or symbolic
  3860. links. (If the existing file is a symbolic link, it is removed, not
  3861. followed.) However, if a directory cannot be removed because it is
  3862. nonempty, @command{tar} normally overwrites its metadata (ownership,
  3863. permission, etc.). The @option{--overwrite-dir} option enables this
  3864. default behavior. To be more cautious and preserve the metadata of
  3865. such a directory, use the @option{--no-overwrite-dir} option.
  3866. @cindex Overwriting old files, prevention
  3867. @xopindex{keep-old-files, introduced}
  3868. To be even more cautious and prevent existing files from being replaced, use
  3869. the @option{--keep-old-files} (@option{-k}) option. It causes @command{tar} to refuse
  3870. to replace or update a file that already exists, i.e., a file with the
  3871. same name as an archive member prevents extraction of that archive
  3872. member. Instead, it reports an error.
  3873. @xopindex{overwrite, introduced}
  3874. To be more aggressive about altering existing files, use the
  3875. @option{--overwrite} option. It causes @command{tar} to overwrite
  3876. existing files and to follow existing symbolic links when extracting.
  3877. @cindex Protecting old files
  3878. Some people argue that @GNUTAR{} should not hesitate
  3879. to overwrite files with other files when extracting. When extracting
  3880. a @command{tar} archive, they expect to see a faithful copy of the
  3881. state of the file system when the archive was created. It is debatable
  3882. that this would always be a proper behavior. For example, suppose one
  3883. has an archive in which @file{usr/local} is a link to
  3884. @file{usr/local2}. Since then, maybe the site removed the link and
  3885. renamed the whole hierarchy from @file{/usr/local2} to
  3886. @file{/usr/local}. Such things happen all the time. I guess it would
  3887. not be welcome at all that @GNUTAR{} removes the
  3888. whole hierarchy just to make room for the link to be reinstated
  3889. (unless it @emph{also} simultaneously restores the full
  3890. @file{/usr/local2}, of course!) @GNUTAR{} is indeed
  3891. able to remove a whole hierarchy to reestablish a symbolic link, for
  3892. example, but @emph{only if} @option{--recursive-unlink} is specified
  3893. to allow this behavior. In any case, single files are silently
  3894. removed.
  3895. @xopindex{unlink-first, introduced}
  3896. Finally, the @option{--unlink-first} (@option{-U}) option can improve performance in
  3897. some cases by causing @command{tar} to remove files unconditionally
  3898. before extracting them.
  3899. @node Overwrite Old Files
  3900. @unnumberedsubsubsec Overwrite Old Files
  3901. @table @option
  3902. @opindex overwrite
  3903. @item --overwrite
  3904. Overwrite existing files and directory metadata when extracting files
  3905. from an archive.
  3906. This causes @command{tar} to write extracted files into the file system without
  3907. regard to the files already on the system; i.e., files with the same
  3908. names as archive members are overwritten when the archive is extracted.
  3909. It also causes @command{tar} to extract the ownership, permissions,
  3910. and time stamps onto any preexisting files or directories.
  3911. If the name of a corresponding file name is a symbolic link, the file
  3912. pointed to by the symbolic link will be overwritten instead of the
  3913. symbolic link itself (if this is possible). Moreover, special devices,
  3914. empty directories and even symbolic links are automatically removed if
  3915. they are in the way of extraction.
  3916. Be careful when using the @option{--overwrite} option, particularly when
  3917. combined with the @option{--absolute-names} (@option{-P}) option, as this combination
  3918. can change the contents, ownership or permissions of any file on your
  3919. system. Also, many systems do not take kindly to overwriting files that
  3920. are currently being executed.
  3921. @opindex overwrite-dir
  3922. @item --overwrite-dir
  3923. Overwrite the metadata of directories when extracting files from an
  3924. archive, but remove other files before extracting.
  3925. @end table
  3926. @node Keep Old Files
  3927. @unnumberedsubsubsec Keep Old Files
  3928. @table @option
  3929. @opindex keep-old-files
  3930. @item --keep-old-files
  3931. @itemx -k
  3932. Do not replace existing files from archive. The
  3933. @option{--keep-old-files} (@option{-k}) option prevents @command{tar}
  3934. from replacing existing files with files with the same name from the
  3935. archive. The @option{--keep-old-files} option is meaningless with
  3936. @option{--list} (@option{-t}). Prevents @command{tar} from replacing
  3937. files in the file system during extraction.
  3938. @end table
  3939. @node Keep Newer Files
  3940. @unnumberedsubsubsec Keep Newer Files
  3941. @table @option
  3942. @opindex keep-newer-files
  3943. @item --keep-newer-files
  3944. Do not replace existing files that are newer than their archive
  3945. copies. This option is meaningless with @option{--list} (@option{-t}).
  3946. @end table
  3947. @node Unlink First
  3948. @unnumberedsubsubsec Unlink First
  3949. @table @option
  3950. @opindex unlink-first
  3951. @item --unlink-first
  3952. @itemx -U
  3953. Remove files before extracting over them.
  3954. This can make @command{tar} run a bit faster if you know in advance
  3955. that the extracted files all need to be removed. Normally this option
  3956. slows @command{tar} down slightly, so it is disabled by default.
  3957. @end table
  3958. @node Recursive Unlink
  3959. @unnumberedsubsubsec Recursive Unlink
  3960. @table @option
  3961. @opindex recursive-unlink
  3962. @item --recursive-unlink
  3963. When this option is specified, try removing files and directory hierarchies
  3964. before extracting over them. @emph{This is a dangerous option!}
  3965. @end table
  3966. If you specify the @option{--recursive-unlink} option,
  3967. @command{tar} removes @emph{anything} that keeps you from extracting a file
  3968. as far as current permissions will allow it. This could include removal
  3969. of the contents of a full directory hierarchy.
  3970. @node Data Modification Times
  3971. @unnumberedsubsubsec Setting Data Modification Times
  3972. @cindex Data modification times of extracted files
  3973. @cindex Modification times of extracted files
  3974. Normally, @command{tar} sets the data modification times of extracted
  3975. files to the corresponding times recorded for the files in the archive, but
  3976. limits the permissions of extracted files by the current @code{umask}
  3977. setting.
  3978. To set the data modification times of extracted files to the time when
  3979. the files were extracted, use the @option{--touch} (@option{-m}) option in
  3980. conjunction with @option{--extract} (@option{--get}, @option{-x}).
  3981. @table @option
  3982. @opindex touch
  3983. @item --touch
  3984. @itemx -m
  3985. Sets the data modification time of extracted archive members to the time
  3986. they were extracted, not the time recorded for them in the archive.
  3987. Use in conjunction with @option{--extract} (@option{--get}, @option{-x}).
  3988. @end table
  3989. @node Setting Access Permissions
  3990. @unnumberedsubsubsec Setting Access Permissions
  3991. @cindex Permissions of extracted files
  3992. @cindex Modes of extracted files
  3993. To set the modes (access permissions) of extracted files to those
  3994. recorded for those files in the archive, use @option{--same-permissions}
  3995. in conjunction with the @option{--extract} (@option{--get},
  3996. @option{-x}) operation.
  3997. @table @option
  3998. @opindex preserve-permissions
  3999. @opindex same-permissions
  4000. @item --preserve-permissions
  4001. @itemx --same-permissions
  4002. @c @itemx --ignore-umask
  4003. @itemx -p
  4004. Set modes of extracted archive members to those recorded in the
  4005. archive, instead of current umask settings. Use in conjunction with
  4006. @option{--extract} (@option{--get}, @option{-x}).
  4007. @end table
  4008. @node Directory Modification Times and Permissions
  4009. @unnumberedsubsubsec Directory Modification Times and Permissions
  4010. After successfully extracting a file member, @GNUTAR{} normally
  4011. restores its permissions and modification times, as described in the
  4012. previous sections. This cannot be done for directories, because
  4013. after extracting a directory @command{tar} will almost certainly
  4014. extract files into that directory and this will cause the directory
  4015. modification time to be updated. Moreover, restoring that directory
  4016. permissions may not permit file creation within it. Thus, restoring
  4017. directory permissions and modification times must be delayed at least
  4018. until all files have been extracted into that directory. @GNUTAR{}
  4019. restores directories using the following approach.
  4020. The extracted directories are created with the mode specified in the
  4021. archive, as modified by the umask of the user, which gives sufficient
  4022. permissions to allow file creation. The meta-information about the
  4023. directory is recorded in the temporary list of directories. When
  4024. preparing to extract next archive member, @GNUTAR{} checks if the
  4025. directory prefix of this file contains the remembered directory. If
  4026. it does not, the program assumes that all files have been extracted
  4027. into that directory, restores its modification time and permissions
  4028. and removes its entry from the internal list. This approach allows
  4029. to correctly restore directory meta-information in the majority of
  4030. cases, while keeping memory requirements sufficiently small. It is
  4031. based on the fact, that most @command{tar} archives use the predefined
  4032. order of members: first the directory, then all the files and
  4033. subdirectories in that directory.
  4034. However, this is not always true. The most important exception are
  4035. incremental archives (@pxref{Incremental Dumps}). The member order in
  4036. an incremental archive is reversed: first all directory members are
  4037. stored, followed by other (non-directory) members. So, when extracting
  4038. from incremental archives, @GNUTAR{} alters the above procedure. It
  4039. remembers all restored directories, and restores their meta-data
  4040. only after the entire archive has been processed. Notice, that you do
  4041. not need to specify any special options for that, as @GNUTAR{}
  4042. automatically detects archives in incremental format.
  4043. There may be cases, when such processing is required for normal archives
  4044. too. Consider the following example:
  4045. @smallexample
  4046. @group
  4047. $ @kbd{tar --no-recursion -cvf archive \
  4048. foo foo/file1 bar bar/file foo/file2}
  4049. foo/
  4050. foo/file1
  4051. bar/
  4052. bar/file
  4053. foo/file2
  4054. @end group
  4055. @end smallexample
  4056. During the normal operation, after encountering @file{bar}
  4057. @GNUTAR{} will assume that all files from the directory @file{foo}
  4058. were already extracted and will therefore restore its timestamp and
  4059. permission bits. However, after extracting @file{foo/file2} the
  4060. directory timestamp will be offset again.
  4061. To correctly restore directory meta-information in such cases, use
  4062. @option{delay-directory-restore} command line option:
  4063. @table @option
  4064. @opindex delay-directory-restore
  4065. @item --delay-directory-restore
  4066. Delays restoring of the modification times and permissions of extracted
  4067. directories until the end of extraction. This way, correct
  4068. meta-information is restored even if the archive has unusual member
  4069. ordering.
  4070. @opindex no-delay-directory-restore
  4071. @item --no-delay-directory-restore
  4072. Cancel the effect of the previous @option{--delay-directory-restore}.
  4073. Use this option if you have used @option{--delay-directory-restore} in
  4074. @env{TAR_OPTIONS} variable (@pxref{TAR_OPTIONS}) and wish to
  4075. temporarily disable it.
  4076. @end table
  4077. @node Writing to Standard Output
  4078. @unnumberedsubsubsec Writing to Standard Output
  4079. @cindex Writing extracted files to standard output
  4080. @cindex Standard output, writing extracted files to
  4081. To write the extracted files to the standard output, instead of
  4082. creating the files on the file system, use @option{--to-stdout} (@option{-O}) in
  4083. conjunction with @option{--extract} (@option{--get}, @option{-x}). This option is useful if you are
  4084. extracting files to send them through a pipe, and do not need to
  4085. preserve them in the file system. If you extract multiple members,
  4086. they appear on standard output concatenated, in the order they are
  4087. found in the archive.
  4088. @table @option
  4089. @opindex to-stdout
  4090. @item --to-stdout
  4091. @itemx -O
  4092. Writes files to the standard output. Use only in conjunction with
  4093. @option{--extract} (@option{--get}, @option{-x}). When this option is
  4094. used, instead of creating the files specified, @command{tar} writes
  4095. the contents of the files extracted to its standard output. This may
  4096. be useful if you are only extracting the files in order to send them
  4097. through a pipe. This option is meaningless with @option{--list}
  4098. (@option{-t}).
  4099. @end table
  4100. This can be useful, for example, if you have a tar archive containing
  4101. a big file and don't want to store the file on disk before processing
  4102. it. You can use a command like this:
  4103. @smallexample
  4104. tar -xOzf foo.tgz bigfile | process
  4105. @end smallexample
  4106. or even like this if you want to process the concatenation of the files:
  4107. @smallexample
  4108. tar -xOzf foo.tgz bigfile1 bigfile2 | process
  4109. @end smallexample
  4110. However, @option{--to-command} may be more convenient for use with
  4111. multiple files. See the next section.
  4112. @node Writing to an External Program
  4113. @unnumberedsubsubsec Writing to an External Program
  4114. You can instruct @command{tar} to send the contents of each extracted
  4115. file to the standard input of an external program:
  4116. @table @option
  4117. @opindex to-command
  4118. @item --to-command=@var{command}
  4119. Extract files and pipe their contents to the standard input of
  4120. @var{command}. When this option is used, instead of creating the
  4121. files specified, @command{tar} invokes @var{command} and pipes the
  4122. contents of the files to its standard output. @var{Command} may
  4123. contain command line arguments. The program is executed via
  4124. @code{sh -c}. Notice, that @var{command} is executed once for each regular file
  4125. extracted. Non-regular files (directories, etc.) are ignored when this
  4126. option is used.
  4127. @end table
  4128. The command can obtain the information about the file it processes
  4129. from the following environment variables:
  4130. @table @env
  4131. @vrindex TAR_FILETYPE, to-command environment
  4132. @item TAR_FILETYPE
  4133. Type of the file. It is a single letter with the following meaning:
  4134. @multitable @columnfractions 0.10 0.90
  4135. @item f @tab Regular file
  4136. @item d @tab Directory
  4137. @item l @tab Symbolic link
  4138. @item h @tab Hard link
  4139. @item b @tab Block device
  4140. @item c @tab Character device
  4141. @end multitable
  4142. Currently only regular files are supported.
  4143. @vrindex TAR_MODE, to-command environment
  4144. @item TAR_MODE
  4145. File mode, an octal number.
  4146. @vrindex TAR_FILENAME, to-command environment
  4147. @item TAR_FILENAME
  4148. The name of the file.
  4149. @vrindex TAR_REALNAME, to-command environment
  4150. @item TAR_REALNAME
  4151. Name of the file as stored in the archive.
  4152. @vrindex TAR_UNAME, to-command environment
  4153. @item TAR_UNAME
  4154. Name of the file owner.
  4155. @vrindex TAR_GNAME, to-command environment
  4156. @item TAR_GNAME
  4157. Name of the file owner group.
  4158. @vrindex TAR_ATIME, to-command environment
  4159. @item TAR_ATIME
  4160. Time of last access. It is a decimal number, representing seconds
  4161. since the epoch. If the archive provides times with nanosecond
  4162. precision, the nanoseconds are appended to the timestamp after a
  4163. decimal point.
  4164. @vrindex TAR_MTIME, to-command environment
  4165. @item TAR_MTIME
  4166. Time of last modification.
  4167. @vrindex TAR_CTIME, to-command environment
  4168. @item TAR_CTIME
  4169. Time of last status change.
  4170. @vrindex TAR_SIZE, to-command environment
  4171. @item TAR_SIZE
  4172. Size of the file.
  4173. @vrindex TAR_UID, to-command environment
  4174. @item TAR_UID
  4175. UID of the file owner.
  4176. @vrindex TAR_GID, to-command environment
  4177. @item TAR_GID
  4178. GID of the file owner.
  4179. @end table
  4180. In addition to these variables, @env{TAR_VERSION} contains the
  4181. @GNUTAR{} version number.
  4182. If @var{command} exits with a non-0 status, @command{tar} will print
  4183. an error message similar to the following:
  4184. @smallexample
  4185. tar: 2345: Child returned status 1
  4186. @end smallexample
  4187. Here, @samp{2345} is the PID of the finished process.
  4188. If this behavior is not wanted, use @option{--ignore-command-error}:
  4189. @table @option
  4190. @opindex ignore-command-error
  4191. @item --ignore-command-error
  4192. Ignore exit codes of subprocesses. Notice that if the program
  4193. exits on signal or otherwise terminates abnormally, the error message
  4194. will be printed even if this option is used.
  4195. @opindex no-ignore-command-error
  4196. @item --no-ignore-command-error
  4197. Cancel the effect of any previous @option{--ignore-command-error}
  4198. option. This option is useful if you have set
  4199. @option{--ignore-command-error} in @env{TAR_OPTIONS}
  4200. (@pxref{TAR_OPTIONS}) and wish to temporarily cancel it.
  4201. @end table
  4202. @node remove files
  4203. @unnumberedsubsubsec Removing Files
  4204. @FIXME{The section is too terse. Something more to add? An example,
  4205. maybe?}
  4206. @table @option
  4207. @opindex remove-files
  4208. @item --remove-files
  4209. Remove files after adding them to the archive.
  4210. @end table
  4211. @node Scarce
  4212. @subsection Coping with Scarce Resources
  4213. @UNREVISED
  4214. @cindex Small memory
  4215. @cindex Running out of space
  4216. @menu
  4217. * Starting File::
  4218. * Same Order::
  4219. @end menu
  4220. @node Starting File
  4221. @unnumberedsubsubsec Starting File
  4222. @table @option
  4223. @opindex starting-file
  4224. @item --starting-file=@var{name}
  4225. @itemx -K @var{name}
  4226. Starts an operation in the middle of an archive. Use in conjunction
  4227. with @option{--extract} (@option{--get}, @option{-x}) or @option{--list} (@option{-t}).
  4228. @end table
  4229. @cindex Middle of the archive, starting in the
  4230. If a previous attempt to extract files failed due to lack of disk
  4231. space, you can use @option{--starting-file=@var{name}} (@option{-K
  4232. @var{name}}) to start extracting only after member @var{name} of the
  4233. archive. This assumes, of course, that there is now free space, or
  4234. that you are now extracting into a different file system. (You could
  4235. also choose to suspend @command{tar}, remove unnecessary files from
  4236. the file system, and then restart the same @command{tar} operation.
  4237. In this case, @option{--starting-file} is not necessary.
  4238. @xref{Incremental Dumps}, @xref{interactive}, and @ref{exclude}.)
  4239. @node Same Order
  4240. @unnumberedsubsubsec Same Order
  4241. @table @option
  4242. @cindex Large lists of file names on small machines
  4243. @opindex same-order
  4244. @opindex preserve-order
  4245. @item --same-order
  4246. @itemx --preserve-order
  4247. @itemx -s
  4248. To process large lists of file names on machines with small amounts of
  4249. memory. Use in conjunction with @option{--compare} (@option{--diff},
  4250. @option{-d}), @option{--list} (@option{-t}) or @option{--extract}
  4251. (@option{--get}, @option{-x}).
  4252. @end table
  4253. The @option{--same-order} (@option{--preserve-order}, @option{-s}) option tells @command{tar} that the list of file
  4254. names to be listed or extracted is sorted in the same order as the
  4255. files in the archive. This allows a large list of names to be used,
  4256. even on a small machine that would not otherwise be able to hold all
  4257. the names in memory at the same time. Such a sorted list can easily be
  4258. created by running @samp{tar -t} on the archive and editing its output.
  4259. This option is probably never needed on modern computer systems.
  4260. @node backup
  4261. @section Backup options
  4262. @cindex backup options
  4263. @GNUTAR{} offers options for making backups of files
  4264. before writing new versions. These options control the details of
  4265. these backups. They may apply to the archive itself before it is
  4266. created or rewritten, as well as individual extracted members. Other
  4267. @acronym{GNU} programs (@command{cp}, @command{install}, @command{ln},
  4268. and @command{mv}, for example) offer similar options.
  4269. Backup options may prove unexpectedly useful when extracting archives
  4270. containing many members having identical name, or when extracting archives
  4271. on systems having file name limitations, making different members appear
  4272. has having similar names through the side-effect of name truncation.
  4273. (This is true only if we have a good scheme for truncated backup names,
  4274. which I'm not sure at all: I suspect work is needed in this area.)
  4275. When any existing file is backed up before being overwritten by extraction,
  4276. then clashing files are automatically be renamed to be unique, and the
  4277. true name is kept for only the last file of a series of clashing files.
  4278. By using verbose mode, users may track exactly what happens.
  4279. At the detail level, some decisions are still experimental, and may
  4280. change in the future, we are waiting comments from our users. So, please
  4281. do not learn to depend blindly on the details of the backup features.
  4282. For example, currently, directories themselves are never renamed through
  4283. using these options, so, extracting a file over a directory still has
  4284. good chances to fail. Also, backup options apply to created archives,
  4285. not only to extracted members. For created archives, backups will not
  4286. be attempted when the archive is a block or character device, or when it
  4287. refers to a remote file.
  4288. For the sake of simplicity and efficiency, backups are made by renaming old
  4289. files prior to creation or extraction, and not by copying. The original
  4290. name is restored if the file creation fails. If a failure occurs after a
  4291. partial extraction of a file, both the backup and the partially extracted
  4292. file are kept.
  4293. @table @samp
  4294. @item --backup[=@var{method}]
  4295. @opindex backup
  4296. @vindex VERSION_CONTROL
  4297. @cindex backups
  4298. Back up files that are about to be overwritten or removed.
  4299. Without this option, the original versions are destroyed.
  4300. Use @var{method} to determine the type of backups made.
  4301. If @var{method} is not specified, use the value of the @env{VERSION_CONTROL}
  4302. environment variable. And if @env{VERSION_CONTROL} is not set,
  4303. use the @samp{existing} method.
  4304. @vindex version-control @r{Emacs variable}
  4305. This option corresponds to the Emacs variable @samp{version-control};
  4306. the same values for @var{method} are accepted as in Emacs. This option
  4307. also allows more descriptive names. The valid @var{method}s are:
  4308. @table @samp
  4309. @item t
  4310. @itemx numbered
  4311. @cindex numbered @r{backup method}
  4312. Always make numbered backups.
  4313. @item nil
  4314. @itemx existing
  4315. @cindex existing @r{backup method}
  4316. Make numbered backups of files that already have them, simple backups
  4317. of the others.
  4318. @item never
  4319. @itemx simple
  4320. @cindex simple @r{backup method}
  4321. Always make simple backups.
  4322. @end table
  4323. @item --suffix=@var{suffix}
  4324. @opindex suffix
  4325. @cindex backup suffix
  4326. @vindex SIMPLE_BACKUP_SUFFIX
  4327. Append @var{suffix} to each backup file made with @option{--backup}. If this
  4328. option is not specified, the value of the @env{SIMPLE_BACKUP_SUFFIX}
  4329. environment variable is used. And if @env{SIMPLE_BACKUP_SUFFIX} is not
  4330. set, the default is @samp{~}, just as in Emacs.
  4331. @end table
  4332. @node Applications
  4333. @section Notable @command{tar} Usages
  4334. @UNREVISED
  4335. @FIXME{Using Unix file linking capability to recreate directory
  4336. structures---linking files into one subdirectory and then
  4337. @command{tar}ring that directory.}
  4338. @FIXME{Nice hairy example using absolute-names, newer, etc.}
  4339. @findex uuencode
  4340. You can easily use archive files to transport a group of files from
  4341. one system to another: put all relevant files into an archive on one
  4342. computer system, transfer the archive to another system, and extract
  4343. the contents there. The basic transfer medium might be magnetic tape,
  4344. Internet FTP, or even electronic mail (though you must encode the
  4345. archive with @command{uuencode} in order to transport it properly by
  4346. mail). Both machines do not have to use the same operating system, as
  4347. long as they both support the @command{tar} program.
  4348. For example, here is how you might copy a directory's contents from
  4349. one disk to another, while preserving the dates, modes, owners and
  4350. link-structure of all the files therein. In this case, the transfer
  4351. medium is a @dfn{pipe}, which is one a Unix redirection mechanism:
  4352. @smallexample
  4353. $ @kbd{(cd sourcedir; tar -cf - .) | (cd targetdir; tar -xf -)}
  4354. @end smallexample
  4355. @noindent
  4356. You can avoid subshells by using @option{-C} option:
  4357. @smallexample
  4358. $ @kbd{tar -C sourcedir -cf - . | tar -C targetdir -xf -}
  4359. @end smallexample
  4360. @noindent
  4361. The command also works using short option forms:
  4362. @smallexample
  4363. $ @kbd{(cd sourcedir; tar --create --file=- . ) \
  4364. | (cd targetdir; tar --extract --file=-)}
  4365. # Or:
  4366. $ @kbd{tar --directory sourcedir --create --file=- . ) \
  4367. | tar --directory targetdir --extract --file=-}
  4368. @end smallexample
  4369. @noindent
  4370. This is one of the easiest methods to transfer a @command{tar} archive.
  4371. @node looking ahead
  4372. @section Looking Ahead: The Rest of this Manual
  4373. You have now seen how to use all eight of the operations available to
  4374. @command{tar}, and a number of the possible options. The next chapter
  4375. explains how to choose and change file and archive names, how to use
  4376. files to store names of other files which you can then call as
  4377. arguments to @command{tar} (this can help you save time if you expect to
  4378. archive the same list of files a number of times), and so forth.
  4379. @FIXME{in case it's not obvious, i'm making this up in some sense
  4380. based on my limited memory of what the next chapter *really* does. i
  4381. just wanted to flesh out this final section a little bit so i'd
  4382. remember to stick it in here. :-)}
  4383. If there are too many files to conveniently list on the command line,
  4384. you can list the names in a file, and @command{tar} will read that file.
  4385. @xref{files}.
  4386. There are various ways of causing @command{tar} to skip over some files,
  4387. and not archive them. @xref{Choosing}.
  4388. @node Backups
  4389. @chapter Performing Backups and Restoring Files
  4390. @UNREVISED
  4391. @GNUTAR{} is distributed along with the scripts
  4392. which the Free Software Foundation uses for performing backups. There
  4393. is no corresponding scripts available yet for doing restoration of
  4394. files. Even if there is a good chance those scripts may be satisfying
  4395. to you, they are not the only scripts or methods available for doing
  4396. backups and restore. You may well create your own, or use more
  4397. sophisticated packages dedicated to that purpose.
  4398. Some users are enthusiastic about @code{Amanda} (The Advanced Maryland
  4399. Automatic Network Disk Archiver), a backup system developed by James
  4400. da Silva @file{jds@@cs.umd.edu} and available on many Unix systems.
  4401. This is free software, and it is available at these places:
  4402. @smallexample
  4403. http://www.cs.umd.edu/projects/amanda/amanda.html
  4404. ftp://ftp.cs.umd.edu/pub/amanda
  4405. @end smallexample
  4406. @FIXME{
  4407. Here is a possible plan for a future documentation about the backuping
  4408. scripts which are provided within the @GNUTAR{}
  4409. distribution.
  4410. @itemize @bullet
  4411. @item dumps
  4412. @itemize @minus
  4413. @item what are dumps
  4414. @item different levels of dumps
  4415. @itemize +
  4416. @item full dump = dump everything
  4417. @item level 1, level 2 dumps etc
  4418. A level @var{n} dump dumps everything changed since the last level
  4419. @var{n}-1 dump (?)
  4420. @end itemize
  4421. @item how to use scripts for dumps (ie, the concept)
  4422. @itemize +
  4423. @item scripts to run after editing backup specs (details)
  4424. @end itemize
  4425. @item Backup Specs, what is it.
  4426. @itemize +
  4427. @item how to customize
  4428. @item actual text of script [/sp/dump/backup-specs]
  4429. @end itemize
  4430. @item Problems
  4431. @itemize +
  4432. @item rsh doesn't work
  4433. @item rtape isn't installed
  4434. @item (others?)
  4435. @end itemize
  4436. @item the @option{--incremental} option of tar
  4437. @item tapes
  4438. @itemize +
  4439. @item write protection
  4440. @item types of media, different sizes and types, useful for different things
  4441. @item files and tape marks
  4442. one tape mark between files, two at end.
  4443. @item positioning the tape
  4444. MT writes two at end of write,
  4445. backspaces over one when writing again.
  4446. @end itemize
  4447. @end itemize
  4448. @end itemize
  4449. }
  4450. This chapter documents both the provided shell scripts and @command{tar}
  4451. options which are more specific to usage as a backup tool.
  4452. To @dfn{back up} a file system means to create archives that contain
  4453. all the files in that file system. Those archives can then be used to
  4454. restore any or all of those files (for instance if a disk crashes or a
  4455. file is accidentally deleted). File system @dfn{backups} are also
  4456. called @dfn{dumps}.
  4457. @menu
  4458. * Full Dumps:: Using @command{tar} to Perform Full Dumps
  4459. * Incremental Dumps:: Using @command{tar} to Perform Incremental Dumps
  4460. * Backup Levels:: Levels of Backups
  4461. * Backup Parameters:: Setting Parameters for Backups and Restoration
  4462. * Scripted Backups:: Using the Backup Scripts
  4463. * Scripted Restoration:: Using the Restore Script
  4464. @end menu
  4465. @node Full Dumps
  4466. @section Using @command{tar} to Perform Full Dumps
  4467. @UNREVISED
  4468. @cindex full dumps
  4469. @cindex dumps, full
  4470. @cindex corrupted archives
  4471. Full dumps should only be made when no other people or programs
  4472. are modifying files in the file system. If files are modified while
  4473. @command{tar} is making the backup, they may not be stored properly in
  4474. the archive, in which case you won't be able to restore them if you
  4475. have to. (Files not being modified are written with no trouble, and do
  4476. not corrupt the entire archive.)
  4477. You will want to use the @option{--label=@var{archive-label}}
  4478. (@option{-V @var{archive-label}}) option to give the archive a
  4479. volume label, so you can tell what this archive is even if the label
  4480. falls off the tape, or anything like that.
  4481. Unless the file system you are dumping is guaranteed to fit on
  4482. one volume, you will need to use the @option{--multi-volume} (@option{-M}) option.
  4483. Make sure you have enough tapes on hand to complete the backup.
  4484. If you want to dump each file system separately you will need to use
  4485. the @option{--one-file-system} option to prevent
  4486. @command{tar} from crossing file system boundaries when storing
  4487. (sub)directories.
  4488. The @option{--incremental} (@option{-G}) (@pxref{Incremental Dumps})
  4489. option is not needed, since this is a complete copy of everything in
  4490. the file system, and a full restore from this backup would only be
  4491. done onto a completely
  4492. empty disk.
  4493. Unless you are in a hurry, and trust the @command{tar} program (and your
  4494. tapes), it is a good idea to use the @option{--verify} (@option{-W})
  4495. option, to make sure your files really made it onto the dump properly.
  4496. This will also detect cases where the file was modified while (or just
  4497. after) it was being archived. Not all media (notably cartridge tapes)
  4498. are capable of being verified, unfortunately.
  4499. @node Incremental Dumps
  4500. @section Using @command{tar} to Perform Incremental Dumps
  4501. @dfn{Incremental backup} is a special form of @GNUTAR{} archive that
  4502. stores additional metadata so that exact state of the file system
  4503. can be restored when extracting the archive.
  4504. @GNUTAR{} currently offers two options for handling incremental
  4505. backups: @option{--listed-incremental=@var{snapshot-file}} (@option{-g
  4506. @var{snapshot-file}}) and @option{--incremental} (@option{-G}).
  4507. @opindex listed-incremental
  4508. The option @option{--listed-incremental} instructs tar to operate on
  4509. an incremental archive with additional metadata stored in a standalone
  4510. file, called a @dfn{snapshot file}. The purpose of this file is to help
  4511. determine which files have been changed, added or deleted since the
  4512. last backup, so that the next incremental backup will contain only
  4513. modified files. The name of the snapshot file is given as an argument
  4514. to the option:
  4515. @table @option
  4516. @item --listed-incremental=@var{file}
  4517. @itemx -g @var{file}
  4518. Handle incremental backups with snapshot data in @var{file}.
  4519. @end table
  4520. To create an incremental backup, you would use
  4521. @option{--listed-incremental} together with @option{--create}
  4522. (@pxref{create}). For example:
  4523. @smallexample
  4524. $ @kbd{tar --create \
  4525. --file=archive.1.tar \
  4526. --listed-incremental=/var/log/usr.snar \
  4527. /usr}
  4528. @end smallexample
  4529. This will create in @file{archive.1.tar} an incremental backup of
  4530. the @file{/usr} file system, storing additional metadata in the file
  4531. @file{/var/log/usr.snar}. If this file does not exist, it will be
  4532. created. The created archive will then be a @dfn{level 0 backup};
  4533. please see the next section for more on backup levels.
  4534. Otherwise, if the file @file{/var/log/usr.snar} exists, it
  4535. determines which files are modified. In this case only these files will be
  4536. stored in the archive. Suppose, for example, that after running the
  4537. above command, you delete file @file{/usr/doc/old} and create
  4538. directory @file{/usr/local/db} with the following contents:
  4539. @smallexample
  4540. $ @kbd{ls /usr/local/db}
  4541. /usr/local/db/data
  4542. /usr/local/db/index
  4543. @end smallexample
  4544. Some time later you create another incremental backup. You will
  4545. then see:
  4546. @smallexample
  4547. $ @kbd{tar --create \
  4548. --file=archive.2.tar \
  4549. --listed-incremental=/var/log/usr.snar \
  4550. /usr}
  4551. tar: usr/local/db: Directory is new
  4552. usr/local/db/
  4553. usr/local/db/data
  4554. usr/local/db/index
  4555. @end smallexample
  4556. @noindent
  4557. The created archive @file{archive.2.tar} will contain only these
  4558. three members. This archive is called a @dfn{level 1 backup}. Notice
  4559. that @file{/var/log/usr.snar} will be updated with the new data, so if
  4560. you plan to create more @samp{level 1} backups, it is necessary to
  4561. create a working copy of the snapshot file before running
  4562. @command{tar}. The above example will then be modified as follows:
  4563. @smallexample
  4564. $ @kbd{cp /var/log/usr.snar /var/log/usr.snar-1}
  4565. $ @kbd{tar --create \
  4566. --file=archive.2.tar \
  4567. --listed-incremental=/var/log/usr.snar-1 \
  4568. /usr}
  4569. @end smallexample
  4570. Incremental dumps depend crucially on time stamps, so the results are
  4571. unreliable if you modify a file's time stamps during dumping (e.g.,
  4572. with the @option{--atime-preserve=replace} option), or if you set the clock
  4573. backwards.
  4574. @anchor{device numbers}
  4575. @cindex Device numbers, using in incremental backups
  4576. Metadata stored in snapshot files include device numbers, which,
  4577. obviously are supposed to be a non-volatile values. However, it turns
  4578. out that @acronym{NFS} devices have undependable values when an automounter
  4579. gets in the picture. This can lead to a great deal of spurious
  4580. redumping in incremental dumps, so it is somewhat useless to compare
  4581. two @acronym{NFS} devices numbers over time. The solution implemented
  4582. currently is to considers all @acronym{NFS} devices as being equal
  4583. when it comes to comparing directories; this is fairly gross, but
  4584. there does not seem to be a better way to go.
  4585. Apart from using @acronym{NFS}, there are a number of cases where
  4586. relying on device numbers can cause spurious redumping of unmodified
  4587. files. For example, this occurs when archiving @acronym{LVM} snapshot
  4588. volumes. To avoid this, use @option{--no-check-device} option:
  4589. @table @option
  4590. @xopindex{no-check-device, described}
  4591. @item --no-check-device
  4592. Do not rely on device numbers when preparing a list of changed files
  4593. for an incremental dump.
  4594. @xopindex{check-device, described}
  4595. @item --check-device
  4596. Use device numbers when preparing a list of changed files
  4597. for an incremental dump. This is the default behavior. The purpose
  4598. of this option is to undo the effect of the @option{--no-check-device}
  4599. if it was given in @env{TAR_OPTIONS} environment variable
  4600. (@pxref{TAR_OPTIONS}).
  4601. @end table
  4602. There is also another way to cope with changing device numbers. It is
  4603. described in detail in @ref{Fixing Snapshot Files}.
  4604. Note that incremental archives use @command{tar} extensions and may
  4605. not be readable by non-@acronym{GNU} versions of the @command{tar} program.
  4606. @xopindex{listed-incremental, using with @option{--extract}}
  4607. @xopindex{extract, using with @option{--listed-incremental}}
  4608. To extract from the incremental dumps, use
  4609. @option{--listed-incremental} together with @option{--extract}
  4610. option (@pxref{extracting files}). In this case, @command{tar} does
  4611. not need to access snapshot file, since all the data necessary for
  4612. extraction are stored in the archive itself. So, when extracting, you
  4613. can give whatever argument to @option{--listed-incremental}, the usual
  4614. practice is to use @option{--listed-incremental=/dev/null}.
  4615. Alternatively, you can use @option{--incremental}, which needs no
  4616. arguments. In general, @option{--incremental} (@option{-G}) can be
  4617. used as a shortcut for @option{--listed-incremental} when listing or
  4618. extracting incremental backups (for more information, regarding this
  4619. option, @pxref{incremental-op}).
  4620. When extracting from the incremental backup @GNUTAR{} attempts to
  4621. restore the exact state the file system had when the archive was
  4622. created. In particular, it will @emph{delete} those files in the file
  4623. system that did not exist in their directories when the archive was
  4624. created. If you have created several levels of incremental files,
  4625. then in order to restore the exact contents the file system had when
  4626. the last level was created, you will need to restore from all backups
  4627. in turn. Continuing our example, to restore the state of @file{/usr}
  4628. file system, one would do@footnote{Notice, that since both archives
  4629. were created without @option{-P} option (@pxref{absolute}), these
  4630. commands should be run from the root file system.}:
  4631. @smallexample
  4632. $ @kbd{tar --extract \
  4633. --listed-incremental=/dev/null \
  4634. --file archive.1.tar}
  4635. $ @kbd{tar --extract \
  4636. --listed-incremental=/dev/null \
  4637. --file archive.2.tar}
  4638. @end smallexample
  4639. To list the contents of an incremental archive, use @option{--list}
  4640. (@pxref{list}), as usual. To obtain more information about the
  4641. archive, use @option{--listed-incremental} or @option{--incremental}
  4642. combined with two @option{--verbose} options@footnote{Two
  4643. @option{--verbose} options were selected to avoid breaking usual
  4644. verbose listing output (@option{--list --verbose}) when using in
  4645. scripts.
  4646. @xopindex{incremental, using with @option{--list}}
  4647. @xopindex{listed-incremental, using with @option{--list}}
  4648. @xopindex{list, using with @option{--incremental}}
  4649. @xopindex{list, using with @option{--listed-incremental}}
  4650. Versions of @GNUTAR{} up to 1.15.1 used to dump verbatim binary
  4651. contents of the DUMPDIR header (with terminating nulls) when
  4652. @option{--incremental} or @option{--listed-incremental} option was
  4653. given, no matter what the verbosity level. This behavior, and,
  4654. especially, the binary output it produced were considered inconvenient
  4655. and were changed in version 1.16}:
  4656. @smallexample
  4657. @kbd{tar --list --incremental --verbose --verbose archive.tar}
  4658. @end smallexample
  4659. This command will print, for each directory in the archive, the list
  4660. of files in that directory at the time the archive was created. This
  4661. information is put out in a format which is both human-readable and
  4662. unambiguous for a program: each file name is printed as
  4663. @smallexample
  4664. @var{x} @var{file}
  4665. @end smallexample
  4666. @noindent
  4667. where @var{x} is a letter describing the status of the file: @samp{Y}
  4668. if the file is present in the archive, @samp{N} if the file is not
  4669. included in the archive, or a @samp{D} if the file is a directory (and
  4670. is included in the archive). @xref{Dumpdir}, for the detailed
  4671. description of dumpdirs and status codes. Each such
  4672. line is terminated by a newline character. The last line is followed
  4673. by an additional newline to indicate the end of the data.
  4674. @anchor{incremental-op}The option @option{--incremental} (@option{-G})
  4675. gives the same behavior as @option{--listed-incremental} when used
  4676. with @option{--list} and @option{--extract} options. When used with
  4677. @option{--create} option, it creates an incremental archive without
  4678. creating snapshot file. Thus, it is impossible to create several
  4679. levels of incremental backups with @option{--incremental} option.
  4680. @node Backup Levels
  4681. @section Levels of Backups
  4682. An archive containing all the files in the file system is called a
  4683. @dfn{full backup} or @dfn{full dump}. You could insure your data by
  4684. creating a full dump every day. This strategy, however, would waste a
  4685. substantial amount of archive media and user time, as unchanged files
  4686. are daily re-archived.
  4687. It is more efficient to do a full dump only occasionally. To back up
  4688. files between full dumps, you can use @dfn{incremental dumps}. A @dfn{level
  4689. one} dump archives all the files that have changed since the last full
  4690. dump.
  4691. A typical dump strategy would be to perform a full dump once a week,
  4692. and a level one dump once a day. This means some versions of files
  4693. will in fact be archived more than once, but this dump strategy makes
  4694. it possible to restore a file system to within one day of accuracy by
  4695. only extracting two archives---the last weekly (full) dump and the
  4696. last daily (level one) dump. The only information lost would be in
  4697. files changed or created since the last daily backup. (Doing dumps
  4698. more than once a day is usually not worth the trouble).
  4699. @GNUTAR{} comes with scripts you can use to do full
  4700. and level-one (actually, even level-two and so on) dumps. Using
  4701. scripts (shell programs) to perform backups and restoration is a
  4702. convenient and reliable alternative to typing out file name lists
  4703. and @command{tar} commands by hand.
  4704. Before you use these scripts, you need to edit the file
  4705. @file{backup-specs}, which specifies parameters used by the backup
  4706. scripts and by the restore script. This file is usually located
  4707. in @file{/etc/backup} directory. @xref{Backup Parameters}, for its
  4708. detailed description. Once the backup parameters are set, you can
  4709. perform backups or restoration by running the appropriate script.
  4710. The name of the backup script is @code{backup}. The name of the
  4711. restore script is @code{restore}. The following sections describe
  4712. their use in detail.
  4713. @emph{Please Note:} The backup and restoration scripts are
  4714. designed to be used together. While it is possible to restore files by
  4715. hand from an archive which was created using a backup script, and to create
  4716. an archive by hand which could then be extracted using the restore script,
  4717. it is easier to use the scripts. @xref{Incremental Dumps}, before
  4718. making such an attempt.
  4719. @node Backup Parameters
  4720. @section Setting Parameters for Backups and Restoration
  4721. The file @file{backup-specs} specifies backup parameters for the
  4722. backup and restoration scripts provided with @command{tar}. You must
  4723. edit @file{backup-specs} to fit your system configuration and schedule
  4724. before using these scripts.
  4725. Syntactically, @file{backup-specs} is a shell script, containing
  4726. mainly variable assignments. However, any valid shell construct
  4727. is allowed in this file. Particularly, you may wish to define
  4728. functions within that script (e.g., see @code{RESTORE_BEGIN} below).
  4729. For more information about shell script syntax, please refer to
  4730. @url{http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#ta
  4731. g_02, the definition of the Shell Command Language}. See also
  4732. @ref{Top,,Bash Features,bashref,Bash Reference Manual}.
  4733. The shell variables controlling behavior of @code{backup} and
  4734. @code{restore} are described in the following subsections.
  4735. @menu
  4736. * General-Purpose Variables::
  4737. * Magnetic Tape Control::
  4738. * User Hooks::
  4739. * backup-specs example:: An Example Text of @file{Backup-specs}
  4740. @end menu
  4741. @node General-Purpose Variables
  4742. @subsection General-Purpose Variables
  4743. @defvr {Backup variable} ADMINISTRATOR
  4744. The user name of the backup administrator. @code{Backup} scripts
  4745. sends a backup report to this address.
  4746. @end defvr
  4747. @defvr {Backup variable} BACKUP_HOUR
  4748. The hour at which the backups are done. This can be a number from 0
  4749. to 23, or the time specification in form @var{hours}:@var{minutes},
  4750. or the string @samp{now}.
  4751. This variable is used by @code{backup}. Its value may be overridden
  4752. using @option{--time} option (@pxref{Scripted Backups}).
  4753. @end defvr
  4754. @defvr {Backup variable} TAPE_FILE
  4755. The device @command{tar} writes the archive to. If @var{TAPE_FILE}
  4756. is a remote archive (@pxref{remote-dev}), backup script will suppose
  4757. that your @command{mt} is able to access remote devices. If @var{RSH}
  4758. (@pxref{RSH}) is set, @option{--rsh-command} option will be added to
  4759. invocations of @command{mt}.
  4760. @end defvr
  4761. @defvr {Backup variable} BLOCKING
  4762. The blocking factor @command{tar} will use when writing the dump archive.
  4763. @xref{Blocking Factor}.
  4764. @end defvr
  4765. @defvr {Backup variable} BACKUP_DIRS
  4766. A list of file systems to be dumped (for @code{backup}), or restored
  4767. (for @code{restore}). You can include any directory
  4768. name in the list --- subdirectories on that file system will be
  4769. included, regardless of how they may look to other networked machines.
  4770. Subdirectories on other file systems will be ignored.
  4771. The host name specifies which host to run @command{tar} on, and should
  4772. normally be the host that actually contains the file system. However,
  4773. the host machine must have @GNUTAR{} installed, and
  4774. must be able to access the directory containing the backup scripts and
  4775. their support files using the same file name that is used on the
  4776. machine where the scripts are run (i.e., what @command{pwd} will print
  4777. when in that directory on that machine). If the host that contains
  4778. the file system does not have this capability, you can specify another
  4779. host as long as it can access the file system through @acronym{NFS}.
  4780. If the list of file systems is very long you may wish to put it
  4781. in a separate file. This file is usually named
  4782. @file{/etc/backup/dirs}, but this name may be overridden in
  4783. @file{backup-specs} using @code{DIRLIST} variable.
  4784. @end defvr
  4785. @defvr {Backup variable} DIRLIST
  4786. The name of the file that contains a list of file systems to backup
  4787. or restore. By default it is @file{/etc/backup/dirs}.
  4788. @end defvr
  4789. @defvr {Backup variable} BACKUP_FILES
  4790. A list of individual files to be dumped (for @code{backup}), or restored
  4791. (for @code{restore}). These should be accessible from the machine on
  4792. which the backup script is run.
  4793. If the list of file systems is very long you may wish to store it
  4794. in a separate file. This file is usually named
  4795. @file{/etc/backup/files}, but this name may be overridden in
  4796. @file{backup-specs} using @code{FILELIST} variable.
  4797. @end defvr
  4798. @defvr {Backup variable} FILELIST
  4799. The name of the file that contains a list of individual files to backup
  4800. or restore. By default it is @file{/etc/backup/files}.
  4801. @end defvr
  4802. @defvr {Backup variable} MT
  4803. Full file name of @command{mt} binary.
  4804. @end defvr
  4805. @defvr {Backup variable} RSH
  4806. @anchor{RSH}
  4807. Full file name of @command{rsh} binary or its equivalent. You may wish to
  4808. set it to @code{ssh}, to improve security. In this case you will have
  4809. to use public key authentication.
  4810. @end defvr
  4811. @defvr {Backup variable} RSH_COMMAND
  4812. Full file name of @command{rsh} binary on remote machines. This will
  4813. be passed via @option{--rsh-command} option to the remote invocation
  4814. of @GNUTAR{}.
  4815. @end defvr
  4816. @defvr {Backup variable} VOLNO_FILE
  4817. Name of temporary file to hold volume numbers. This needs to be accessible
  4818. by all the machines which have file systems to be dumped.
  4819. @end defvr
  4820. @defvr {Backup variable} XLIST
  4821. Name of @dfn{exclude file list}. An @dfn{exclude file list} is a file
  4822. located on the remote machine and containing the list of files to
  4823. be excluded from the backup. Exclude file lists are searched in
  4824. /etc/tar-backup directory. A common use for exclude file lists
  4825. is to exclude files containing security-sensitive information
  4826. (e.g., @file{/etc/shadow} from backups).
  4827. This variable affects only @code{backup}.
  4828. @end defvr
  4829. @defvr {Backup variable} SLEEP_TIME
  4830. Time to sleep between dumps of any two successive file systems
  4831. This variable affects only @code{backup}.
  4832. @end defvr
  4833. @defvr {Backup variable} DUMP_REMIND_SCRIPT
  4834. Script to be run when it's time to insert a new tape in for the next
  4835. volume. Administrators may want to tailor this script for their site.
  4836. If this variable isn't set, @GNUTAR{} will display its built-in
  4837. prompt, and will expect confirmation from the console. For the
  4838. description of the default prompt, see @ref{change volume prompt}.
  4839. @end defvr
  4840. @defvr {Backup variable} SLEEP_MESSAGE
  4841. Message to display on the terminal while waiting for dump time. Usually
  4842. this will just be some literal text.
  4843. @end defvr
  4844. @defvr {Backup variable} TAR
  4845. Full file name of the @GNUTAR{} executable. If this is not set, backup
  4846. scripts will search @command{tar} in the current shell path.
  4847. @end defvr
  4848. @node Magnetic Tape Control
  4849. @subsection Magnetic Tape Control
  4850. Backup scripts access tape device using special @dfn{hook functions}.
  4851. These functions take a single argument -- the name of the tape
  4852. device. Their names are kept in the following variables:
  4853. @defvr {Backup variable} MT_BEGIN
  4854. The name of @dfn{begin} function. This function is called before
  4855. accessing the drive. By default it retensions the tape:
  4856. @smallexample
  4857. MT_BEGIN=mt_begin
  4858. mt_begin() @{
  4859. mt -f "$1" retension
  4860. @}
  4861. @end smallexample
  4862. @end defvr
  4863. @defvr {Backup variable} MT_REWIND
  4864. The name of @dfn{rewind} function. The default definition is as
  4865. follows:
  4866. @smallexample
  4867. MT_REWIND=mt_rewind
  4868. mt_rewind() @{
  4869. mt -f "$1" rewind
  4870. @}
  4871. @end smallexample
  4872. @end defvr
  4873. @defvr {Backup variable} MT_OFFLINE
  4874. The name of the function switching the tape off line. By default
  4875. it is defined as follows:
  4876. @smallexample
  4877. MT_OFFLINE=mt_offline
  4878. mt_offline() @{
  4879. mt -f "$1" offl
  4880. @}
  4881. @end smallexample
  4882. @end defvr
  4883. @defvr {Backup variable} MT_STATUS
  4884. The name of the function used to obtain the status of the archive device,
  4885. including error count. Default definition:
  4886. @smallexample
  4887. MT_STATUS=mt_status
  4888. mt_status() @{
  4889. mt -f "$1" status
  4890. @}
  4891. @end smallexample
  4892. @end defvr
  4893. @node User Hooks
  4894. @subsection User Hooks
  4895. @dfn{User hooks} are shell functions executed before and after
  4896. each @command{tar} invocation. Thus, there are @dfn{backup
  4897. hooks}, which are executed before and after dumping each file
  4898. system, and @dfn{restore hooks}, executed before and
  4899. after restoring a file system. Each user hook is a shell function
  4900. taking four arguments:
  4901. @deffn {User Hook Function} hook @var{level} @var{host} @var{fs} @var{fsname}
  4902. Its arguments are:
  4903. @table @var
  4904. @item level
  4905. Current backup or restore level.
  4906. @item host
  4907. Name or IP address of the host machine being dumped or restored.
  4908. @item fs
  4909. Full file name of the file system being dumped or restored.
  4910. @item fsname
  4911. File system name with directory separators replaced with colons. This
  4912. is useful, e.g., for creating unique files.
  4913. @end table
  4914. @end deffn
  4915. Following variables keep the names of user hook functions
  4916. @defvr {Backup variable} DUMP_BEGIN
  4917. Dump begin function. It is executed before dumping the file system.
  4918. @end defvr
  4919. @defvr {Backup variable} DUMP_END
  4920. Executed after dumping the file system.
  4921. @end defvr
  4922. @defvr {Backup variable} RESTORE_BEGIN
  4923. Executed before restoring the file system.
  4924. @end defvr
  4925. @defvr {Backup variable} RESTORE_END
  4926. Executed after restoring the file system.
  4927. @end defvr
  4928. @node backup-specs example
  4929. @subsection An Example Text of @file{Backup-specs}
  4930. The following is an example of @file{backup-specs}:
  4931. @smallexample
  4932. # site-specific parameters for file system backup.
  4933. ADMINISTRATOR=friedman
  4934. BACKUP_HOUR=1
  4935. TAPE_FILE=/dev/nrsmt0
  4936. # Use @code{ssh} instead of the less secure @code{rsh}
  4937. RSH=/usr/bin/ssh
  4938. RSH_COMMAND=/usr/bin/ssh
  4939. # Override MT_STATUS function:
  4940. my_status() @{
  4941. mts -t $TAPE_FILE
  4942. @}
  4943. MT_STATUS=my_status
  4944. # Disable MT_OFFLINE function
  4945. MT_OFFLINE=:
  4946. BLOCKING=124
  4947. BACKUP_DIRS="
  4948. albert:/fs/fsf
  4949. apple-gunkies:/gd
  4950. albert:/fs/gd2
  4951. albert:/fs/gp
  4952. geech:/usr/jla
  4953. churchy:/usr/roland
  4954. albert:/
  4955. albert:/usr
  4956. apple-gunkies:/
  4957. apple-gunkies:/usr
  4958. gnu:/hack
  4959. gnu:/u
  4960. apple-gunkies:/com/mailer/gnu
  4961. apple-gunkies:/com/archive/gnu"
  4962. BACKUP_FILES="/com/mailer/aliases /com/mailer/league*[a-z]"
  4963. @end smallexample
  4964. @node Scripted Backups
  4965. @section Using the Backup Scripts
  4966. The syntax for running a backup script is:
  4967. @smallexample
  4968. backup --level=@var{level} --time=@var{time}
  4969. @end smallexample
  4970. The @option{level} option requests the dump level. Thus, to produce
  4971. a full dump, specify @code{--level=0} (this is the default, so
  4972. @option{--level} may be omitted if its value is @code{0}).
  4973. @footnote{For backward compatibility, the @code{backup} will also
  4974. try to deduce the requested dump level from the name of the
  4975. script itself. If the name consists of a string @samp{level-}
  4976. followed by a single decimal digit, that digit is taken as
  4977. the dump level number. Thus, you may create a link from @code{backup}
  4978. to @code{level-1} and then run @code{level-1} whenever you need to
  4979. create a level one dump.}
  4980. The @option{--time} option determines when should the backup be
  4981. run. @var{Time} may take three forms:
  4982. @table @asis
  4983. @item @var{hh}:@var{mm}
  4984. The dump must be run at @var{hh} hours @var{mm} minutes.
  4985. @item @var{hh}
  4986. The dump must be run at @var{hh} hours
  4987. @item now
  4988. The dump must be run immediately.
  4989. @end table
  4990. You should start a script with a tape or disk mounted. Once you
  4991. start a script, it prompts you for new tapes or disks as it
  4992. needs them. Media volumes don't have to correspond to archive
  4993. files --- a multi-volume archive can be started in the middle of a
  4994. tape that already contains the end of another multi-volume archive.
  4995. The @code{restore} script prompts for media by its archive volume,
  4996. so to avoid an error message you should keep track of which tape
  4997. (or disk) contains which volume of the archive (@pxref{Scripted
  4998. Restoration}).
  4999. The backup scripts write two files on the file system. The first is a
  5000. record file in @file{/etc/tar-backup/}, which is used by the scripts
  5001. to store and retrieve information about which files were dumped. This
  5002. file is not meant to be read by humans, and should not be deleted by
  5003. them. @xref{Snapshot Files}, for a more detailed explanation of this
  5004. file.
  5005. The second file is a log file containing the names of the file systems
  5006. and files dumped, what time the backup was made, and any error
  5007. messages that were generated, as well as how much space was left in
  5008. the media volume after the last volume of the archive was written.
  5009. You should check this log file after every backup. The file name is
  5010. @file{log-@var{mm-dd-yyyy}-level-@var{n}}, where @var{mm-dd-yyyy}
  5011. represents current date, and @var{n} represents current dump level number.
  5012. The script also prints the name of each system being dumped to the
  5013. standard output.
  5014. Following is the full list of options accepted by @code{backup}
  5015. script:
  5016. @table @option
  5017. @item -l @var{level}
  5018. @itemx --level=@var{level}
  5019. Do backup level @var{level} (default 0).
  5020. @item -f
  5021. @itemx --force
  5022. Force backup even if today's log file already exists.
  5023. @item -v[@var{level}]
  5024. @itemx --verbose[=@var{level}]
  5025. Set verbosity level. The higher the level is, the more debugging
  5026. information will be output during execution. Default @var{level}
  5027. is 100, which means the highest debugging level.
  5028. @item -t @var{start-time}
  5029. @itemx --time=@var{start-time}
  5030. Wait till @var{time}, then do backup.
  5031. @item -h
  5032. @itemx --help
  5033. Display short help message and exit.
  5034. @item -V
  5035. @itemx --version
  5036. Display information about the program's name, version, origin and legal
  5037. status, all on standard output, and then exit successfully.
  5038. @end table
  5039. @node Scripted Restoration
  5040. @section Using the Restore Script
  5041. To restore files that were archived using a scripted backup, use the
  5042. @code{restore} script. Its usage is quite straightforward. In the
  5043. simplest form, invoke @code{restore --all}, it will
  5044. then restore all the file systems and files specified in
  5045. @file{backup-specs} (@pxref{General-Purpose Variables,BACKUP_DIRS}).
  5046. You may select the file systems (and/or files) to restore by
  5047. giving @code{restore} list of @dfn{patterns} in its command
  5048. line. For example, running
  5049. @smallexample
  5050. restore 'albert:*'
  5051. @end smallexample
  5052. @noindent
  5053. will restore all file systems on the machine @samp{albert}. A more
  5054. complicated example:
  5055. @smallexample
  5056. restore 'albert:*' '*:/var'
  5057. @end smallexample
  5058. @noindent
  5059. This command will restore all file systems on the machine @samp{albert}
  5060. as well as @file{/var} file system on all machines.
  5061. By default @code{restore} will start restoring files from the lowest
  5062. available dump level (usually zero) and will continue through
  5063. all available dump levels. There may be situations where such a
  5064. thorough restore is not necessary. For example, you may wish to
  5065. restore only files from the recent level one backup. To do so,
  5066. use @option{--level} option, as shown in the example below:
  5067. @smallexample
  5068. restore --level=1
  5069. @end smallexample
  5070. The full list of options accepted by @code{restore} follows:
  5071. @table @option
  5072. @item -a
  5073. @itemx --all
  5074. Restore all file systems and files specified in @file{backup-specs}
  5075. @item -l @var{level}
  5076. @itemx --level=@var{level}
  5077. Start restoring from the given backup level, instead of the default 0.
  5078. @item -v[@var{level}]
  5079. @itemx --verbose[=@var{level}]
  5080. Set verbosity level. The higher the level is, the more debugging
  5081. information will be output during execution. Default @var{level}
  5082. is 100, which means the highest debugging level.
  5083. @item -h
  5084. @itemx --help
  5085. Display short help message and exit.
  5086. @item -V
  5087. @itemx --version
  5088. Display information about the program's name, version, origin and legal
  5089. status, all on standard output, and then exit successfully.
  5090. @end table
  5091. You should start the restore script with the media containing the
  5092. first volume of the archive mounted. The script will prompt for other
  5093. volumes as they are needed. If the archive is on tape, you don't need
  5094. to rewind the tape to to its beginning---if the tape head is
  5095. positioned past the beginning of the archive, the script will rewind
  5096. the tape as needed. @xref{Tape Positioning}, for a discussion of tape
  5097. positioning.
  5098. @quotation
  5099. @strong{Warning:} The script will delete files from the active file
  5100. system if they were not in the file system when the archive was made.
  5101. @end quotation
  5102. @xref{Incremental Dumps}, for an explanation of how the script makes
  5103. that determination.
  5104. @node Choosing
  5105. @chapter Choosing Files and Names for @command{tar}
  5106. @UNREVISED
  5107. Certain options to @command{tar} enable you to specify a name for your
  5108. archive. Other options let you decide which files to include or exclude
  5109. from the archive, based on when or whether files were modified, whether
  5110. the file names do or don't match specified patterns, or whether files
  5111. are in specified directories.
  5112. This chapter discusses these options in detail.
  5113. @menu
  5114. * file:: Choosing the Archive's Name
  5115. * Selecting Archive Members::
  5116. * files:: Reading Names from a File
  5117. * exclude:: Excluding Some Files
  5118. * wildcards:: Wildcards Patterns and Matching
  5119. * quoting styles:: Ways of Quoting Special Characters in Names
  5120. * transform:: Modifying File and Member Names
  5121. * after:: Operating Only on New Files
  5122. * recurse:: Descending into Directories
  5123. * one:: Crossing File System Boundaries
  5124. @end menu
  5125. @node file
  5126. @section Choosing and Naming Archive Files
  5127. @UNREVISED
  5128. @cindex Naming an archive
  5129. @cindex Archive Name
  5130. @cindex Choosing an archive file
  5131. @cindex Where is the archive?
  5132. By default, @command{tar} uses an archive file name that was compiled when
  5133. it was built on the system; usually this name refers to some physical
  5134. tape drive on the machine. However, the person who installed @command{tar}
  5135. on the system may not have set the default to a meaningful value as far as
  5136. most users are concerned. As a result, you will usually want to tell
  5137. @command{tar} where to find (or create) the archive. The
  5138. @option{--file=@var{archive-name}} (@option{-f @var{archive-name}})
  5139. option allows you to either specify or name a file to use as the archive
  5140. instead of the default archive file location.
  5141. @table @option
  5142. @xopindex{file, short description}
  5143. @item --file=@var{archive-name}
  5144. @itemx -f @var{archive-name}
  5145. Name the archive to create or operate on. Use in conjunction with
  5146. any operation.
  5147. @end table
  5148. For example, in this @command{tar} command,
  5149. @smallexample
  5150. $ @kbd{tar -cvf collection.tar blues folk jazz}
  5151. @end smallexample
  5152. @noindent
  5153. @file{collection.tar} is the name of the archive. It must directly
  5154. follow the @option{-f} option, since whatever directly follows @option{-f}
  5155. @emph{will} end up naming the archive. If you neglect to specify an
  5156. archive name, you may end up overwriting a file in the working directory
  5157. with the archive you create since @command{tar} will use this file's name
  5158. for the archive name.
  5159. An archive can be saved as a file in the file system, sent through a
  5160. pipe or over a network, or written to an I/O device such as a tape,
  5161. floppy disk, or CD write drive.
  5162. @cindex Writing new archives
  5163. @cindex Archive creation
  5164. If you do not name the archive, @command{tar} uses the value of the
  5165. environment variable @env{TAPE} as the file name for the archive. If
  5166. that is not available, @command{tar} uses a default, compiled-in archive
  5167. name, usually that for tape unit zero (i.e., @file{/dev/tu00}).
  5168. @cindex Standard input and output
  5169. @cindex tar to standard input and output
  5170. If you use @file{-} as an @var{archive-name}, @command{tar} reads the
  5171. archive from standard input (when listing or extracting files), or
  5172. writes it to standard output (when creating an archive). If you use
  5173. @file{-} as an @var{archive-name} when modifying an archive,
  5174. @command{tar} reads the original archive from its standard input and
  5175. writes the entire new archive to its standard output.
  5176. The following example is a convenient way of copying directory
  5177. hierarchy from @file{sourcedir} to @file{targetdir}.
  5178. @smallexample
  5179. $ @kbd{(cd sourcedir; tar -cf - .) | (cd targetdir; tar -xpf -)}
  5180. @end smallexample
  5181. The @option{-C} option allows to avoid using subshells:
  5182. @smallexample
  5183. $ @kbd{tar -C sourcedir -cf - . | tar -C targetdir -xpf -}
  5184. @end smallexample
  5185. In both examples above, the leftmost @command{tar} invocation archives
  5186. the contents of @file{sourcedir} to the standard output, while the
  5187. rightmost one reads this archive from its standard input and
  5188. extracts it. The @option{-p} option tells it to restore permissions
  5189. of the extracted files.
  5190. @cindex Remote devices
  5191. @cindex tar to a remote device
  5192. @anchor{remote-dev}
  5193. To specify an archive file on a device attached to a remote machine,
  5194. use the following:
  5195. @smallexample
  5196. @kbd{--file=@var{hostname}:/@var{dev}/@var{file-name}}
  5197. @end smallexample
  5198. @noindent
  5199. @command{tar} will complete the remote connection, if possible, and
  5200. prompt you for a username and password. If you use
  5201. @option{--file=@@@var{hostname}:/@var{dev}/@var{file-name}}, @command{tar}
  5202. will complete the remote connection, if possible, using your username
  5203. as the username on the remote machine.
  5204. @cindex Local and remote archives
  5205. @anchor{local and remote archives}
  5206. If the archive file name includes a colon (@samp{:}), then it is assumed
  5207. to be a file on another machine. If the archive file is
  5208. @samp{@var{user}@@@var{host}:@var{file}}, then @var{file} is used on the
  5209. host @var{host}. The remote host is accessed using the @command{rsh}
  5210. program, with a username of @var{user}. If the username is omitted
  5211. (along with the @samp{@@} sign), then your user name will be used.
  5212. (This is the normal @command{rsh} behavior.) It is necessary for the
  5213. remote machine, in addition to permitting your @command{rsh} access, to
  5214. have the @file{rmt} program installed (This command is included in
  5215. the @GNUTAR{} distribution and by default is installed under
  5216. @file{@var{prefix}/libexec/rmt}, were @var{prefix} means your
  5217. installation prefix). If you need to use a file whose name includes a
  5218. colon, then the remote tape drive behavior
  5219. can be inhibited by using the @option{--force-local} option.
  5220. When the archive is being created to @file{/dev/null}, @GNUTAR{}
  5221. tries to minimize input and output operations. The Amanda backup
  5222. system, when used with @GNUTAR{}, has an initial sizing pass which
  5223. uses this feature.
  5224. @node Selecting Archive Members
  5225. @section Selecting Archive Members
  5226. @cindex Specifying files to act on
  5227. @cindex Specifying archive members
  5228. @dfn{File Name arguments} specify which files in the file system
  5229. @command{tar} operates on, when creating or adding to an archive, or which
  5230. archive members @command{tar} operates on, when reading or deleting from
  5231. an archive. @xref{Operations}.
  5232. To specify file names, you can include them as the last arguments on
  5233. the command line, as follows:
  5234. @smallexample
  5235. @kbd{tar} @var{operation} [@var{option1} @var{option2} @dots{}] [@var{file name-1} @var{file name-2} @dots{}]
  5236. @end smallexample
  5237. If a file name begins with dash (@samp{-}), precede it with
  5238. @option{--add-file} option to prevent it from being treated as an
  5239. option.
  5240. @anchor{input name quoting}
  5241. By default @GNUTAR{} attempts to @dfn{unquote} each file or member
  5242. name, replacing @dfn{escape sequences} according to the following
  5243. table:
  5244. @multitable @columnfractions 0.20 0.60
  5245. @headitem Escape @tab Replaced with
  5246. @item \a @tab Audible bell (@acronym{ASCII} 7)
  5247. @item \b @tab Backspace (@acronym{ASCII} 8)
  5248. @item \f @tab Form feed (@acronym{ASCII} 12)
  5249. @item \n @tab New line (@acronym{ASCII} 10)
  5250. @item \r @tab Carriage return (@acronym{ASCII} 13)
  5251. @item \t @tab Horizontal tabulation (@acronym{ASCII} 9)
  5252. @item \v @tab Vertical tabulation (@acronym{ASCII} 11)
  5253. @item \? @tab @acronym{ASCII} 127
  5254. @item \@var{n} @tab @acronym{ASCII} @var{n} (@var{n} should be an octal number
  5255. of up to 3 digits)
  5256. @end multitable
  5257. A backslash followed by any other symbol is retained.
  5258. This default behavior is controlled by the following command line
  5259. option:
  5260. @table @option
  5261. @opindex unquote
  5262. @item --unquote
  5263. Enable unquoting input file or member names (default).
  5264. @opindex no-unquote
  5265. @item --no-unquote
  5266. Disable unquoting input file or member names.
  5267. @end table
  5268. If you specify a directory name as a file name argument, all the files
  5269. in that directory are operated on by @command{tar}.
  5270. If you do not specify files, @command{tar} behavior differs depending
  5271. on the operation mode as described below:
  5272. When @command{tar} is invoked with @option{--create} (@option{-c}),
  5273. @command{tar} will stop immediately, reporting the following:
  5274. @smallexample
  5275. @group
  5276. $ @kbd{tar cf a.tar}
  5277. tar: Cowardly refusing to create an empty archive
  5278. Try `tar --help' or `tar --usage' for more information.
  5279. @end group
  5280. @end smallexample
  5281. If you specify either @option{--list} (@option{-t}) or
  5282. @option{--extract} (@option{--get}, @option{-x}), @command{tar}
  5283. operates on all the archive members in the archive.
  5284. If run with @option{--diff} option, tar will compare the archive with
  5285. the contents of the current working directory.
  5286. If you specify any other operation, @command{tar} does nothing.
  5287. By default, @command{tar} takes file names from the command line. However,
  5288. there are other ways to specify file or member names, or to modify the
  5289. manner in which @command{tar} selects the files or members upon which to
  5290. operate. In general, these methods work both for specifying the names
  5291. of files and archive members.
  5292. @node files
  5293. @section Reading Names from a File
  5294. @cindex Reading file names from a file
  5295. @cindex Lists of file names
  5296. @cindex File Name arguments, alternatives
  5297. Instead of giving the names of files or archive members on the command
  5298. line, you can put the names into a file, and then use the
  5299. @option{--files-from=@var{file-of-names}} (@option{-T
  5300. @var{file-of-names}}) option to @command{tar}. Give the name of the
  5301. file which contains the list of files to include as the argument to
  5302. @option{--files-from}. In the list, the file names should be separated by
  5303. newlines. You will frequently use this option when you have generated
  5304. the list of files to archive with the @command{find} utility.
  5305. @table @option
  5306. @opindex files-from
  5307. @item --files-from=@var{file-name}
  5308. @itemx -T @var{file-name}
  5309. Get names to extract or create from file @var{file-name}.
  5310. @end table
  5311. If you give a single dash as a file name for @option{--files-from}, (i.e.,
  5312. you specify either @code{--files-from=-} or @code{-T -}), then the file
  5313. names are read from standard input.
  5314. Unless you are running @command{tar} with @option{--create}, you can not use
  5315. both @code{--files-from=-} and @code{--file=-} (@code{-f -}) in the same
  5316. command.
  5317. Any number of @option{-T} options can be given in the command line.
  5318. The following example shows how to use @command{find} to generate a list of
  5319. files smaller than 400K in length and put that list into a file
  5320. called @file{small-files}. You can then use the @option{-T} option to
  5321. @command{tar} to specify the files from that file, @file{small-files}, to
  5322. create the archive @file{little.tgz}. (The @option{-z} option to
  5323. @command{tar} compresses the archive with @command{gzip}; @pxref{gzip} for
  5324. more information.)
  5325. @smallexample
  5326. $ @kbd{find . -size -400 -print > small-files}
  5327. $ @kbd{tar -c -v -z -T small-files -f little.tgz}
  5328. @end smallexample
  5329. @noindent
  5330. In the file list given by @option{-T} option, any file name beginning
  5331. with @samp{-} character is considered a @command{tar} option and is
  5332. processed accordingly.@footnote{Versions of @GNUTAR{} up to 1.15.1
  5333. recognized only @option{-C} option in file lists, and only if the
  5334. option and its argument occupied two consecutive lines.} For example,
  5335. the common use of this feature is to change to another directory by
  5336. specifying @option{-C} option:
  5337. @smallexample
  5338. @group
  5339. $ @kbd{cat list}
  5340. -C/etc
  5341. passwd
  5342. hosts
  5343. -C/lib
  5344. libc.a
  5345. $ @kbd{tar -c -f foo.tar --files-from list}
  5346. @end group
  5347. @end smallexample
  5348. @noindent
  5349. In this example, @command{tar} will first switch to @file{/etc}
  5350. directory and add files @file{passwd} and @file{hosts} to the
  5351. archive. Then it will change to @file{/lib} directory and will archive
  5352. the file @file{libc.a}. Thus, the resulting archive @file{foo.tar} will
  5353. contain:
  5354. @smallexample
  5355. @group
  5356. $ @kbd{tar tf foo.tar}
  5357. passwd
  5358. hosts
  5359. libc.a
  5360. @end group
  5361. @end smallexample
  5362. @noindent
  5363. @xopindex{directory, using in @option{--files-from} argument}
  5364. Notice that the option parsing algorithm used with @option{-T} is
  5365. stricter than the one used by shell. Namely, when specifying option
  5366. arguments, you should observe the following rules:
  5367. @itemize @bullet
  5368. @item
  5369. When using short (single-letter) option form, its argument must
  5370. immediately follow the option letter, without any intervening
  5371. whitespace. For example: @code{-Cdir}.
  5372. @item
  5373. When using long option form, the option argument must be separated
  5374. from the option by a single equal sign. No whitespace is allowed on
  5375. any side of the equal sign. For example: @code{--directory=dir}.
  5376. @item
  5377. For both short and long option forms, the option argument can be given
  5378. on the next line after the option name, e.g.:
  5379. @smallexample
  5380. @group
  5381. --directory
  5382. dir
  5383. @end group
  5384. @end smallexample
  5385. @noindent
  5386. and
  5387. @smallexample
  5388. @group
  5389. -C
  5390. dir
  5391. @end group
  5392. @end smallexample
  5393. @end itemize
  5394. @opindex add-file
  5395. If you happen to have a file whose name starts with @samp{-},
  5396. precede it with @option{--add-file} option to prevent it from
  5397. being recognized as an option. For example: @code{--add-file=--my-file}.
  5398. @menu
  5399. * nul::
  5400. @end menu
  5401. @node nul
  5402. @subsection @code{NUL} Terminated File Names
  5403. @cindex File names, terminated by @code{NUL}
  5404. @cindex @code{NUL} terminated file names
  5405. The @option{--null} option causes
  5406. @option{--files-from=@var{file-of-names}} (@option{-T @var{file-of-names}})
  5407. to read file names terminated by a @code{NUL} instead of a newline, so
  5408. files whose names contain newlines can be archived using
  5409. @option{--files-from}.
  5410. @table @option
  5411. @xopindex{null, described}
  5412. @item --null
  5413. Only consider @code{NUL} terminated file names, instead of files that
  5414. terminate in a newline.
  5415. @xopindex{no-null, described}
  5416. @item --no-null
  5417. Undo the effect of any previous @option{--null} option.
  5418. @end table
  5419. The @option{--null} option is just like the one in @acronym{GNU}
  5420. @command{xargs} and @command{cpio}, and is useful with the
  5421. @option{-print0} predicate of @acronym{GNU} @command{find}. In
  5422. @command{tar}, @option{--null} also disables special handling for
  5423. file names that begin with dash.
  5424. This example shows how to use @command{find} to generate a list of files
  5425. larger than 800K in length and put that list into a file called
  5426. @file{long-files}. The @option{-print0} option to @command{find} is just
  5427. like @option{-print}, except that it separates files with a @code{NUL}
  5428. rather than with a newline. You can then run @command{tar} with both the
  5429. @option{--null} and @option{-T} options to specify that @command{tar} get the
  5430. files from that file, @file{long-files}, to create the archive
  5431. @file{big.tgz}. The @option{--null} option to @command{tar} will cause
  5432. @command{tar} to recognize the @code{NUL} separator between files.
  5433. @smallexample
  5434. $ @kbd{find . -size +800 -print0 > long-files}
  5435. $ @kbd{tar -c -v --null --files-from=long-files --file=big.tar}
  5436. @end smallexample
  5437. The @option{--no-null} option can be used if you need to read both
  5438. zero-terminated and newline-terminated files on the same command line.
  5439. For example, if @file{flist} is a newline-terminated file, then the
  5440. following command can be used to combine it with the above command:
  5441. @smallexample
  5442. @group
  5443. $ @kbd{find . -size +800 -print0 |
  5444. tar -c -f big.tar --null -T - --no-null -T flist}
  5445. @end group
  5446. @end smallexample
  5447. This example uses short options for typographic reasons, to avoid
  5448. very long lines.
  5449. @GNUTAR is able to automatically detect null-terminated file lists, so
  5450. it is safe to use them even without the @option{--null} option. In
  5451. this case @command{tar} will print a warning and continue reading such
  5452. a file as if @option{--null} were actually given:
  5453. @smallexample
  5454. @group
  5455. $ @kbd{find . -size +800 -print0 | tar -c -f big.tar -T -}
  5456. tar: -: file name read contains nul character
  5457. @end group
  5458. @end smallexample
  5459. The null terminator, however, remains in effect only for this
  5460. particular file, any following @option{-T} options will assume
  5461. newline termination. Of course, the null autodetection applies
  5462. to these eventual surplus @option{-T} options as well.
  5463. @node exclude
  5464. @section Excluding Some Files
  5465. @UNREVISED
  5466. @cindex File names, excluding files by
  5467. @cindex Excluding files by name and pattern
  5468. @cindex Excluding files by file system
  5469. To avoid operating on files whose names match a particular pattern,
  5470. use the @option{--exclude} or @option{--exclude-from} options.
  5471. @table @option
  5472. @opindex exclude
  5473. @item --exclude=@var{pattern}
  5474. Causes @command{tar} to ignore files that match the @var{pattern}.
  5475. @end table
  5476. @findex exclude
  5477. The @option{--exclude=@var{pattern}} option prevents any file or
  5478. member whose name matches the shell wildcard (@var{pattern}) from
  5479. being operated on.
  5480. For example, to create an archive with all the contents of the directory
  5481. @file{src} except for files whose names end in @file{.o}, use the
  5482. command @samp{tar -cf src.tar --exclude='*.o' src}.
  5483. You may give multiple @option{--exclude} options.
  5484. @table @option
  5485. @opindex exclude-from
  5486. @item --exclude-from=@var{file}
  5487. @itemx -X @var{file}
  5488. Causes @command{tar} to ignore files that match the patterns listed in
  5489. @var{file}.
  5490. @end table
  5491. @findex exclude-from
  5492. Use the @option{--exclude-from} option to read a
  5493. list of patterns, one per line, from @var{file}; @command{tar} will
  5494. ignore files matching those patterns. Thus if @command{tar} is
  5495. called as @w{@samp{tar -c -X foo .}} and the file @file{foo} contains a
  5496. single line @file{*.o}, no files whose names end in @file{.o} will be
  5497. added to the archive.
  5498. Notice, that lines from @var{file} are read verbatim. One of the
  5499. frequent errors is leaving some extra whitespace after a file name,
  5500. which is difficult to catch using text editors.
  5501. However, empty lines are OK.
  5502. @cindex version control system, excluding files
  5503. @cindex VCS, excluding files
  5504. @cindex SCCS, excluding files
  5505. @cindex RCS, excluding files
  5506. @cindex CVS, excluding files
  5507. @cindex SVN, excluding files
  5508. @cindex git, excluding files
  5509. @cindex Bazaar, excluding files
  5510. @cindex Arch, excluding files
  5511. @cindex Mercurial, excluding files
  5512. @cindex Darcs, excluding files
  5513. @table @option
  5514. @opindex exclude-vcs
  5515. @item --exclude-vcs
  5516. Exclude files and directories used by following version control
  5517. systems: @samp{CVS}, @samp{RCS}, @samp{SCCS}, @samp{SVN}, @samp{Arch},
  5518. @samp{Bazaar}, @samp{Mercurial}, and @samp{Darcs}.
  5519. @end table
  5520. As of version @value{VERSION}, the following files are excluded:
  5521. @itemize @bullet
  5522. @item @file{CVS/}, and everything under it
  5523. @item @file{RCS/}, and everything under it
  5524. @item @file{SCCS/}, and everything under it
  5525. @item @file{.git/}, and everything under it
  5526. @item @file{.gitignore}
  5527. @item @file{.cvsignore}
  5528. @item @file{.svn/}, and everything under it
  5529. @item @file{.arch-ids/}, and everything under it
  5530. @item @file{@{arch@}/}, and everything under it
  5531. @item @file{=RELEASE-ID}
  5532. @item @file{=meta-update}
  5533. @item @file{=update}
  5534. @item @file{.bzr}
  5535. @item @file{.bzrignore}
  5536. @item @file{.bzrtags}
  5537. @item @file{.hg}
  5538. @item @file{.hgignore}
  5539. @item @file{.hgrags}
  5540. @item @file{_darcs}
  5541. @end itemize
  5542. @findex exclude-caches
  5543. When creating an archive, the @option{--exclude-caches} option family
  5544. causes @command{tar} to exclude all directories that contain a @dfn{cache
  5545. directory tag}. A cache directory tag is a short file with the
  5546. well-known name @file{CACHEDIR.TAG} and having a standard header
  5547. specified in @url{http://www.brynosaurus.com/cachedir/spec.html}.
  5548. Various applications write cache directory tags into directories they
  5549. use to hold regenerable, non-precious data, so that such data can be
  5550. more easily excluded from backups.
  5551. There are three @samp{exclude-caches} options, each providing a different
  5552. exclusion semantics:
  5553. @table @option
  5554. @opindex exclude-caches
  5555. @item --exclude-caches
  5556. Do not archive the contents of the directory, but archive the
  5557. directory itself and the @file{CACHEDIR.TAG} file.
  5558. @opindex exclude-caches-under
  5559. @item --exclude-caches-under
  5560. Do not archive the contents of the directory, nor the
  5561. @file{CACHEDIR.TAG} file, archive only the directory itself.
  5562. @opindex exclude-caches-all
  5563. @item --exclude-caches-all
  5564. Omit directories containing @file{CACHEDIR.TAG} file entirely.
  5565. @end table
  5566. @findex exclude-tag
  5567. Another option family, @option{--exclude-tag}, provides a generalization of
  5568. this concept. It takes a single argument, a file name to look for.
  5569. Any directory that contains this file will be excluded from the dump.
  5570. Similarly to @samp{exclude-caches}, there are three options in this
  5571. option family:
  5572. @table @option
  5573. @opindex exclude-tag
  5574. @item --exclude-tag=@var{file}
  5575. Do not dump the contents of the directory, but dump the
  5576. directory itself and the @var{file}.
  5577. @opindex exclude-tag-under
  5578. @item --exclude-tag-under=@var{file}
  5579. Do not dump the contents of the directory, nor the
  5580. @var{file}, archive only the directory itself.
  5581. @opindex exclude-tag-all
  5582. @item --exclude-tag-all=@var{file}
  5583. Omit directories containing @var{file} file entirely.
  5584. @end table
  5585. Multiple @option{--exclude-tag*} options can be given.
  5586. For example, given this directory:
  5587. @smallexample
  5588. @group
  5589. $ @kbd{find dir}
  5590. dir
  5591. dir/blues
  5592. dir/jazz
  5593. dir/folk
  5594. dir/folk/tagfile
  5595. dir/folk/sanjuan
  5596. dir/folk/trote
  5597. @end group
  5598. @end smallexample
  5599. The @option{--exclude-tag} will produce the following:
  5600. @smallexample
  5601. $ @kbd{tar -cf archive.tar --exclude-tag=tagfile -v dir}
  5602. dir/
  5603. dir/blues
  5604. dir/jazz
  5605. dir/folk/
  5606. tar: dir/folk/: contains a cache directory tag tagfile;
  5607. contents not dumped
  5608. dir/folk/tagfile
  5609. @end smallexample
  5610. Both the @file{dir/folk} directory and its tagfile are preserved in
  5611. the archive, however the rest of files in this directory are not.
  5612. Now, using the @option{--exclude-tag-under} option will exclude
  5613. @file{tagfile} from the dump, while still preserving the directory
  5614. itself, as shown in this example:
  5615. @smallexample
  5616. $ @kbd{tar -cf archive.tar --exclude-tag-under=tagfile -v dir}
  5617. dir/
  5618. dir/blues
  5619. dir/jazz
  5620. dir/folk/
  5621. ./tar: dir/folk/: contains a cache directory tag tagfile;
  5622. contents not dumped
  5623. @end smallexample
  5624. Finally, using @option{--exclude-tag-all} omits the @file{dir/folk}
  5625. directory entirely:
  5626. @smallexample
  5627. $ @kbd{tar -cf archive.tar --exclude-tag-all=tagfile -v dir}
  5628. dir/
  5629. dir/blues
  5630. dir/jazz
  5631. ./tar: dir/folk/: contains a cache directory tag tagfile;
  5632. directory not dumped
  5633. @end smallexample
  5634. @menu
  5635. * problems with exclude::
  5636. @end menu
  5637. @node problems with exclude
  5638. @unnumberedsubsec Problems with Using the @code{exclude} Options
  5639. @xopindex{exclude, potential problems with}
  5640. Some users find @samp{exclude} options confusing. Here are some common
  5641. pitfalls:
  5642. @itemize @bullet
  5643. @item
  5644. The main operating mode of @command{tar} does not act on a file name
  5645. explicitly listed on the command line, if one of its file name
  5646. components is excluded. In the example above, if
  5647. you create an archive and exclude files that end with @samp{*.o}, but
  5648. explicitly name the file @samp{dir.o/foo} after all the options have been
  5649. listed, @samp{dir.o/foo} will be excluded from the archive.
  5650. @item
  5651. You can sometimes confuse the meanings of @option{--exclude} and
  5652. @option{--exclude-from}. Be careful: use @option{--exclude} when files
  5653. to be excluded are given as a pattern on the command line. Use
  5654. @option{--exclude-from} to introduce the name of a file which contains
  5655. a list of patterns, one per line; each of these patterns can exclude
  5656. zero, one, or many files.
  5657. @item
  5658. When you use @option{--exclude=@var{pattern}}, be sure to quote the
  5659. @var{pattern} parameter, so @GNUTAR{} sees wildcard characters
  5660. like @samp{*}. If you do not do this, the shell might expand the
  5661. @samp{*} itself using files at hand, so @command{tar} might receive a
  5662. list of files instead of one pattern, or none at all, making the
  5663. command somewhat illegal. This might not correspond to what you want.
  5664. For example, write:
  5665. @smallexample
  5666. $ @kbd{tar -c -f @var{archive.tar} --exclude '*.o' @var{directory}}
  5667. @end smallexample
  5668. @noindent
  5669. rather than:
  5670. @smallexample
  5671. # @emph{Wrong!}
  5672. $ @kbd{tar -c -f @var{archive.tar} --exclude *.o @var{directory}}
  5673. @end smallexample
  5674. @item
  5675. You must use use shell syntax, or globbing, rather than @code{regexp}
  5676. syntax, when using exclude options in @command{tar}. If you try to use
  5677. @code{regexp} syntax to describe files to be excluded, your command
  5678. might fail.
  5679. @item
  5680. @FIXME{The change in semantics must have occurred before 1.11,
  5681. so I doubt if it is worth mentioning at all. Anyway, should at
  5682. least specify in which version the semantics changed.}
  5683. In earlier versions of @command{tar}, what is now the
  5684. @option{--exclude-from} option was called @option{--exclude} instead.
  5685. Now, @option{--exclude} applies to patterns listed on the command
  5686. line and @option{--exclude-from} applies to patterns listed in a
  5687. file.
  5688. @end itemize
  5689. @node wildcards
  5690. @section Wildcards Patterns and Matching
  5691. @dfn{Globbing} is the operation by which @dfn{wildcard} characters,
  5692. @samp{*} or @samp{?} for example, are replaced and expanded into all
  5693. existing files matching the given pattern. @GNUTAR{} can use wildcard
  5694. patterns for matching (or globbing) archive members when extracting
  5695. from or listing an archive. Wildcard patterns are also used for
  5696. verifying volume labels of @command{tar} archives. This section has the
  5697. purpose of explaining wildcard syntax for @command{tar}.
  5698. @FIXME{the next few paragraphs need work.}
  5699. A @var{pattern} should be written according to shell syntax, using wildcard
  5700. characters to effect globbing. Most characters in the pattern stand
  5701. for themselves in the matched string, and case is significant: @samp{a}
  5702. will match only @samp{a}, and not @samp{A}. The character @samp{?} in the
  5703. pattern matches any single character in the matched string. The character
  5704. @samp{*} in the pattern matches zero, one, or more single characters in
  5705. the matched string. The character @samp{\} says to take the following
  5706. character of the pattern @emph{literally}; it is useful when one needs to
  5707. match the @samp{?}, @samp{*}, @samp{[} or @samp{\} characters, themselves.
  5708. The character @samp{[}, up to the matching @samp{]}, introduces a character
  5709. class. A @dfn{character class} is a list of acceptable characters
  5710. for the next single character of the matched string. For example,
  5711. @samp{[abcde]} would match any of the first five letters of the alphabet.
  5712. Note that within a character class, all of the ``special characters''
  5713. listed above other than @samp{\} lose their special meaning; for example,
  5714. @samp{[-\\[*?]]} would match any of the characters, @samp{-}, @samp{\},
  5715. @samp{[}, @samp{*}, @samp{?}, or @samp{]}. (Due to parsing constraints,
  5716. the characters @samp{-} and @samp{]} must either come @emph{first} or
  5717. @emph{last} in a character class.)
  5718. @cindex Excluding characters from a character class
  5719. @cindex Character class, excluding characters from
  5720. If the first character of the class after the opening @samp{[}
  5721. is @samp{!} or @samp{^}, then the meaning of the class is reversed.
  5722. Rather than listing character to match, it lists those characters which
  5723. are @emph{forbidden} as the next single character of the matched string.
  5724. Other characters of the class stand for themselves. The special
  5725. construction @samp{[@var{a}-@var{e}]}, using an hyphen between two
  5726. letters, is meant to represent all characters between @var{a} and
  5727. @var{e}, inclusive.
  5728. @FIXME{need to add a sentence or so here to make this clear for those
  5729. who don't have dan around.}
  5730. Periods (@samp{.}) or forward slashes (@samp{/}) are not considered
  5731. special for wildcard matches. However, if a pattern completely matches
  5732. a directory prefix of a matched string, then it matches the full matched
  5733. string: thus, excluding a directory also excludes all the files beneath it.
  5734. @menu
  5735. * controlling pattern-matching::
  5736. @end menu
  5737. @node controlling pattern-matching
  5738. @unnumberedsubsec Controlling Pattern-Matching
  5739. For the purposes of this section, we call @dfn{exclusion members} all
  5740. member names obtained while processing @option{--exclude} and
  5741. @option{--exclude-from} options, and @dfn{inclusion members} those
  5742. member names that were given in the command line or read from the file
  5743. specified with @option{--files-from} option.
  5744. These two pairs of member lists are used in the following operations:
  5745. @option{--diff}, @option{--extract}, @option{--list},
  5746. @option{--update}.
  5747. There are no inclusion members in create mode (@option{--create} and
  5748. @option{--append}), since in this mode the names obtained from the
  5749. command line refer to @emph{files}, not archive members.
  5750. By default, inclusion members are compared with archive members
  5751. literally @footnote{Notice that earlier @GNUTAR{} versions used
  5752. globbing for inclusion members, which contradicted to UNIX98
  5753. specification and was not documented. @xref{Changes}, for more
  5754. information on this and other changes.} and exclusion members are
  5755. treated as globbing patterns. For example:
  5756. @smallexample
  5757. @group
  5758. $ @kbd{tar tf foo.tar}
  5759. a.c
  5760. b.c
  5761. a.txt
  5762. [remarks]
  5763. # @i{Member names are used verbatim:}
  5764. $ @kbd{tar -xf foo.tar -v '[remarks]'}
  5765. [remarks]
  5766. # @i{Exclude member names are globbed:}
  5767. $ @kbd{tar -xf foo.tar -v --exclude '*.c'}
  5768. a.txt
  5769. [remarks]
  5770. @end group
  5771. @end smallexample
  5772. This behavior can be altered by using the following options:
  5773. @table @option
  5774. @opindex wildcards
  5775. @item --wildcards
  5776. Treat all member names as wildcards.
  5777. @opindex no-wildcards
  5778. @item --no-wildcards
  5779. Treat all member names as literal strings.
  5780. @end table
  5781. Thus, to extract files whose names end in @samp{.c}, you can use:
  5782. @smallexample
  5783. $ @kbd{tar -xf foo.tar -v --wildcards '*.c'}
  5784. a.c
  5785. b.c
  5786. @end smallexample
  5787. @noindent
  5788. Notice quoting of the pattern to prevent the shell from interpreting
  5789. it.
  5790. The effect of @option{--wildcards} option is canceled by
  5791. @option{--no-wildcards}. This can be used to pass part of
  5792. the command line arguments verbatim and other part as globbing
  5793. patterns. For example, the following invocation:
  5794. @smallexample
  5795. $ @kbd{tar -xf foo.tar --wildcards '*.txt' --no-wildcards '[remarks]'}
  5796. @end smallexample
  5797. @noindent
  5798. instructs @command{tar} to extract from @file{foo.tar} all files whose
  5799. names end in @samp{.txt} and the file named @file{[remarks]}.
  5800. Normally, a pattern matches a name if an initial subsequence of the
  5801. name's components matches the pattern, where @samp{*}, @samp{?}, and
  5802. @samp{[...]} are the usual shell wildcards, @samp{\} escapes wildcards,
  5803. and wildcards can match @samp{/}.
  5804. Other than optionally stripping leading @samp{/} from names
  5805. (@pxref{absolute}), patterns and names are used as-is. For
  5806. example, trailing @samp{/} is not trimmed from a user-specified name
  5807. before deciding whether to exclude it.
  5808. However, this matching procedure can be altered by the options listed
  5809. below. These options accumulate. For example:
  5810. @smallexample
  5811. --ignore-case --exclude='makefile' --no-ignore-case ---exclude='readme'
  5812. @end smallexample
  5813. @noindent
  5814. ignores case when excluding @samp{makefile}, but not when excluding
  5815. @samp{readme}.
  5816. @table @option
  5817. @opindex anchored
  5818. @opindex no-anchored
  5819. @item --anchored
  5820. @itemx --no-anchored
  5821. If anchored, a pattern must match an initial subsequence
  5822. of the name's components. Otherwise, the pattern can match any
  5823. subsequence. Default is @option{--no-anchored} for exclusion members
  5824. and @option{--anchored} inclusion members.
  5825. @opindex ignore-case
  5826. @opindex no-ignore-case
  5827. @item --ignore-case
  5828. @itemx --no-ignore-case
  5829. When ignoring case, upper-case patterns match lower-case names and vice versa.
  5830. When not ignoring case (the default), matching is case-sensitive.
  5831. @opindex wildcards-match-slash
  5832. @opindex no-wildcards-match-slash
  5833. @item --wildcards-match-slash
  5834. @itemx --no-wildcards-match-slash
  5835. When wildcards match slash (the default for exclusion members), a
  5836. wildcard like @samp{*} in the pattern can match a @samp{/} in the
  5837. name. Otherwise, @samp{/} is matched only by @samp{/}.
  5838. @end table
  5839. The @option{--recursion} and @option{--no-recursion} options
  5840. (@pxref{recurse}) also affect how member patterns are interpreted. If
  5841. recursion is in effect, a pattern matches a name if it matches any of
  5842. the name's parent directories.
  5843. The following table summarizes pattern-matching default values:
  5844. @multitable @columnfractions .3 .7
  5845. @headitem Members @tab Default settings
  5846. @item Inclusion @tab @option{--no-wildcards --anchored --no-wildcards-match-slash}
  5847. @item Exclusion @tab @option{--wildcards --no-anchored --wildcards-match-slash}
  5848. @end multitable
  5849. @node quoting styles
  5850. @section Quoting Member Names
  5851. When displaying member names, @command{tar} takes care to avoid
  5852. ambiguities caused by certain characters. This is called @dfn{name
  5853. quoting}. The characters in question are:
  5854. @itemize @bullet
  5855. @item Non-printable control characters:
  5856. @anchor{escape sequences}
  5857. @multitable @columnfractions 0.20 0.10 0.60
  5858. @headitem Character @tab @acronym{ASCII} @tab Character name
  5859. @item \a @tab 7 @tab Audible bell
  5860. @item \b @tab 8 @tab Backspace
  5861. @item \f @tab 12 @tab Form feed
  5862. @item \n @tab 10 @tab New line
  5863. @item \r @tab 13 @tab Carriage return
  5864. @item \t @tab 9 @tab Horizontal tabulation
  5865. @item \v @tab 11 @tab Vertical tabulation
  5866. @end multitable
  5867. @item Space (@acronym{ASCII} 32)
  5868. @item Single and double quotes (@samp{'} and @samp{"})
  5869. @item Backslash (@samp{\})
  5870. @end itemize
  5871. The exact way @command{tar} uses to quote these characters depends on
  5872. the @dfn{quoting style}. The default quoting style, called
  5873. @dfn{escape} (see below), uses backslash notation to represent control
  5874. characters, space and backslash. Using this quoting style, control
  5875. characters are represented as listed in column @samp{Character} in the
  5876. above table, a space is printed as @samp{\ } and a backslash as @samp{\\}.
  5877. @GNUTAR{} offers seven distinct quoting styles, which can be selected
  5878. using @option{--quoting-style} option:
  5879. @table @option
  5880. @item --quoting-style=@var{style}
  5881. @opindex quoting-style
  5882. Sets quoting style. Valid values for @var{style} argument are:
  5883. literal, shell, shell-always, c, escape, locale, clocale.
  5884. @end table
  5885. These styles are described in detail below. To illustrate their
  5886. effect, we will use an imaginary tar archive @file{arch.tar}
  5887. containing the following members:
  5888. @smallexample
  5889. @group
  5890. # 1. Contains horizontal tabulation character.
  5891. a tab
  5892. # 2. Contains newline character
  5893. a
  5894. newline
  5895. # 3. Contains a space
  5896. a space
  5897. # 4. Contains double quotes
  5898. a"double"quote
  5899. # 5. Contains single quotes
  5900. a'single'quote
  5901. # 6. Contains a backslash character:
  5902. a\backslash
  5903. @end group
  5904. @end smallexample
  5905. Here is how usual @command{ls} command would have listed them, if they
  5906. had existed in the current working directory:
  5907. @smallexample
  5908. @group
  5909. $ @kbd{ls}
  5910. a\ttab
  5911. a\nnewline
  5912. a\ space
  5913. a"double"quote
  5914. a'single'quote
  5915. a\\backslash
  5916. @end group
  5917. @end smallexample
  5918. Quoting styles:
  5919. @table @samp
  5920. @item literal
  5921. No quoting, display each character as is:
  5922. @smallexample
  5923. @group
  5924. $ @kbd{tar tf arch.tar --quoting-style=literal}
  5925. ./
  5926. ./a space
  5927. ./a'single'quote
  5928. ./a"double"quote
  5929. ./a\backslash
  5930. ./a tab
  5931. ./a
  5932. newline
  5933. @end group
  5934. @end smallexample
  5935. @item shell
  5936. Display characters the same way Bourne shell does:
  5937. control characters, except @samp{\t} and @samp{\n}, are printed using
  5938. backslash escapes, @samp{\t} and @samp{\n} are printed as is, and a
  5939. single quote is printed as @samp{\'}. If a name contains any quoted
  5940. characters, it is enclosed in single quotes. In particular, if a name
  5941. contains single quotes, it is printed as several single-quoted strings:
  5942. @smallexample
  5943. @group
  5944. $ @kbd{tar tf arch.tar --quoting-style=shell}
  5945. ./
  5946. './a space'
  5947. './a'\''single'\''quote'
  5948. './a"double"quote'
  5949. './a\backslash'
  5950. './a tab'
  5951. './a
  5952. newline'
  5953. @end group
  5954. @end smallexample
  5955. @item shell-always
  5956. Same as @samp{shell}, but the names are always enclosed in single
  5957. quotes:
  5958. @smallexample
  5959. @group
  5960. $ @kbd{tar tf arch.tar --quoting-style=shell-always}
  5961. './'
  5962. './a space'
  5963. './a'\''single'\''quote'
  5964. './a"double"quote'
  5965. './a\backslash'
  5966. './a tab'
  5967. './a
  5968. newline'
  5969. @end group
  5970. @end smallexample
  5971. @item c
  5972. Use the notation of the C programming language. All names are
  5973. enclosed in double quotes. Control characters are quoted using
  5974. backslash notations, double quotes are represented as @samp{\"},
  5975. backslash characters are represented as @samp{\\}. Single quotes and
  5976. spaces are not quoted:
  5977. @smallexample
  5978. @group
  5979. $ @kbd{tar tf arch.tar --quoting-style=c}
  5980. "./"
  5981. "./a space"
  5982. "./a'single'quote"
  5983. "./a\"double\"quote"
  5984. "./a\\backslash"
  5985. "./a\ttab"
  5986. "./a\nnewline"
  5987. @end group
  5988. @end smallexample
  5989. @item escape
  5990. Control characters are printed using backslash notation, a space is
  5991. printed as @samp{\ } and a backslash as @samp{\\}. This is the
  5992. default quoting style, unless it was changed when configured the
  5993. package.
  5994. @smallexample
  5995. @group
  5996. $ @kbd{tar tf arch.tar --quoting-style=escape}
  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. @item locale
  6007. Control characters, single quote and backslash are printed using
  6008. backslash notation. All names are quoted using left and right
  6009. quotation marks, appropriate to the current locale. If it does not
  6010. define quotation marks, use @samp{`} as left and @samp{'} as right
  6011. quotation marks. Any occurrences of the right quotation mark in a
  6012. name are escaped with @samp{\}, for example:
  6013. For example:
  6014. @smallexample
  6015. @group
  6016. $ @kbd{tar tf arch.tar --quoting-style=locale}
  6017. `./'
  6018. `./a space'
  6019. `./a\'single\'quote'
  6020. `./a"double"quote'
  6021. `./a\\backslash'
  6022. `./a\ttab'
  6023. `./a\nnewline'
  6024. @end group
  6025. @end smallexample
  6026. @item clocale
  6027. Same as @samp{locale}, but @samp{"} is used for both left and right
  6028. quotation marks, if not provided by the currently selected locale:
  6029. @smallexample
  6030. @group
  6031. $ @kbd{tar tf arch.tar --quoting-style=clocale}
  6032. "./"
  6033. "./a space"
  6034. "./a'single'quote"
  6035. "./a\"double\"quote"
  6036. "./a\\backslash"
  6037. "./a\ttab"
  6038. "./a\nnewline"
  6039. @end group
  6040. @end smallexample
  6041. @end table
  6042. You can specify which characters should be quoted in addition to those
  6043. implied by the current quoting style:
  6044. @table @option
  6045. @item --quote-chars=@var{string}
  6046. Always quote characters from @var{string}, even if the selected
  6047. quoting style would not quote them.
  6048. @end table
  6049. For example, using @samp{escape} quoting (compare with the usual
  6050. escape listing above):
  6051. @smallexample
  6052. @group
  6053. $ @kbd{tar tf arch.tar --quoting-style=escape --quote-chars=' "'}
  6054. ./
  6055. ./a\ space
  6056. ./a'single'quote
  6057. ./a\"double\"quote
  6058. ./a\\backslash
  6059. ./a\ttab
  6060. ./a\nnewline
  6061. @end group
  6062. @end smallexample
  6063. To disable quoting of such additional characters, use the following
  6064. option:
  6065. @table @option
  6066. @item --no-quote-chars=@var{string}
  6067. Remove characters listed in @var{string} from the list of quoted
  6068. characters set by the previous @option{--quote-chars} option.
  6069. @end table
  6070. This option is particularly useful if you have added
  6071. @option{--quote-chars} to your @env{TAR_OPTIONS} (@pxref{TAR_OPTIONS})
  6072. and wish to disable it for the current invocation.
  6073. Note, that @option{--no-quote-chars} does @emph{not} disable those
  6074. characters that are quoted by default in the selected quoting style.
  6075. @node transform
  6076. @section Modifying File and Member Names
  6077. @command{Tar} archives contain detailed information about files stored
  6078. in them and full file names are part of that information. When
  6079. storing file to an archive, its file name is recorded in it,
  6080. along with the actual file contents. When restoring from an archive,
  6081. a file is created on disk with exactly the same name as that stored
  6082. in the archive. In the majority of cases this is the desired behavior
  6083. of a file archiver. However, there are some cases when it is not.
  6084. First of all, it is often unsafe to extract archive members with
  6085. absolute file names or those that begin with a @file{../}. @GNUTAR{}
  6086. takes special precautions when extracting such names and provides a
  6087. special option for handling them, which is described in
  6088. @ref{absolute}.
  6089. Secondly, you may wish to extract file names without some leading
  6090. directory components, or with otherwise modified names. In other
  6091. cases it is desirable to store files under differing names in the
  6092. archive.
  6093. @GNUTAR{} provides several options for these needs.
  6094. @table @option
  6095. @opindex strip-components
  6096. @item --strip-components=@var{number}
  6097. Strip given @var{number} of leading components from file names before
  6098. extraction.
  6099. @end table
  6100. For example, suppose you have archived whole @file{/usr} hierarchy to
  6101. a tar archive named @file{usr.tar}. Among other files, this archive
  6102. contains @file{usr/include/stdlib.h}, which you wish to extract to
  6103. the current working directory. To do so, you type:
  6104. @smallexample
  6105. $ @kbd{tar -xf usr.tar --strip=2 usr/include/stdlib.h}
  6106. @end smallexample
  6107. The option @option{--strip=2} instructs @command{tar} to strip the
  6108. two leading components (@file{usr/} and @file{include/}) off the file
  6109. name.
  6110. If you add the @option{--verbose} (@option{-v}) option to the invocation
  6111. above, you will note that the verbose listing still contains the
  6112. full file name, with the two removed components still in place. This
  6113. can be inconvenient, so @command{tar} provides a special option for
  6114. altering this behavior:
  6115. @anchor{show-transformed-names}
  6116. @table @option
  6117. @opindex show-transformed-names
  6118. @item --show-transformed-names
  6119. Display file or member names with all requested transformations
  6120. applied.
  6121. @end table
  6122. @noindent
  6123. For example:
  6124. @smallexample
  6125. @group
  6126. $ @kbd{tar -xf usr.tar -v --strip=2 usr/include/stdlib.h}
  6127. usr/include/stdlib.h
  6128. $ @kbd{tar -xf usr.tar -v --strip=2 --show-transformed usr/include/stdlib.h}
  6129. stdlib.h
  6130. @end group
  6131. @end smallexample
  6132. Notice that in both cases the file @file{stdlib.h} is extracted to the
  6133. current working directory, @option{--show-transformed-names} affects
  6134. only the way its name is displayed.
  6135. This option is especially useful for verifying whether the invocation
  6136. will have the desired effect. Thus, before running
  6137. @smallexample
  6138. $ @kbd{tar -x --strip=@var{n}}
  6139. @end smallexample
  6140. @noindent
  6141. it is often advisable to run
  6142. @smallexample
  6143. $ @kbd{tar -t -v --show-transformed --strip=@var{n}}
  6144. @end smallexample
  6145. @noindent
  6146. to make sure the command will produce the intended results.
  6147. In case you need to apply more complex modifications to the file name,
  6148. @GNUTAR{} provides a general-purpose transformation option:
  6149. @table @option
  6150. @opindex transform
  6151. @opindex xform
  6152. @item --transform=@var{expression}
  6153. @itemx --xform=@var{expression}
  6154. Modify file names using supplied @var{expression}.
  6155. @end table
  6156. @noindent
  6157. The @var{expression} is a @command{sed}-like replace expression of the
  6158. form:
  6159. @smallexample
  6160. s/@var{regexp}/@var{replace}/[@var{flags}]
  6161. @end smallexample
  6162. @noindent
  6163. where @var{regexp} is a @dfn{regular expression}, @var{replace} is a
  6164. replacement for each file name part that matches @var{regexp}. Both
  6165. @var{regexp} and @var{replace} are described in detail in
  6166. @ref{The "s" Command, The "s" Command, The `s' Command, sed, GNU sed}.
  6167. Any delimiter can be used in lieue of @samp{/}, the only requirement being
  6168. that it be used consistently throughout the expression. For example,
  6169. the following two expressions are equivalent:
  6170. @smallexample
  6171. @group
  6172. s/one/two/
  6173. s,one,two,
  6174. @end group
  6175. @end smallexample
  6176. Changing delimiters is often useful when the @var{regex} contains
  6177. slashes. For example, it is more convenient to write @code{s,/,-,} than
  6178. @code{s/\//-/}.
  6179. As in @command{sed}, you can give several replace expressions,
  6180. separated by a semicolon.
  6181. Supported @var{flags} are:
  6182. @table @samp
  6183. @item g
  6184. Apply the replacement to @emph{all} matches to the @var{regexp}, not
  6185. just the first.
  6186. @item i
  6187. Use case-insensitive matching
  6188. @item x
  6189. @var{regexp} is an @dfn{extended regular expression} (@pxref{Extended
  6190. regexps, Extended regular expressions, Extended regular expressions,
  6191. sed, GNU sed}).
  6192. @item @var{number}
  6193. Only replace the @var{number}th match of the @var{regexp}.
  6194. Note: the @acronym{POSIX} standard does not specify what should happen
  6195. when you mix the @samp{g} and @var{number} modifiers. @GNUTAR{}
  6196. follows the GNU @command{sed} implementation in this regard, so
  6197. the interaction is defined to be: ignore matches before the
  6198. @var{number}th, and then match and replace all matches from the
  6199. @var{number}th on.
  6200. @end table
  6201. In addition, several @dfn{transformation scope} flags are supported,
  6202. that control to what files transformations apply. These are:
  6203. @table @samp
  6204. @item r
  6205. Apply transformation to regular archive members.
  6206. @item R
  6207. Do not apply transformation to regular archive members.
  6208. @item s
  6209. Apply transformation to symbolic link targets.
  6210. @item S
  6211. Do not apply transformation to symbolic link targets.
  6212. @item h
  6213. Apply transformation to hard link targets.
  6214. @item H
  6215. Do not apply transformation to hard link targets.
  6216. @end table
  6217. Default is @samp{rsh}, which means to apply tranformations to both archive
  6218. members and targets of symbolic and hard links.
  6219. Default scope flags can also be changed using @samp{flags=} statement
  6220. in the transform expression. The flags set this way remain in force
  6221. until next @samp{flags=} statement or end of expression, whichever
  6222. occurs first. For example:
  6223. @smallexample
  6224. --transform 'flags=S;s|^|/usr/local/|'
  6225. @end smallexample
  6226. Here are several examples of @option{--transform} usage:
  6227. @enumerate
  6228. @item Extract @file{usr/} hierarchy into @file{usr/local/}:
  6229. @smallexample
  6230. $ @kbd{tar --transform='s,usr/,usr/local/,' -x -f arch.tar}
  6231. @end smallexample
  6232. @item Strip two leading directory components (equivalent to
  6233. @option{--strip-components=2}):
  6234. @smallexample
  6235. $ @kbd{tar --transform='s,/*[^/]*/[^/]*/,,' -x -f arch.tar}
  6236. @end smallexample
  6237. @item Convert each file name to lower case:
  6238. @smallexample
  6239. $ @kbd{tar --transform 's/.*/\L&/' -x -f arch.tar}
  6240. @end smallexample
  6241. @item Prepend @file{/prefix/} to each file name:
  6242. @smallexample
  6243. $ @kbd{tar --transform 's,^,/prefix/,' -x -f arch.tar}
  6244. @end smallexample
  6245. @item Archive the @file{/lib} directory, prepending @samp{/usr/local}
  6246. to each archive member:
  6247. @smallexample
  6248. $ @kbd{tar --transform 's,^,/usr/local/,S' -c -f arch.tar /lib}
  6249. @end smallexample
  6250. @end enumerate
  6251. Notice the use of flags in the last example. The @file{/lib}
  6252. directory often contains many symbolic links to files within it.
  6253. It may look, for example, like this:
  6254. @smallexample
  6255. $ @kbd{ls -l}
  6256. drwxr-xr-x root/root 0 2008-07-08 16:20 /lib/
  6257. -rwxr-xr-x root/root 1250840 2008-05-25 07:44 /lib/libc-2.3.2.so
  6258. lrwxrwxrwx root/root 0 2008-06-24 17:12 /lib/libc.so.6 -> libc-2.3.2.so
  6259. ...
  6260. @end smallexample
  6261. Using the expression @samp{s,^,/usr/local/,} would mean adding
  6262. @samp{/usr/local} to both regular archive members and to link
  6263. targets. In this case, @file{/lib/libc.so.6} would become:
  6264. @smallexample
  6265. /usr/local/lib/libc.so.6 -> /usr/local/libc-2.3.2.so
  6266. @end smallexample
  6267. This is definitely not desired. To avoid this, the @samp{S} flag
  6268. are used, which excludes symbolic link targets from filename
  6269. transformations. The result is:
  6270. @smallexample
  6271. $ @kbd{tar --transform 's,^,/usr/local/,S', -c -v -f arch.tar \
  6272. --show-transformed /lib}
  6273. drwxr-xr-x root/root 0 2008-07-08 16:20 /usr/local/lib/
  6274. -rwxr-xr-x root/root 1250840 2008-05-25 07:44 /usr/local/lib/libc-2.3.2.so
  6275. lrwxrwxrwx root/root 0 2008-06-24 17:12 /usr/local/lib/libc.so.6 ->
  6276. libc-2.3.2.so
  6277. @end smallexample
  6278. Unlike @option{--strip-components}, @option{--transform} can be used
  6279. in any @GNUTAR{} operation mode. For example, the following command
  6280. adds files to the archive while replacing the leading @file{usr/}
  6281. component with @file{var/}:
  6282. @smallexample
  6283. $ @kbd{tar -cf arch.tar --transform='s,^usr/,var/,' /}
  6284. @end smallexample
  6285. To test @option{--transform} effect we suggest using
  6286. @option{--show-transformed-names} option:
  6287. @smallexample
  6288. $ @kbd{tar -cf arch.tar --transform='s,^usr/,var/,' \
  6289. --verbose --show-transformed-names /}
  6290. @end smallexample
  6291. If both @option{--strip-components} and @option{--transform} are used
  6292. together, then @option{--transform} is applied first, and the required
  6293. number of components is then stripped from its result.
  6294. You can use as many @option{--transform} options in a single command
  6295. line as you want. The specified expressions will then be applied in
  6296. order of their appearance. For example, the following two invocations
  6297. are equivalent:
  6298. @smallexample
  6299. $ @kbd{tar -cf arch.tar --transform='s,/usr/var,/var/' \
  6300. --transform='s,/usr/local,/usr/,'}
  6301. $ @kbd{tar -cf arch.tar \
  6302. --transform='s,/usr/var,/var/;s,/usr/local,/usr/,'}
  6303. @end smallexample
  6304. @node after
  6305. @section Operating Only on New Files
  6306. @UNREVISED
  6307. @cindex Excluding file by age
  6308. @cindex Data Modification time, excluding files by
  6309. @cindex Modification time, excluding files by
  6310. @cindex Age, excluding files by
  6311. The @option{--after-date=@var{date}} (@option{--newer=@var{date}},
  6312. @option{-N @var{date}}) option causes @command{tar} to only work on
  6313. files whose data modification or status change times are newer than
  6314. the @var{date} given. If @var{date} starts with @samp{/} or @samp{.},
  6315. it is taken to be a file name; the data modification time of that file
  6316. is used as the date. If you use this option when creating or appending
  6317. to an archive, the archive will only include new files. If you use
  6318. @option{--after-date} when extracting an archive, @command{tar} will
  6319. only extract files newer than the @var{date} you specify.
  6320. If you only want @command{tar} to make the date comparison based on
  6321. modification of the file's data (rather than status
  6322. changes), then use the @option{--newer-mtime=@var{date}} option.
  6323. You may use these options with any operation. Note that these options
  6324. differ from the @option{--update} (@option{-u}) operation in that they
  6325. allow you to specify a particular date against which @command{tar} can
  6326. compare when deciding whether or not to archive the files.
  6327. @table @option
  6328. @opindex after-date
  6329. @opindex newer
  6330. @item --after-date=@var{date}
  6331. @itemx --newer=@var{date}
  6332. @itemx -N @var{date}
  6333. Only store files newer than @var{date}.
  6334. Acts on files only if their data modification or status change times are
  6335. later than @var{date}. Use in conjunction with any operation.
  6336. If @var{date} starts with @samp{/} or @samp{.}, it is taken to be a file
  6337. name; the data modification time of that file is used as the date.
  6338. @opindex newer-mtime
  6339. @item --newer-mtime=@var{date}
  6340. Acts like @option{--after-date}, but only looks at data modification times.
  6341. @end table
  6342. These options limit @command{tar} to operate only on files which have
  6343. been modified after the date specified. A file's status is considered to have
  6344. changed if its contents have been modified, or if its owner,
  6345. permissions, and so forth, have been changed. (For more information on
  6346. how to specify a date, see @ref{Date input formats}; remember that the
  6347. entire date argument must be quoted if it contains any spaces.)
  6348. Gurus would say that @option{--after-date} tests both the data
  6349. modification time (@code{mtime}, the time the contents of the file
  6350. were last modified) and the status change time (@code{ctime}, the time
  6351. the file's status was last changed: owner, permissions, etc.@:)
  6352. fields, while @option{--newer-mtime} tests only the @code{mtime}
  6353. field.
  6354. To be precise, @option{--after-date} checks @emph{both} @code{mtime} and
  6355. @code{ctime} and processes the file if either one is more recent than
  6356. @var{date}, while @option{--newer-mtime} only checks @code{mtime} and
  6357. disregards @code{ctime}. Neither does it use @code{atime} (the last time the
  6358. contents of the file were looked at).
  6359. Date specifiers can have embedded spaces. Because of this, you may need
  6360. to quote date arguments to keep the shell from parsing them as separate
  6361. arguments. For example, the following command will add to the archive
  6362. all the files modified less than two days ago:
  6363. @smallexample
  6364. $ @kbd{tar -cf foo.tar --newer-mtime '2 days ago'}
  6365. @end smallexample
  6366. When any of these options is used with the option @option{--verbose}
  6367. (@pxref{verbose tutorial}) @GNUTAR{} will try to convert the specified
  6368. date back to its textual representation and compare that with the
  6369. one given with the option. If the two dates differ, @command{tar} will
  6370. print a warning saying what date it will use. This is to help user
  6371. ensure he is using the right date. For example:
  6372. @smallexample
  6373. @group
  6374. $ @kbd{tar -c -f archive.tar --after-date='10 days ago' .}
  6375. tar: Option --after-date: Treating date `10 days ago' as 2006-06-11
  6376. 13:19:37.232434
  6377. @end group
  6378. @end smallexample
  6379. @quotation
  6380. @strong{Please Note:} @option{--after-date} and @option{--newer-mtime}
  6381. should not be used for incremental backups. @xref{Incremental Dumps},
  6382. for proper way of creating incremental backups.
  6383. @end quotation
  6384. @node recurse
  6385. @section Descending into Directories
  6386. @UNREVISED
  6387. @cindex Avoiding recursion in directories
  6388. @cindex Descending directories, avoiding
  6389. @cindex Directories, avoiding recursion
  6390. @cindex Recursion in directories, avoiding
  6391. @FIXME{arrggh! this is still somewhat confusing to me. :-< }
  6392. Usually, @command{tar} will recursively explore all directories (either
  6393. those given on the command line or through the @option{--files-from}
  6394. option) for the various files they contain. However, you may not always
  6395. want @command{tar} to act this way.
  6396. @opindex no-recursion
  6397. The @option{--no-recursion} option inhibits @command{tar}'s recursive descent
  6398. into specified directories. If you specify @option{--no-recursion}, you can
  6399. use the @command{find} utility for hunting through levels of directories to
  6400. construct a list of file names which you could then pass to @command{tar}.
  6401. @command{find} allows you to be more selective when choosing which files to
  6402. archive; see @ref{files}, for more information on using @command{find} with
  6403. @command{tar}, or look.
  6404. @table @option
  6405. @item --no-recursion
  6406. Prevents @command{tar} from recursively descending directories.
  6407. @opindex recursion
  6408. @item --recursion
  6409. Requires @command{tar} to recursively descend directories.
  6410. This is the default.
  6411. @end table
  6412. When you use @option{--no-recursion}, @GNUTAR{} grabs
  6413. directory entries themselves, but does not descend on them
  6414. recursively. Many people use @command{find} for locating files they
  6415. want to back up, and since @command{tar} @emph{usually} recursively
  6416. descends on directories, they have to use the @samp{@w{-not -type d}}
  6417. test in their @command{find} invocation (@pxref{Type, Type, Type test,
  6418. find, Finding Files}), as they usually do not want all the files in a
  6419. directory. They then use the @option{--files-from} option to archive
  6420. the files located via @command{find}.
  6421. The problem when restoring files archived in this manner is that the
  6422. directories themselves are not in the archive; so the
  6423. @option{--same-permissions} (@option{--preserve-permissions},
  6424. @option{-p}) option does not affect them---while users might really
  6425. like it to. Specifying @option{--no-recursion} is a way to tell
  6426. @command{tar} to grab only the directory entries given to it, adding
  6427. no new files on its own. To summarize, if you use @command{find} to
  6428. create a list of files to be stored in an archive, use it as follows:
  6429. @smallexample
  6430. @group
  6431. $ @kbd{find @var{dir} @var{tests} | \
  6432. tar -cf @var{archive} -T - --no-recursion}
  6433. @end group
  6434. @end smallexample
  6435. The @option{--no-recursion} option also applies when extracting: it
  6436. causes @command{tar} to extract only the matched directory entries, not
  6437. the files under those directories.
  6438. The @option{--no-recursion} option also affects how globbing patterns
  6439. are interpreted (@pxref{controlling pattern-matching}).
  6440. The @option{--no-recursion} and @option{--recursion} options apply to
  6441. later options and operands, and can be overridden by later occurrences
  6442. of @option{--no-recursion} and @option{--recursion}. For example:
  6443. @smallexample
  6444. $ @kbd{tar -cf jams.tar --no-recursion grape --recursion grape/concord}
  6445. @end smallexample
  6446. @noindent
  6447. creates an archive with one entry for @file{grape}, and the recursive
  6448. contents of @file{grape/concord}, but no entries under @file{grape}
  6449. other than @file{grape/concord}.
  6450. @node one
  6451. @section Crossing File System Boundaries
  6452. @cindex File system boundaries, not crossing
  6453. @UNREVISED
  6454. @command{tar} will normally automatically cross file system boundaries in
  6455. order to archive files which are part of a directory tree. You can
  6456. change this behavior by running @command{tar} and specifying
  6457. @option{--one-file-system}. This option only affects files that are
  6458. archived because they are in a directory that is being archived;
  6459. @command{tar} will still archive files explicitly named on the command line
  6460. or through @option{--files-from}, regardless of where they reside.
  6461. @table @option
  6462. @opindex one-file-system
  6463. @item --one-file-system
  6464. Prevents @command{tar} from crossing file system boundaries when
  6465. archiving. Use in conjunction with any write operation.
  6466. @end table
  6467. The @option{--one-file-system} option causes @command{tar} to modify its
  6468. normal behavior in archiving the contents of directories. If a file in
  6469. a directory is not on the same file system as the directory itself, then
  6470. @command{tar} will not archive that file. If the file is a directory
  6471. itself, @command{tar} will not archive anything beneath it; in other words,
  6472. @command{tar} will not cross mount points.
  6473. This option is useful for making full or incremental archival backups of
  6474. a file system. If this option is used in conjunction with
  6475. @option{--verbose} (@option{-v}), files that are excluded are
  6476. mentioned by name on the standard error.
  6477. @menu
  6478. * directory:: Changing Directory
  6479. * absolute:: Absolute File Names
  6480. @end menu
  6481. @node directory
  6482. @subsection Changing the Working Directory
  6483. @FIXME{need to read over this node now for continuity; i've switched
  6484. things around some.}
  6485. @cindex Changing directory mid-stream
  6486. @cindex Directory, changing mid-stream
  6487. @cindex Working directory, specifying
  6488. To change the working directory in the middle of a list of file names,
  6489. either on the command line or in a file specified using
  6490. @option{--files-from} (@option{-T}), use @option{--directory} (@option{-C}).
  6491. This will change the working directory to the specified directory
  6492. after that point in the list.
  6493. @table @option
  6494. @opindex directory
  6495. @item --directory=@var{directory}
  6496. @itemx -C @var{directory}
  6497. Changes the working directory in the middle of a command line.
  6498. @end table
  6499. For example,
  6500. @smallexample
  6501. $ @kbd{tar -c -f jams.tar grape prune -C food cherry}
  6502. @end smallexample
  6503. @noindent
  6504. will place the files @file{grape} and @file{prune} from the current
  6505. directory into the archive @file{jams.tar}, followed by the file
  6506. @file{cherry} from the directory @file{food}. This option is especially
  6507. useful when you have several widely separated files that you want to
  6508. store in the same archive.
  6509. Note that the file @file{cherry} is recorded in the archive under the
  6510. precise name @file{cherry}, @emph{not} @file{food/cherry}. Thus, the
  6511. archive will contain three files that all appear to have come from the
  6512. same directory; if the archive is extracted with plain @samp{tar
  6513. --extract}, all three files will be written in the current directory.
  6514. Contrast this with the command,
  6515. @smallexample
  6516. $ @kbd{tar -c -f jams.tar grape prune -C food red/cherry}
  6517. @end smallexample
  6518. @noindent
  6519. which records the third file in the archive under the name
  6520. @file{red/cherry} so that, if the archive is extracted using
  6521. @samp{tar --extract}, the third file will be written in a subdirectory
  6522. named @file{orange-colored}.
  6523. You can use the @option{--directory} option to make the archive
  6524. independent of the original name of the directory holding the files.
  6525. The following command places the files @file{/etc/passwd},
  6526. @file{/etc/hosts}, and @file{/lib/libc.a} into the archive
  6527. @file{foo.tar}:
  6528. @smallexample
  6529. $ @kbd{tar -c -f foo.tar -C /etc passwd hosts -C /lib libc.a}
  6530. @end smallexample
  6531. @noindent
  6532. However, the names of the archive members will be exactly what they were
  6533. on the command line: @file{passwd}, @file{hosts}, and @file{libc.a}.
  6534. They will not appear to be related by file name to the original
  6535. directories where those files were located.
  6536. Note that @option{--directory} options are interpreted consecutively. If
  6537. @option{--directory} specifies a relative file name, it is interpreted
  6538. relative to the then current directory, which might not be the same as
  6539. the original current working directory of @command{tar}, due to a previous
  6540. @option{--directory} option.
  6541. When using @option{--files-from} (@pxref{files}), you can put various
  6542. @command{tar} options (including @option{-C}) in the file list. Notice,
  6543. however, that in this case the option and its argument may not be
  6544. separated by whitespace. If you use short option, its argument must
  6545. either follow the option letter immediately, without any intervening
  6546. whitespace, or occupy the next line. Otherwise, if you use long
  6547. option, separate its argument by an equal sign.
  6548. For instance, the file list for the above example will be:
  6549. @smallexample
  6550. @group
  6551. -C/etc
  6552. passwd
  6553. hosts
  6554. --directory=/lib
  6555. libc.a
  6556. @end group
  6557. @end smallexample
  6558. @noindent
  6559. To use it, you would invoke @command{tar} as follows:
  6560. @smallexample
  6561. $ @kbd{tar -c -f foo.tar --files-from list}
  6562. @end smallexample
  6563. The interpretation of @option{--directory} is disabled by
  6564. @option{--null} option.
  6565. @node absolute
  6566. @subsection Absolute File Names
  6567. @UNREVISED
  6568. @table @option
  6569. @opindex absolute-names
  6570. @item --absolute-names
  6571. @itemx -P
  6572. Do not strip leading slashes from file names, and permit file names
  6573. containing a @file{..} file name component.
  6574. @end table
  6575. By default, @GNUTAR{} drops a leading @samp{/} on
  6576. input or output, and complains about file names containing a @file{..}
  6577. component. This option turns off this behavior.
  6578. When @command{tar} extracts archive members from an archive, it strips any
  6579. leading slashes (@samp{/}) from the member name. This causes absolute
  6580. member names in the archive to be treated as relative file names. This
  6581. allows you to have such members extracted wherever you want, instead of
  6582. being restricted to extracting the member in the exact directory named
  6583. in the archive. For example, if the archive member has the name
  6584. @file{/etc/passwd}, @command{tar} will extract it as if the name were
  6585. really @file{etc/passwd}.
  6586. File names containing @file{..} can cause problems when extracting, so
  6587. @command{tar} normally warns you about such files when creating an
  6588. archive, and rejects attempts to extracts such files.
  6589. Other @command{tar} programs do not do this. As a result, if you
  6590. create an archive whose member names start with a slash, they will be
  6591. difficult for other people with a non-@GNUTAR{}
  6592. program to use. Therefore, @GNUTAR{} also strips
  6593. leading slashes from member names when putting members into the
  6594. archive. For example, if you ask @command{tar} to add the file
  6595. @file{/bin/ls} to an archive, it will do so, but the member name will
  6596. be @file{bin/ls}.@footnote{A side effect of this is that when
  6597. @option{--create} is used with @option{--verbose} the resulting output
  6598. is not, generally speaking, the same as the one you'd get running
  6599. @kbd{tar --list} command. This may be important if you use some
  6600. scripts for comparing both outputs. @xref{listing member and file names},
  6601. for the information on how to handle this case.}
  6602. If you use the @option{--absolute-names} (@option{-P}) option,
  6603. @command{tar} will do none of these transformations.
  6604. To archive or extract files relative to the root directory, specify
  6605. the @option{--absolute-names} (@option{-P}) option.
  6606. Normally, @command{tar} acts on files relative to the working
  6607. directory---ignoring superior directory names when archiving, and
  6608. ignoring leading slashes when extracting.
  6609. When you specify @option{--absolute-names} (@option{-P}),
  6610. @command{tar} stores file names including all superior directory
  6611. names, and preserves leading slashes. If you only invoked
  6612. @command{tar} from the root directory you would never need the
  6613. @option{--absolute-names} option, but using this option
  6614. may be more convenient than switching to root.
  6615. @FIXME{Should be an example in the tutorial/wizardry section using this
  6616. to transfer files between systems.}
  6617. @FIXME{Is write access an issue?}
  6618. @table @option
  6619. @item --absolute-names
  6620. Preserves full file names (including superior directory names) when
  6621. archiving files. Preserves leading slash when extracting files.
  6622. @end table
  6623. @FIXME{this is still horrible; need to talk with dan on monday.}
  6624. @command{tar} prints out a message about removing the @samp{/} from
  6625. file names. This message appears once per @GNUTAR{}
  6626. invocation. It represents something which ought to be told; ignoring
  6627. what it means can cause very serious surprises, later.
  6628. Some people, nevertheless, do not want to see this message. Wanting to
  6629. play really dangerously, one may of course redirect @command{tar} standard
  6630. error to the sink. For example, under @command{sh}:
  6631. @smallexample
  6632. $ @kbd{tar -c -f archive.tar /home 2> /dev/null}
  6633. @end smallexample
  6634. @noindent
  6635. Another solution, both nicer and simpler, would be to change to
  6636. the @file{/} directory first, and then avoid absolute notation.
  6637. For example:
  6638. @smallexample
  6639. $ @kbd{tar -c -f archive.tar -C / home}
  6640. @end smallexample
  6641. @include getdate.texi
  6642. @node Formats
  6643. @chapter Controlling the Archive Format
  6644. @cindex Tar archive formats
  6645. Due to historical reasons, there are several formats of tar archives.
  6646. All of them are based on the same principles, but have some subtle
  6647. differences that often make them incompatible with each other.
  6648. GNU tar is able to create and handle archives in a variety of formats.
  6649. The most frequently used formats are (in alphabetical order):
  6650. @table @asis
  6651. @item gnu
  6652. Format used by @GNUTAR{} versions up to 1.13.25. This format derived
  6653. from an early @acronym{POSIX} standard, adding some improvements such as
  6654. sparse file handling and incremental archives. Unfortunately these
  6655. features were implemented in a way incompatible with other archive
  6656. formats.
  6657. Archives in @samp{gnu} format are able to hold file names of unlimited
  6658. length.
  6659. @item oldgnu
  6660. Format used by @GNUTAR{} of versions prior to 1.12.
  6661. @item v7
  6662. Archive format, compatible with the V7 implementation of tar. This
  6663. format imposes a number of limitations. The most important of them
  6664. are:
  6665. @enumerate
  6666. @item The maximum length of a file name is limited to 99 characters.
  6667. @item The maximum length of a symbolic link is limited to 99 characters.
  6668. @item It is impossible to store special files (block and character
  6669. devices, fifos etc.)
  6670. @item Maximum value of user or group @acronym{ID} is limited to 2097151 (7777777
  6671. octal)
  6672. @item V7 archives do not contain symbolic ownership information (user
  6673. and group name of the file owner).
  6674. @end enumerate
  6675. This format has traditionally been used by Automake when producing
  6676. Makefiles. This practice will change in the future, in the meantime,
  6677. however this means that projects containing file names more than 99
  6678. characters long will not be able to use @GNUTAR{} @value{VERSION} and
  6679. Automake prior to 1.9.
  6680. @item ustar
  6681. Archive format defined by @acronym{POSIX.1-1988} specification. It stores
  6682. symbolic ownership information. It is also able to store
  6683. special files. However, it imposes several restrictions as well:
  6684. @enumerate
  6685. @item The maximum length of a file name is limited to 256 characters,
  6686. provided that the file name can be split at a directory separator in
  6687. two parts, first of them being at most 155 bytes long. So, in most
  6688. cases the maximum file name length will be shorter than 256
  6689. characters.
  6690. @item The maximum length of a symbolic link name is limited to
  6691. 100 characters.
  6692. @item Maximum size of a file the archive is able to accommodate
  6693. is 8GB
  6694. @item Maximum value of UID/GID is 2097151.
  6695. @item Maximum number of bits in device major and minor numbers is 21.
  6696. @end enumerate
  6697. @item star
  6698. Format used by J@"org Schilling @command{star}
  6699. implementation. @GNUTAR{} is able to read @samp{star} archives but
  6700. currently does not produce them.
  6701. @item posix
  6702. Archive format defined by @acronym{POSIX.1-2001} specification. This is the
  6703. most flexible and feature-rich format. It does not impose any
  6704. restrictions on file sizes or file name lengths. This format is quite
  6705. recent, so not all tar implementations are able to handle it properly.
  6706. However, this format is designed in such a way that any tar
  6707. implementation able to read @samp{ustar} archives will be able to read
  6708. most @samp{posix} archives as well, with the only exception that any
  6709. additional information (such as long file names etc.) will in such
  6710. case be extracted as plain text files along with the files it refers to.
  6711. This archive format will be the default format for future versions
  6712. of @GNUTAR{}.
  6713. @end table
  6714. The following table summarizes the limitations of each of these
  6715. formats:
  6716. @multitable @columnfractions .10 .20 .20 .20 .20
  6717. @headitem Format @tab UID @tab File Size @tab File Name @tab Devn
  6718. @item gnu @tab 1.8e19 @tab Unlimited @tab Unlimited @tab 63
  6719. @item oldgnu @tab 1.8e19 @tab Unlimited @tab Unlimited @tab 63
  6720. @item v7 @tab 2097151 @tab 8GB @tab 99 @tab n/a
  6721. @item ustar @tab 2097151 @tab 8GB @tab 256 @tab 21
  6722. @item posix @tab Unlimited @tab Unlimited @tab Unlimited @tab Unlimited
  6723. @end multitable
  6724. The default format for @GNUTAR{} is defined at compilation
  6725. time. You may check it by running @command{tar --help}, and examining
  6726. the last lines of its output. Usually, @GNUTAR{} is configured
  6727. to create archives in @samp{gnu} format, however, future version will
  6728. switch to @samp{posix}.
  6729. @menu
  6730. * Compression:: Using Less Space through Compression
  6731. * Attributes:: Handling File Attributes
  6732. * Portability:: Making @command{tar} Archives More Portable
  6733. * cpio:: Comparison of @command{tar} and @command{cpio}
  6734. @end menu
  6735. @node Compression
  6736. @section Using Less Space through Compression
  6737. @menu
  6738. * gzip:: Creating and Reading Compressed Archives
  6739. * sparse:: Archiving Sparse Files
  6740. @end menu
  6741. @node gzip
  6742. @subsection Creating and Reading Compressed Archives
  6743. @cindex Compressed archives
  6744. @cindex Storing archives in compressed format
  6745. @cindex gzip
  6746. @cindex bzip2
  6747. @cindex lzma
  6748. @cindex lzop
  6749. @cindex compress
  6750. @GNUTAR{} is able to create and read compressed archives. It supports
  6751. @command{gzip}, @command{bzip2}, @command{lzma} and @command{lzop} compression
  6752. programs. For backward compatibility, it also supports
  6753. @command{compress} command, although we strongly recommend against
  6754. using it, because it is by far less effective than other compression
  6755. programs@footnote{It also had patent problems in the past.}.
  6756. Creating a compressed archive is simple: you just specify a
  6757. @dfn{compression option} along with the usual archive creation
  6758. commands. The compression option is @option{-z} (@option{--gzip}) to
  6759. create a @command{gzip} compressed archive, @option{-j}
  6760. (@option{--bzip2}) to create a @command{bzip2} compressed archive,
  6761. @option{-J} (@option{--lzma}) to create an @asis{LZMA} compressed
  6762. archive, @option{--lzop} to create an @asis{LSOP} archive, and
  6763. @option{-Z} (@option{--compress}) to use @command{compress} program.
  6764. For example:
  6765. @smallexample
  6766. $ @kbd{tar cfz archive.tar.gz .}
  6767. @end smallexample
  6768. You can also let @GNUTAR{} select the compression program basing on
  6769. the suffix of the archive file name. This is done using
  6770. @option{--auto-compress} (@option{-a}) command line option. For
  6771. example, the following invocation will use @command{bzip2} for
  6772. compression:
  6773. @smallexample
  6774. $ @kbd{tar cfa archive.tar.bz2 .}
  6775. @end smallexample
  6776. @noindent
  6777. whereas the following one will use @command{lzma}:
  6778. @smallexample
  6779. $ @kbd{tar cfa archive.tar.lzma .}
  6780. @end smallexample
  6781. For a complete list of file name suffixes recognized by @GNUTAR{},
  6782. @ref{auto-compress}.
  6783. Reading compressed archive is even simpler: you don't need to specify
  6784. any additional options as @GNUTAR{} recognizes its format
  6785. automatically. Thus, the following commands will list and extract the
  6786. archive created in previous example:
  6787. @smallexample
  6788. # List the compressed archive
  6789. $ @kbd{tar tf archive.tar.gz}
  6790. # Extract the compressed archive
  6791. $ @kbd{tar xf archive.tar.gz}
  6792. @end smallexample
  6793. The format recognition algorithm is based on @dfn{signatures}, a
  6794. special byte sequences in the beginning of file, that are specific for
  6795. certain compression formats. If this approach fails, @command{tar}
  6796. falls back to using archive name suffix to determine its format
  6797. (@xref{auto-compress}, for a list of recognized suffixes).
  6798. The only case when you have to specify a decompression option while
  6799. reading the archive is when reading from a pipe or from a tape drive
  6800. that does not support random access. However, in this case @GNUTAR{}
  6801. will indicate which option you should use. For example:
  6802. @smallexample
  6803. $ @kbd{cat archive.tar.gz | tar tf -}
  6804. tar: Archive is compressed. Use -z option
  6805. tar: Error is not recoverable: exiting now
  6806. @end smallexample
  6807. If you see such diagnostics, just add the suggested option to the
  6808. invocation of @GNUTAR{}:
  6809. @smallexample
  6810. $ @kbd{cat archive.tar.gz | tar tfz -}
  6811. @end smallexample
  6812. Notice also, that there are several restrictions on operations on
  6813. compressed archives. First of all, compressed archives cannot be
  6814. modified, i.e., you cannot update (@option{--update} (@option{-u}))
  6815. them or delete (@option{--delete}) members from them or
  6816. add (@option{--append} (@option{-r})) members to them. Likewise, you
  6817. cannot append another @command{tar} archive to a compressed archive using
  6818. @option{--concatenate} (@option{-A})). Secondly, multi-volume
  6819. archives cannot be compressed.
  6820. The following table summarizes compression options used by @GNUTAR{}.
  6821. @table @option
  6822. @anchor{auto-compress}
  6823. @opindex auto-compress
  6824. @item --auto-compress
  6825. @itemx -a
  6826. Select a compression program to use by the archive file name
  6827. suffix. The following suffixes are recognized:
  6828. @multitable @columnfractions 0.3 0.6
  6829. @headitem Suffix @tab Compression program
  6830. @item @samp{.gz} @tab @command{gzip}
  6831. @item @samp{.tgz} @tab @command{gzip}
  6832. @item @samp{.taz} @tab @command{gzip}
  6833. @item @samp{.Z} @tab @command{compress}
  6834. @item @samp{.taZ} @tab @command{compress}
  6835. @item @samp{.bz2} @tab @command{bzip2}
  6836. @item @samp{.tz2} @tab @command{bzip2}
  6837. @item @samp{.tbz2} @tab @command{bzip2}
  6838. @item @samp{.tbz} @tab @command{bzip2}
  6839. @item @samp{.lzma} @tab @command{lzma}
  6840. @item @samp{.tlz} @tab @command{lzma}
  6841. @item @samp{.lzo} @tab @command{lzop}
  6842. @end multitable
  6843. @opindex gzip
  6844. @opindex ungzip
  6845. @item -z
  6846. @itemx --gzip
  6847. @itemx --ungzip
  6848. Filter the archive through @command{gzip}.
  6849. You can use @option{--gzip} and @option{--gunzip} on physical devices
  6850. (tape drives, etc.) and remote files as well as on normal files; data
  6851. to or from such devices or remote files is reblocked by another copy
  6852. of the @command{tar} program to enforce the specified (or default) record
  6853. size. The default compression parameters are used; if you need to
  6854. override them, set @env{GZIP} environment variable, e.g.:
  6855. @smallexample
  6856. $ @kbd{GZIP=--best tar cfz archive.tar.gz subdir}
  6857. @end smallexample
  6858. @noindent
  6859. Another way would be to avoid the @option{--gzip} (@option{--gunzip}, @option{--ungzip}, @option{-z}) option and run
  6860. @command{gzip} explicitly:
  6861. @smallexample
  6862. $ @kbd{tar cf - subdir | gzip --best -c - > archive.tar.gz}
  6863. @end smallexample
  6864. @cindex corrupted archives
  6865. About corrupted compressed archives: @command{gzip}'ed files have no
  6866. redundancy, for maximum compression. The adaptive nature of the
  6867. compression scheme means that the compression tables are implicitly
  6868. spread all over the archive. If you lose a few blocks, the dynamic
  6869. construction of the compression tables becomes unsynchronized, and there
  6870. is little chance that you could recover later in the archive.
  6871. There are pending suggestions for having a per-volume or per-file
  6872. compression in @GNUTAR{}. This would allow for viewing the
  6873. contents without decompression, and for resynchronizing decompression at
  6874. every volume or file, in case of corrupted archives. Doing so, we might
  6875. lose some compressibility. But this would have make recovering easier.
  6876. So, there are pros and cons. We'll see!
  6877. @opindex bzip2
  6878. @item -j
  6879. @itemx --bzip2
  6880. Filter the archive through @code{bzip2}. Otherwise like @option{--gzip}.
  6881. @opindex lzma
  6882. @item --lzma
  6883. @itemx -J
  6884. Filter the archive through @command{lzma}. Otherwise like @option{--gzip}.
  6885. @opindex lzop
  6886. @item --lzop
  6887. Filter the archive through @command{lzop}. Otherwise like
  6888. @option{--gzip}.
  6889. @opindex compress
  6890. @opindex uncompress
  6891. @item -Z
  6892. @itemx --compress
  6893. @itemx --uncompress
  6894. Filter the archive through @command{compress}. Otherwise like @option{--gzip}.
  6895. @opindex use-compress-program
  6896. @item --use-compress-program=@var{prog}
  6897. Use external compression program @var{prog}. Use this option if you
  6898. have a compression program that @GNUTAR{} does not support. There
  6899. are two requirements to which @var{prog} should comply:
  6900. First, when called without options, it should read data from standard
  6901. input, compress it and output it on standard output.
  6902. Secondly, if called with @option{-d} argument, it should do exactly
  6903. the opposite, i.e., read the compressed data from the standard input
  6904. and produce uncompressed data on the standard output.
  6905. @end table
  6906. @cindex gpg, using with tar
  6907. @cindex gnupg, using with tar
  6908. @cindex Using encrypted archives
  6909. The @option{--use-compress-program} option, in particular, lets you
  6910. implement your own filters, not necessarily dealing with
  6911. compression/decompression. For example, suppose you wish to implement
  6912. PGP encryption on top of compression, using @command{gpg} (@pxref{Top,
  6913. gpg, gpg ---- encryption and signing tool, gpg, GNU Privacy Guard
  6914. Manual}). The following script does that:
  6915. @smallexample
  6916. @group
  6917. #! /bin/sh
  6918. case $1 in
  6919. -d) gpg --decrypt - | gzip -d -c;;
  6920. '') gzip -c | gpg -s ;;
  6921. *) echo "Unknown option $1">&2; exit 1;;
  6922. esac
  6923. @end group
  6924. @end smallexample
  6925. Suppose you name it @file{gpgz} and save it somewhere in your
  6926. @env{PATH}. Then the following command will create a compressed
  6927. archive signed with your private key:
  6928. @smallexample
  6929. $ @kbd{tar -cf foo.tar.gpgz --use-compress=gpgz .}
  6930. @end smallexample
  6931. @noindent
  6932. Likewise, the following command will list its contents:
  6933. @smallexample
  6934. $ @kbd{tar -tf foo.tar.gpgz --use-compress=gpgz .}
  6935. @end smallexample
  6936. @ignore
  6937. The above is based on the following discussion:
  6938. I have one question, or maybe it's a suggestion if there isn't a way
  6939. to do it now. I would like to use @option{--gzip}, but I'd also like
  6940. the output to be fed through a program like @acronym{GNU}
  6941. @command{ecc} (actually, right now that's @samp{exactly} what I'd like
  6942. to use :-)), basically adding ECC protection on top of compression.
  6943. It seems as if this should be quite easy to do, but I can't work out
  6944. exactly how to go about it. Of course, I can pipe the standard output
  6945. of @command{tar} through @command{ecc}, but then I lose (though I
  6946. haven't started using it yet, I confess) the ability to have
  6947. @command{tar} use @command{rmt} for it's I/O (I think).
  6948. I think the most straightforward thing would be to let me specify a
  6949. general set of filters outboard of compression (preferably ordered,
  6950. so the order can be automatically reversed on input operations, and
  6951. with the options they require specifiable), but beggars shouldn't be
  6952. choosers and anything you decide on would be fine with me.
  6953. By the way, I like @command{ecc} but if (as the comments say) it can't
  6954. deal with loss of block sync, I'm tempted to throw some time at adding
  6955. that capability. Supposing I were to actually do such a thing and
  6956. get it (apparently) working, do you accept contributed changes to
  6957. utilities like that? (Leigh Clayton @file{loc@@soliton.com}, May 1995).
  6958. Isn't that exactly the role of the
  6959. @option{--use-compress-prog=@var{program}} option?
  6960. I never tried it myself, but I suspect you may want to write a
  6961. @var{prog} script or program able to filter stdin to stdout to
  6962. way you want. It should recognize the @option{-d} option, for when
  6963. extraction is needed rather than creation.
  6964. It has been reported that if one writes compressed data (through the
  6965. @option{--gzip} or @option{--compress} options) to a DLT and tries to use
  6966. the DLT compression mode, the data will actually get bigger and one will
  6967. end up with less space on the tape.
  6968. @end ignore
  6969. @node sparse
  6970. @subsection Archiving Sparse Files
  6971. @cindex Sparse Files
  6972. Files in the file system occasionally have @dfn{holes}. A @dfn{hole}
  6973. in a file is a section of the file's contents which was never written.
  6974. The contents of a hole reads as all zeros. On many operating systems,
  6975. actual disk storage is not allocated for holes, but they are counted
  6976. in the length of the file. If you archive such a file, @command{tar}
  6977. could create an archive longer than the original. To have @command{tar}
  6978. attempt to recognize the holes in a file, use @option{--sparse}
  6979. (@option{-S}). When you use this option, then, for any file using
  6980. less disk space than would be expected from its length, @command{tar}
  6981. searches the file for consecutive stretches of zeros. It then records
  6982. in the archive for the file where the consecutive stretches of zeros
  6983. are, and only archives the ``real contents'' of the file. On
  6984. extraction (using @option{--sparse} is not needed on extraction) any
  6985. such files have holes created wherever the continuous stretches of zeros
  6986. were found. Thus, if you use @option{--sparse}, @command{tar} archives
  6987. won't take more space than the original.
  6988. @table @option
  6989. @opindex sparse
  6990. @item -S
  6991. @itemx --sparse
  6992. This option instructs @command{tar} to test each file for sparseness
  6993. before attempting to archive it. If the file is found to be sparse it
  6994. is treated specially, thus allowing to decrease the amount of space
  6995. used by its image in the archive.
  6996. This option is meaningful only when creating or updating archives. It
  6997. has no effect on extraction.
  6998. @end table
  6999. Consider using @option{--sparse} when performing file system backups,
  7000. to avoid archiving the expanded forms of files stored sparsely in the
  7001. system.
  7002. Even if your system has no sparse files currently, some may be
  7003. created in the future. If you use @option{--sparse} while making file
  7004. system backups as a matter of course, you can be assured the archive
  7005. will never take more space on the media than the files take on disk
  7006. (otherwise, archiving a disk filled with sparse files might take
  7007. hundreds of tapes). @xref{Incremental Dumps}.
  7008. However, be aware that @option{--sparse} option presents a serious
  7009. drawback. Namely, in order to determine if the file is sparse
  7010. @command{tar} has to read it before trying to archive it, so in total
  7011. the file is read @strong{twice}. So, always bear in mind that the
  7012. time needed to process all files with this option is roughly twice
  7013. the time needed to archive them without it.
  7014. @FIXME{A technical note:
  7015. Programs like @command{dump} do not have to read the entire file; by
  7016. examining the file system directly, they can determine in advance
  7017. exactly where the holes are and thus avoid reading through them. The
  7018. only data it need read are the actual allocated data blocks.
  7019. @GNUTAR{} uses a more portable and straightforward
  7020. archiving approach, it would be fairly difficult that it does
  7021. otherwise. Elizabeth Zwicky writes to @file{comp.unix.internals}, on
  7022. 1990-12-10:
  7023. @quotation
  7024. What I did say is that you cannot tell the difference between a hole and an
  7025. equivalent number of nulls without reading raw blocks. @code{st_blocks} at
  7026. best tells you how many holes there are; it doesn't tell you @emph{where}.
  7027. Just as programs may, conceivably, care what @code{st_blocks} is (care
  7028. to name one that does?), they may also care where the holes are (I have
  7029. no examples of this one either, but it's equally imaginable).
  7030. I conclude from this that good archivers are not portable. One can
  7031. arguably conclude that if you want a portable program, you can in good
  7032. conscience restore files with as many holes as possible, since you can't
  7033. get it right.
  7034. @end quotation
  7035. }
  7036. @cindex sparse formats, defined
  7037. When using @samp{POSIX} archive format, @GNUTAR{} is able to store
  7038. sparse files using in three distinct ways, called @dfn{sparse
  7039. formats}. A sparse format is identified by its @dfn{number},
  7040. consisting, as usual of two decimal numbers, delimited by a dot. By
  7041. default, format @samp{1.0} is used. If, for some reason, you wish to
  7042. use an earlier format, you can select it using
  7043. @option{--sparse-version} option.
  7044. @table @option
  7045. @opindex sparse-version
  7046. @item --sparse-version=@var{version}
  7047. Select the format to store sparse files in. Valid @var{version} values
  7048. are: @samp{0.0}, @samp{0.1} and @samp{1.0}. @xref{Sparse Formats},
  7049. for a detailed description of each format.
  7050. @end table
  7051. Using @option{--sparse-format} option implies @option{--sparse}.
  7052. @node Attributes
  7053. @section Handling File Attributes
  7054. @UNREVISED
  7055. When @command{tar} reads files, it updates their access times. To
  7056. avoid this, use the @option{--atime-preserve[=METHOD]} option, which can either
  7057. reset the access time retroactively or avoid changing it in the first
  7058. place.
  7059. Handling of file attributes
  7060. @table @option
  7061. @opindex atime-preserve
  7062. @item --atime-preserve
  7063. @itemx --atime-preserve=replace
  7064. @itemx --atime-preserve=system
  7065. Preserve the access times of files that are read. This works only for
  7066. files that you own, unless you have superuser privileges.
  7067. @option{--atime-preserve=replace} works on most systems, but it also
  7068. restores the data modification time and updates the status change
  7069. time. Hence it doesn't interact with incremental dumps nicely
  7070. (@pxref{Incremental Dumps}), and it can set access or data modification times
  7071. incorrectly if other programs access the file while @command{tar} is
  7072. running.
  7073. @option{--atime-preserve=system} avoids changing the access time in
  7074. the first place, if the operating system supports this.
  7075. Unfortunately, this may or may not work on any given operating system
  7076. or file system. If @command{tar} knows for sure it won't work, it
  7077. complains right away.
  7078. Currently @option{--atime-preserve} with no operand defaults to
  7079. @option{--atime-preserve=replace}, but this is intended to change to
  7080. @option{--atime-preserve=system} when the latter is better-supported.
  7081. @opindex touch
  7082. @item -m
  7083. @itemx --touch
  7084. Do not extract data modification time.
  7085. When this option is used, @command{tar} leaves the data modification times
  7086. of the files it extracts as the times when the files were extracted,
  7087. instead of setting it to the times recorded in the archive.
  7088. This option is meaningless with @option{--list} (@option{-t}).
  7089. @opindex same-owner
  7090. @item --same-owner
  7091. Create extracted files with the same ownership they have in the
  7092. archive.
  7093. This is the default behavior for the superuser,
  7094. so this option is meaningful only for non-root users, when @command{tar}
  7095. is executed on those systems able to give files away. This is
  7096. considered as a security flaw by many people, at least because it
  7097. makes quite difficult to correctly account users for the disk space
  7098. they occupy. Also, the @code{suid} or @code{sgid} attributes of
  7099. files are easily and silently lost when files are given away.
  7100. When writing an archive, @command{tar} writes the user @acronym{ID} and user name
  7101. separately. If it can't find a user name (because the user @acronym{ID} is not
  7102. in @file{/etc/passwd}), then it does not write one. When restoring,
  7103. it tries to look the name (if one was written) up in
  7104. @file{/etc/passwd}. If it fails, then it uses the user @acronym{ID} stored in
  7105. the archive instead.
  7106. @opindex no-same-owner
  7107. @item --no-same-owner
  7108. @itemx -o
  7109. Do not attempt to restore ownership when extracting. This is the
  7110. default behavior for ordinary users, so this option has an effect
  7111. only for the superuser.
  7112. @opindex numeric-owner
  7113. @item --numeric-owner
  7114. The @option{--numeric-owner} option allows (ANSI) archives to be written
  7115. without user/group name information or such information to be ignored
  7116. when extracting. It effectively disables the generation and/or use
  7117. of user/group name information. This option forces extraction using
  7118. the numeric ids from the archive, ignoring the names.
  7119. This is useful in certain circumstances, when restoring a backup from
  7120. an emergency floppy with different passwd/group files for example.
  7121. It is otherwise impossible to extract files with the right ownerships
  7122. if the password file in use during the extraction does not match the
  7123. one belonging to the file system(s) being extracted. This occurs,
  7124. for example, if you are restoring your files after a major crash and
  7125. had booted from an emergency floppy with no password file or put your
  7126. disk into another machine to do the restore.
  7127. The numeric ids are @emph{always} saved into @command{tar} archives.
  7128. The identifying names are added at create time when provided by the
  7129. system, unless @option{--old-archive} (@option{-o}) is used. Numeric ids could be
  7130. used when moving archives between a collection of machines using
  7131. a centralized management for attribution of numeric ids to users
  7132. and groups. This is often made through using the NIS capabilities.
  7133. When making a @command{tar} file for distribution to other sites, it
  7134. is sometimes cleaner to use a single owner for all files in the
  7135. distribution, and nicer to specify the write permission bits of the
  7136. files as stored in the archive independently of their actual value on
  7137. the file system. The way to prepare a clean distribution is usually
  7138. to have some Makefile rule creating a directory, copying all needed
  7139. files in that directory, then setting ownership and permissions as
  7140. wanted (there are a lot of possible schemes), and only then making a
  7141. @command{tar} archive out of this directory, before cleaning
  7142. everything out. Of course, we could add a lot of options to
  7143. @GNUTAR{} for fine tuning permissions and ownership.
  7144. This is not the good way, I think. @GNUTAR{} is
  7145. already crowded with options and moreover, the approach just explained
  7146. gives you a great deal of control already.
  7147. @xopindex{same-permissions, short description}
  7148. @xopindex{preserve-permissions, short description}
  7149. @item -p
  7150. @itemx --same-permissions
  7151. @itemx --preserve-permissions
  7152. Extract all protection information.
  7153. This option causes @command{tar} to set the modes (access permissions) of
  7154. extracted files exactly as recorded in the archive. If this option
  7155. is not used, the current @code{umask} setting limits the permissions
  7156. on extracted files. This option is by default enabled when
  7157. @command{tar} is executed by a superuser.
  7158. This option is meaningless with @option{--list} (@option{-t}).
  7159. @opindex preserve
  7160. @item --preserve
  7161. Same as both @option{--same-permissions} and @option{--same-order}.
  7162. The @option{--preserve} option has no equivalent short option name.
  7163. It is equivalent to @option{--same-permissions} plus @option{--same-order}.
  7164. @FIXME{I do not see the purpose of such an option. (Neither I. FP.)
  7165. Neither do I. --Sergey}
  7166. @end table
  7167. @node Portability
  7168. @section Making @command{tar} Archives More Portable
  7169. Creating a @command{tar} archive on a particular system that is meant to be
  7170. useful later on many other machines and with other versions of @command{tar}
  7171. is more challenging than you might think. @command{tar} archive formats
  7172. have been evolving since the first versions of Unix. Many such formats
  7173. are around, and are not always compatible with each other. This section
  7174. discusses a few problems, and gives some advice about making @command{tar}
  7175. archives more portable.
  7176. One golden rule is simplicity. For example, limit your @command{tar}
  7177. archives to contain only regular files and directories, avoiding
  7178. other kind of special files. Do not attempt to save sparse files or
  7179. contiguous files as such. Let's discuss a few more problems, in turn.
  7180. @FIXME{Discuss GNU extensions (incremental backups, multi-volume
  7181. archives and archive labels) in GNU and PAX formats.}
  7182. @menu
  7183. * Portable Names:: Portable Names
  7184. * dereference:: Symbolic Links
  7185. * hard links:: Hard Links
  7186. * old:: Old V7 Archives
  7187. * ustar:: Ustar Archives
  7188. * gnu:: GNU and old GNU format archives.
  7189. * posix:: @acronym{POSIX} archives
  7190. * Checksumming:: Checksumming Problems
  7191. * Large or Negative Values:: Large files, negative time stamps, etc.
  7192. * Other Tars:: How to Extract GNU-Specific Data Using
  7193. Other @command{tar} Implementations
  7194. @end menu
  7195. @node Portable Names
  7196. @subsection Portable Names
  7197. Use portable file and member names. A name is portable if it contains
  7198. only @acronym{ASCII} letters and digits, @samp{/}, @samp{.}, @samp{_}, and
  7199. @samp{-}; it cannot be empty, start with @samp{-} or @samp{//}, or
  7200. contain @samp{/-}. Avoid deep directory nesting. For portability to
  7201. old Unix hosts, limit your file name components to 14 characters or
  7202. less.
  7203. If you intend to have your @command{tar} archives to be read under
  7204. MSDOS, you should not rely on case distinction for file names, and you
  7205. might use the @acronym{GNU} @command{doschk} program for helping you
  7206. further diagnosing illegal MSDOS names, which are even more limited
  7207. than System V's.
  7208. @node dereference
  7209. @subsection Symbolic Links
  7210. @cindex File names, using symbolic links
  7211. @cindex Symbolic link as file name
  7212. @opindex dereference
  7213. Normally, when @command{tar} archives a symbolic link, it writes a
  7214. block to the archive naming the target of the link. In that way, the
  7215. @command{tar} archive is a faithful record of the file system contents.
  7216. @option{--dereference} (@option{-h}) is used with @option{--create} (@option{-c}), and causes
  7217. @command{tar} to archive the files symbolic links point to, instead of
  7218. the links themselves. When this option is used, when @command{tar}
  7219. encounters a symbolic link, it will archive the linked-to file,
  7220. instead of simply recording the presence of a symbolic link.
  7221. The name under which the file is stored in the file system is not
  7222. recorded in the archive. To record both the symbolic link name and
  7223. the file name in the system, archive the file under both names. If
  7224. all links were recorded automatically by @command{tar}, an extracted file
  7225. might be linked to a file name that no longer exists in the file
  7226. system.
  7227. If a linked-to file is encountered again by @command{tar} while creating
  7228. the same archive, an entire second copy of it will be stored. (This
  7229. @emph{might} be considered a bug.)
  7230. So, for portable archives, do not archive symbolic links as such,
  7231. and use @option{--dereference} (@option{-h}): many systems do not support
  7232. symbolic links, and moreover, your distribution might be unusable if
  7233. it contains unresolved symbolic links.
  7234. @node hard links
  7235. @subsection Hard Links
  7236. @UNREVISED{}
  7237. @cindex File names, using hard links
  7238. @cindex hard links, dereferencing
  7239. @cindex dereferencing hard links
  7240. Normally, when @command{tar} archives a hard link, it writes a
  7241. block to the archive naming the target of the link (a @samp{1} type
  7242. block). In that way, the actual file contents is stored in file only
  7243. once. For example, consider the following two files:
  7244. @smallexample
  7245. @group
  7246. $ ls
  7247. -rw-r--r-- 2 gray staff 4 2007-10-30 15:11 one
  7248. -rw-r--r-- 2 gray staff 4 2007-10-30 15:11 jeden
  7249. @end group
  7250. @end smallexample
  7251. Here, @file{jeden} is a link to @file{one}. When archiving this
  7252. directory with a verbose level 2, you will get an output similar to
  7253. the following:
  7254. @smallexample
  7255. $ tar cfvv ../archive.tar .
  7256. drwxr-xr-x gray/staff 0 2007-10-30 15:13 ./
  7257. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./jeden
  7258. hrw-r--r-- gray/staff 0 2007-10-30 15:11 ./one link to ./jeden
  7259. @end smallexample
  7260. The last line shows that, instead of storing two copies of the file,
  7261. @command{tar} stored it only once, under the name @file{jeden}, and
  7262. stored file @file{one} as a hard link to this file.
  7263. It may be important to know that all hard links to the given file are
  7264. stored in the archive. For example, this may be necessary for exact
  7265. reproduction of the file system. The following option does that:
  7266. @table @option
  7267. @xopindex{check-links, described}
  7268. @item --check-links
  7269. @itemx -l
  7270. Check the number of links dumped for each processed file. If this
  7271. number does not match the total number of hard links for the file, print
  7272. a warning message.
  7273. @end table
  7274. For example, trying to archive only file @file{jeden} with this option
  7275. produces the following diagnostics:
  7276. @smallexample
  7277. $ tar -c -f ../archive.tar jeden
  7278. tar: Missing links to `jeden'.
  7279. @end smallexample
  7280. Although creating special records for hard links helps keep a faithful
  7281. record of the file system contents and makes archives more compact, it
  7282. may present some difficulties when extracting individual members from
  7283. the archive. For example, trying to extract file @file{one} from the
  7284. archive created in previous examples produces, in the absense of file
  7285. @file{jeden}:
  7286. @smallexample
  7287. $ tar xf archive.tar ./one
  7288. tar: ./one: Cannot hard link to `./jeden': No such file or directory
  7289. tar: Error exit delayed from previous errors
  7290. @end smallexample
  7291. The reason for this behavior is that @command{tar} cannot seek back in
  7292. the archive to the previous member (in this case, @file{one}), to
  7293. extract it@footnote{There are plans to fix this in future releases.}.
  7294. If you wish to avoid such problems at the cost of a bigger archive,
  7295. use the following option:
  7296. @table @option
  7297. @xopindex{hard-dereference, described}
  7298. @item --hard-dereference
  7299. Dereference hard links and store the files they refer to.
  7300. @end table
  7301. For example, trying this option on our two sample files, we get two
  7302. copies in the archive, each of which can then be extracted
  7303. independently of the other:
  7304. @smallexample
  7305. @group
  7306. $ tar -c -vv -f ../archive.tar --hard-dereference .
  7307. drwxr-xr-x gray/staff 0 2007-10-30 15:13 ./
  7308. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./jeden
  7309. -rw-r--r-- gray/staff 4 2007-10-30 15:11 ./one
  7310. @end group
  7311. @end smallexample
  7312. @node old
  7313. @subsection Old V7 Archives
  7314. @cindex Format, old style
  7315. @cindex Old style format
  7316. @cindex Old style archives
  7317. @cindex v7 archive format
  7318. Certain old versions of @command{tar} cannot handle additional
  7319. information recorded by newer @command{tar} programs. To create an
  7320. archive in V7 format (not ANSI), which can be read by these old
  7321. versions, specify the @option{--format=v7} option in
  7322. conjunction with the @option{--create} (@option{-c}) (@command{tar} also
  7323. accepts @option{--portability} or @option{--old-archive} for this
  7324. option). When you specify it,
  7325. @command{tar} leaves out information about directories, pipes, fifos,
  7326. contiguous files, and device files, and specifies file ownership by
  7327. group and user IDs instead of group and user names.
  7328. When updating an archive, do not use @option{--format=v7}
  7329. unless the archive was created using this option.
  7330. In most cases, a @emph{new} format archive can be read by an @emph{old}
  7331. @command{tar} program without serious trouble, so this option should
  7332. seldom be needed. On the other hand, most modern @command{tar}s are
  7333. able to read old format archives, so it might be safer for you to
  7334. always use @option{--format=v7} for your distributions. Notice,
  7335. however, that @samp{ustar} format is a better alternative, as it is
  7336. free from many of @samp{v7}'s drawbacks.
  7337. @node ustar
  7338. @subsection Ustar Archive Format
  7339. @cindex ustar archive format
  7340. Archive format defined by @acronym{POSIX}.1-1988 specification is called
  7341. @code{ustar}. Although it is more flexible than the V7 format, it
  7342. still has many restrictions (@xref{Formats,ustar}, for the detailed
  7343. description of @code{ustar} format). Along with V7 format,
  7344. @code{ustar} format is a good choice for archives intended to be read
  7345. with other implementations of @command{tar}.
  7346. To create archive in @code{ustar} format, use @option{--format=ustar}
  7347. option in conjunction with the @option{--create} (@option{-c}).
  7348. @node gnu
  7349. @subsection @acronym{GNU} and old @GNUTAR{} format
  7350. @cindex GNU archive format
  7351. @cindex Old GNU archive format
  7352. @GNUTAR{} was based on an early draft of the
  7353. @acronym{POSIX} 1003.1 @code{ustar} standard. @acronym{GNU} extensions to
  7354. @command{tar}, such as the support for file names longer than 100
  7355. characters, use portions of the @command{tar} header record which were
  7356. specified in that @acronym{POSIX} draft as unused. Subsequent changes in
  7357. @acronym{POSIX} have allocated the same parts of the header record for
  7358. other purposes. As a result, @GNUTAR{} format is
  7359. incompatible with the current @acronym{POSIX} specification, and with
  7360. @command{tar} programs that follow it.
  7361. In the majority of cases, @command{tar} will be configured to create
  7362. this format by default. This will change in future releases, since
  7363. we plan to make @samp{POSIX} format the default.
  7364. To force creation a @GNUTAR{} archive, use option
  7365. @option{--format=gnu}.
  7366. @node posix
  7367. @subsection @GNUTAR{} and @acronym{POSIX} @command{tar}
  7368. @cindex POSIX archive format
  7369. @cindex PAX archive format
  7370. Starting from version 1.14 @GNUTAR{} features full support for
  7371. @acronym{POSIX.1-2001} archives.
  7372. A @acronym{POSIX} conformant archive will be created if @command{tar}
  7373. was given @option{--format=posix} (@option{--format=pax}) option. No
  7374. special option is required to read and extract from a @acronym{POSIX}
  7375. archive.
  7376. @menu
  7377. * PAX keywords:: Controlling Extended Header Keywords.
  7378. @end menu
  7379. @node PAX keywords
  7380. @subsubsection Controlling Extended Header Keywords
  7381. @table @option
  7382. @opindex pax-option
  7383. @item --pax-option=@var{keyword-list}
  7384. Handle keywords in @acronym{PAX} extended headers. This option is
  7385. equivalent to @option{-o} option of the @command{pax} utility.
  7386. @end table
  7387. @var{Keyword-list} is a comma-separated
  7388. list of keyword options, each keyword option taking one of
  7389. the following forms:
  7390. @table @code
  7391. @item delete=@var{pattern}
  7392. When used with one of archive-creation commands,
  7393. this option instructs @command{tar} to omit from extended header records
  7394. that it produces any keywords matching the string @var{pattern}.
  7395. When used in extract or list mode, this option instructs tar
  7396. to ignore any keywords matching the given @var{pattern} in the extended
  7397. header records. In both cases, matching is performed using the pattern
  7398. matching notation described in @acronym{POSIX 1003.2}, 3.13
  7399. (@pxref{wildcards}). For example:
  7400. @smallexample
  7401. --pax-option delete=security.*
  7402. @end smallexample
  7403. would suppress security-related information.
  7404. @item exthdr.name=@var{string}
  7405. This keyword allows user control over the name that is written into the
  7406. ustar header blocks for the extended headers. The name is obtained
  7407. from @var{string} after making the following substitutions:
  7408. @multitable @columnfractions .25 .55
  7409. @headitem Meta-character @tab Replaced By
  7410. @item %d @tab The directory name of the file, equivalent to the
  7411. result of the @command{dirname} utility on the translated file name.
  7412. @item %f @tab The name of the file with the directory information
  7413. stripped, equivalent to the result of the @command{basename} utility
  7414. on the translated file name.
  7415. @item %p @tab The process @acronym{ID} of the @command{tar} process.
  7416. @item %% @tab A @samp{%} character.
  7417. @end multitable
  7418. Any other @samp{%} characters in @var{string} produce undefined
  7419. results.
  7420. If no option @samp{exthdr.name=string} is specified, @command{tar}
  7421. will use the following default value:
  7422. @smallexample
  7423. %d/PaxHeaders.%p/%f
  7424. @end smallexample
  7425. @item globexthdr.name=@var{string}
  7426. This keyword allows user control over the name that is written into
  7427. the ustar header blocks for global extended header records. The name
  7428. is obtained from the contents of @var{string}, after making
  7429. the following substitutions:
  7430. @multitable @columnfractions .25 .55
  7431. @headitem Meta-character @tab Replaced By
  7432. @item %n @tab An integer that represents the
  7433. sequence number of the global extended header record in the archive,
  7434. starting at 1.
  7435. @item %p @tab The process @acronym{ID} of the @command{tar} process.
  7436. @item %% @tab A @samp{%} character.
  7437. @end multitable
  7438. Any other @samp{%} characters in @var{string} produce undefined results.
  7439. If no option @samp{globexthdr.name=string} is specified, @command{tar}
  7440. will use the following default value:
  7441. @smallexample
  7442. $TMPDIR/GlobalHead.%p.%n
  7443. @end smallexample
  7444. @noindent
  7445. where @samp{$TMPDIR} represents the value of the @var{TMPDIR}
  7446. environment variable. If @var{TMPDIR} is not set, @command{tar}
  7447. uses @samp{/tmp}.
  7448. @item @var{keyword}=@var{value}
  7449. When used with one of archive-creation commands, these keyword/value pairs
  7450. will be included at the beginning of the archive in a global extended
  7451. header record. When used with one of archive-reading commands,
  7452. @command{tar} will behave as if it has encountered these keyword/value
  7453. pairs at the beginning of the archive in a global extended header
  7454. record.
  7455. @item @var{keyword}:=@var{value}
  7456. When used with one of archive-creation commands, these keyword/value pairs
  7457. will be included as records at the beginning of an extended header for
  7458. each file. This is effectively equivalent to @var{keyword}=@var{value}
  7459. form except that it creates no global extended header records.
  7460. When used with one of archive-reading commands, @command{tar} will
  7461. behave as if these keyword/value pairs were included as records at the
  7462. end of each extended header; thus, they will override any global or
  7463. file-specific extended header record keywords of the same names.
  7464. For example, in the command:
  7465. @smallexample
  7466. tar --format=posix --create \
  7467. --file archive --pax-option gname:=user .
  7468. @end smallexample
  7469. the group name will be forced to a new value for all files
  7470. stored in the archive.
  7471. @end table
  7472. @node Checksumming
  7473. @subsection Checksumming Problems
  7474. SunOS and HP-UX @command{tar} fail to accept archives created using
  7475. @GNUTAR{} and containing non-@acronym{ASCII} file names, that
  7476. is, file names having characters with the eight bit set, because they
  7477. use signed checksums, while @GNUTAR{} uses unsigned
  7478. checksums while creating archives, as per @acronym{POSIX} standards. On
  7479. reading, @GNUTAR{} computes both checksums and
  7480. accept any. It is somewhat worrying that a lot of people may go
  7481. around doing backup of their files using faulty (or at least
  7482. non-standard) software, not learning about it until it's time to
  7483. restore their missing files with an incompatible file extractor, or
  7484. vice versa.
  7485. @GNUTAR{} compute checksums both ways, and accept
  7486. any on read, so @acronym{GNU} tar can read Sun tapes even with their
  7487. wrong checksums. @GNUTAR{} produces the standard
  7488. checksum, however, raising incompatibilities with Sun. That is to
  7489. say, @GNUTAR{} has not been modified to
  7490. @emph{produce} incorrect archives to be read by buggy @command{tar}'s.
  7491. I've been told that more recent Sun @command{tar} now read standard
  7492. archives, so maybe Sun did a similar patch, after all?
  7493. The story seems to be that when Sun first imported @command{tar}
  7494. sources on their system, they recompiled it without realizing that
  7495. the checksums were computed differently, because of a change in
  7496. the default signing of @code{char}'s in their compiler. So they
  7497. started computing checksums wrongly. When they later realized their
  7498. mistake, they merely decided to stay compatible with it, and with
  7499. themselves afterwards. Presumably, but I do not really know, HP-UX
  7500. has chosen that their @command{tar} archives to be compatible with Sun's.
  7501. The current standards do not favor Sun @command{tar} format. In any
  7502. case, it now falls on the shoulders of SunOS and HP-UX users to get
  7503. a @command{tar} able to read the good archives they receive.
  7504. @node Large or Negative Values
  7505. @subsection Large or Negative Values
  7506. @cindex large values
  7507. @cindex future time stamps
  7508. @cindex negative time stamps
  7509. @UNREVISED{}
  7510. The above sections suggest to use @samp{oldest possible} archive
  7511. format if in doubt. However, sometimes it is not possible. If you
  7512. attempt to archive a file whose metadata cannot be represented using
  7513. required format, @GNUTAR{} will print error message and ignore such a
  7514. file. You will than have to switch to a format that is able to
  7515. handle such values. The format summary table (@pxref{Formats}) will
  7516. help you to do so.
  7517. In particular, when trying to archive files larger than 8GB or with
  7518. timestamps not in the range 1970-01-01 00:00:00 through 2242-03-16
  7519. 12:56:31 @sc{utc}, you will have to chose between @acronym{GNU} and
  7520. @acronym{POSIX} archive formats. When considering which format to
  7521. choose, bear in mind that the @acronym{GNU} format uses
  7522. two's-complement base-256 notation to store values that do not fit
  7523. into standard @acronym{ustar} range. Such archives can generally be
  7524. read only by a @GNUTAR{} implementation. Moreover, they sometimes
  7525. cannot be correctly restored on another hosts even by @GNUTAR{}. For
  7526. example, using two's complement representation for negative time
  7527. stamps that assumes a signed 32-bit @code{time_t} generates archives
  7528. that are not portable to hosts with differing @code{time_t}
  7529. representations.
  7530. On the other hand, @acronym{POSIX} archives, generally speaking, can
  7531. be extracted by any tar implementation that understands older
  7532. @acronym{ustar} format. The only exception are files larger than 8GB.
  7533. @FIXME{Describe how @acronym{POSIX} archives are extracted by non
  7534. POSIX-aware tars.}
  7535. @node Other Tars
  7536. @subsection How to Extract GNU-Specific Data Using Other @command{tar} Implementations
  7537. In previous sections you became acquainted with various quirks
  7538. necessary to make your archives portable. Sometimes you may need to
  7539. extract archives containing GNU-specific members using some
  7540. third-party @command{tar} implementation or an older version of
  7541. @GNUTAR{}. Of course your best bet is to have @GNUTAR{} installed,
  7542. but if it is for some reason impossible, this section will explain
  7543. how to cope without it.
  7544. When we speak about @dfn{GNU-specific} members we mean two classes of
  7545. them: members split between the volumes of a multi-volume archive and
  7546. sparse members. You will be able to always recover such members if
  7547. the archive is in PAX format. In addition split members can be
  7548. recovered from archives in old GNU format. The following subsections
  7549. describe the required procedures in detail.
  7550. @menu
  7551. * Split Recovery:: Members Split Between Volumes
  7552. * Sparse Recovery:: Sparse Members
  7553. @end menu
  7554. @node Split Recovery
  7555. @subsubsection Extracting Members Split Between Volumes
  7556. @cindex Mutli-volume archives, extracting using non-GNU tars
  7557. If a member is split between several volumes of an old GNU format archive
  7558. most third party @command{tar} implementation will fail to extract
  7559. it. To extract it, use @command{tarcat} program (@pxref{Tarcat}).
  7560. This program is available from
  7561. @uref{http://www.gnu.org/@/software/@/tar/@/utils/@/tarcat.html, @GNUTAR{}
  7562. home page}. It concatenates several archive volumes into a single
  7563. valid archive. For example, if you have three volumes named from
  7564. @file{vol-1.tar} to @file{vol-3.tar}, you can do the following to
  7565. extract them using a third-party @command{tar}:
  7566. @smallexample
  7567. $ @kbd{tarcat vol-1.tar vol-2.tar vol-3.tar | tar xf -}
  7568. @end smallexample
  7569. @cindex Mutli-volume archives in PAX format, extracting using non-GNU tars
  7570. You could use this approach for most (although not all) PAX
  7571. format archives as well. However, extracting split members from a PAX
  7572. archive is a much easier task, because PAX volumes are constructed in
  7573. such a way that each part of a split member is extracted to a
  7574. different file by @command{tar} implementations that are not aware of
  7575. GNU extensions. More specifically, the very first part retains its
  7576. original name, and all subsequent parts are named using the pattern:
  7577. @smallexample
  7578. %d/GNUFileParts.%p/%f.%n
  7579. @end smallexample
  7580. @noindent
  7581. where symbols preceeded by @samp{%} are @dfn{macro characters} that
  7582. have the following meaning:
  7583. @multitable @columnfractions .25 .55
  7584. @headitem Meta-character @tab Replaced By
  7585. @item %d @tab The directory name of the file, equivalent to the
  7586. result of the @command{dirname} utility on its full name.
  7587. @item %f @tab The file name of the file, equivalent to the result
  7588. of the @command{basename} utility on its full name.
  7589. @item %p @tab The process @acronym{ID} of the @command{tar} process that
  7590. created the archive.
  7591. @item %n @tab Ordinal number of this particular part.
  7592. @end multitable
  7593. For example, if the file @file{var/longfile} was split during archive
  7594. creation between three volumes, and the creator @command{tar} process
  7595. had process @acronym{ID} @samp{27962}, then the member names will be:
  7596. @smallexample
  7597. var/longfile
  7598. var/GNUFileParts.27962/longfile.1
  7599. var/GNUFileParts.27962/longfile.2
  7600. @end smallexample
  7601. When you extract your archive using a third-party @command{tar}, these
  7602. files will be created on your disk, and the only thing you will need
  7603. to do to restore your file in its original form is concatenate them in
  7604. the proper order, for example:
  7605. @smallexample
  7606. @group
  7607. $ @kbd{cd var}
  7608. $ @kbd{cat GNUFileParts.27962/longfile.1 \
  7609. GNUFileParts.27962/longfile.2 >> longfile}
  7610. $ rm -f GNUFileParts.27962
  7611. @end group
  7612. @end smallexample
  7613. Notice, that if the @command{tar} implementation you use supports PAX
  7614. format archives, it will probably emit warnings about unknown keywords
  7615. during extraction. They will look like this:
  7616. @smallexample
  7617. @group
  7618. Tar file too small
  7619. Unknown extended header keyword 'GNU.volume.filename' ignored.
  7620. Unknown extended header keyword 'GNU.volume.size' ignored.
  7621. Unknown extended header keyword 'GNU.volume.offset' ignored.
  7622. @end group
  7623. @end smallexample
  7624. @noindent
  7625. You can safely ignore these warnings.
  7626. If your @command{tar} implementation is not PAX-aware, you will get
  7627. more warnings and more files generated on your disk, e.g.:
  7628. @smallexample
  7629. @group
  7630. $ @kbd{tar xf vol-1.tar}
  7631. var/PaxHeaders.27962/longfile: Unknown file type 'x', extracted as
  7632. normal file
  7633. Unexpected EOF in archive
  7634. $ @kbd{tar xf vol-2.tar}
  7635. tmp/GlobalHead.27962.1: Unknown file type 'g', extracted as normal file
  7636. GNUFileParts.27962/PaxHeaders.27962/sparsefile.1: Unknown file type
  7637. 'x', extracted as normal file
  7638. @end group
  7639. @end smallexample
  7640. Ignore these warnings. The @file{PaxHeaders.*} directories created
  7641. will contain files with @dfn{extended header keywords} describing the
  7642. extracted files. You can delete them, unless they describe sparse
  7643. members. Read further to learn more about them.
  7644. @node Sparse Recovery
  7645. @subsubsection Extracting Sparse Members
  7646. @cindex sparse files, extracting with non-GNU tars
  7647. Any @command{tar} implementation will be able to extract sparse members from a
  7648. PAX archive. However, the extracted files will be @dfn{condensed},
  7649. i.e., any zero blocks will be removed from them. When we restore such
  7650. a condensed file to its original form, by adding zero blocks (or
  7651. @dfn{holes}) back to their original locations, we call this process
  7652. @dfn{expanding} a compressed sparse file.
  7653. @pindex xsparse
  7654. To expand a file, you will need a simple auxiliary program called
  7655. @command{xsparse}. It is available in source form from
  7656. @uref{http://www.gnu.org/@/software/@/tar/@/utils/@/xsparse.html, @GNUTAR{}
  7657. home page}.
  7658. @cindex sparse files v.1.0, extracting with non-GNU tars
  7659. Let's begin with archive members in @dfn{sparse format
  7660. version 1.0}@footnote{@xref{PAX 1}.}, which are the easiest to expand.
  7661. The condensed file will contain both file map and file data, so no
  7662. additional data will be needed to restore it. If the original file
  7663. name was @file{@var{dir}/@var{name}}, then the condensed file will be
  7664. named @file{@var{dir}/@/GNUSparseFile.@var{n}/@/@var{name}}, where
  7665. @var{n} is a decimal number@footnote{technically speaking, @var{n} is a
  7666. @dfn{process @acronym{ID}} of the @command{tar} process which created the
  7667. archive (@pxref{PAX keywords}).}.
  7668. To expand a version 1.0 file, run @command{xsparse} as follows:
  7669. @smallexample
  7670. $ @kbd{xsparse @file{cond-file}}
  7671. @end smallexample
  7672. @noindent
  7673. where @file{cond-file} is the name of the condensed file. The utility
  7674. will deduce the name for the resulting expanded file using the
  7675. following algorithm:
  7676. @enumerate 1
  7677. @item If @file{cond-file} does not contain any directories,
  7678. @file{../cond-file} will be used;
  7679. @item If @file{cond-file} has the form
  7680. @file{@var{dir}/@var{t}/@var{name}}, where both @var{t} and @var{name}
  7681. are simple names, with no @samp{/} characters in them, the output file
  7682. name will be @file{@var{dir}/@var{name}}.
  7683. @item Otherwise, if @file{cond-file} has the form
  7684. @file{@var{dir}/@var{name}}, the output file name will be
  7685. @file{@var{name}}.
  7686. @end enumerate
  7687. In the unlikely case when this algorithm does not suit your needs,
  7688. you can explicitly specify output file name as a second argument to
  7689. the command:
  7690. @smallexample
  7691. $ @kbd{xsparse @file{cond-file} @file{out-file}}
  7692. @end smallexample
  7693. It is often a good idea to run @command{xsparse} in @dfn{dry run} mode
  7694. first. In this mode, the command does not actually expand the file,
  7695. but verbosely lists all actions it would be taking to do so. The dry
  7696. run mode is enabled by @option{-n} command line argument:
  7697. @smallexample
  7698. @group
  7699. $ @kbd{xsparse -n /home/gray/GNUSparseFile.6058/sparsefile}
  7700. Reading v.1.0 sparse map
  7701. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7702. `/home/gray/sparsefile'
  7703. Finished dry run
  7704. @end group
  7705. @end smallexample
  7706. To actually expand the file, you would run:
  7707. @smallexample
  7708. $ @kbd{xsparse /home/gray/GNUSparseFile.6058/sparsefile}
  7709. @end smallexample
  7710. @noindent
  7711. The program behaves the same way all UNIX utilities do: it will keep
  7712. quiet unless it has simething important to tell you (e.g. an error
  7713. condition or something). If you wish it to produce verbose output,
  7714. similar to that from the dry run mode, use @option{-v} option:
  7715. @smallexample
  7716. @group
  7717. $ @kbd{xsparse -v /home/gray/GNUSparseFile.6058/sparsefile}
  7718. Reading v.1.0 sparse map
  7719. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7720. `/home/gray/sparsefile'
  7721. Done
  7722. @end group
  7723. @end smallexample
  7724. Additionally, if your @command{tar} implementation has extracted the
  7725. @dfn{extended headers} for this file, you can instruct @command{xstar}
  7726. to use them in order to verify the integrity of the expanded file.
  7727. The option @option{-x} sets the name of the extended header file to
  7728. use. Continuing our example:
  7729. @smallexample
  7730. @group
  7731. $ @kbd{xsparse -v -x /home/gray/PaxHeaders.6058/sparsefile \
  7732. /home/gray/GNUSparseFile.6058/sparsefile}
  7733. Reading extended header file
  7734. Found variable GNU.sparse.major = 1
  7735. Found variable GNU.sparse.minor = 0
  7736. Found variable GNU.sparse.name = sparsefile
  7737. Found variable GNU.sparse.realsize = 217481216
  7738. Reading v.1.0 sparse map
  7739. Expanding file `/home/gray/GNUSparseFile.6058/sparsefile' to
  7740. `/home/gray/sparsefile'
  7741. Done
  7742. @end group
  7743. @end smallexample
  7744. @anchor{extracting sparse v.0.x}
  7745. @cindex sparse files v.0.1, extracting with non-GNU tars
  7746. @cindex sparse files v.0.0, extracting with non-GNU tars
  7747. An @dfn{extended header} is a special @command{tar} archive header
  7748. that precedes an archive member and contains a set of
  7749. @dfn{variables}, describing the member properties that cannot be
  7750. stored in the standard @code{ustar} header. While optional for
  7751. expanding sparse version 1.0 members, the use of extended headers is
  7752. mandatory when expanding sparse members in older sparse formats: v.0.0
  7753. and v.0.1 (The sparse formats are described in detail in @ref{Sparse
  7754. Formats}.) So, for these formats, the question is: how to obtain
  7755. extended headers from the archive?
  7756. If you use a @command{tar} implementation that does not support PAX
  7757. format, extended headers for each member will be extracted as a
  7758. separate file. If we represent the member name as
  7759. @file{@var{dir}/@var{name}}, then the extended header file will be
  7760. named @file{@var{dir}/@/PaxHeaders.@var{n}/@/@var{name}}, where
  7761. @var{n} is an integer number.
  7762. Things become more difficult if your @command{tar} implementation
  7763. does support PAX headers, because in this case you will have to
  7764. manually extract the headers. We recommend the following algorithm:
  7765. @enumerate 1
  7766. @item
  7767. Consult the documentation of your @command{tar} implementation for an
  7768. option that prints @dfn{block numbers} along with the archive
  7769. listing (analogous to @GNUTAR{}'s @option{-R} option). For example,
  7770. @command{star} has @option{-block-number}.
  7771. @item
  7772. Obtain verbose listing using the @samp{block number} option, and
  7773. find block numbers of the sparse member in question and the member
  7774. immediately following it. For example, running @command{star} on our
  7775. archive we obtain:
  7776. @smallexample
  7777. @group
  7778. $ @kbd{star -t -v -block-number -f arc.tar}
  7779. @dots{}
  7780. star: Unknown extended header keyword 'GNU.sparse.size' ignored.
  7781. star: Unknown extended header keyword 'GNU.sparse.numblocks' ignored.
  7782. star: Unknown extended header keyword 'GNU.sparse.name' ignored.
  7783. star: Unknown extended header keyword 'GNU.sparse.map' ignored.
  7784. block 56: 425984 -rw-r--r-- gray/users Jun 25 14:46 2006 GNUSparseFile.28124/sparsefile
  7785. block 897: 65391 -rw-r--r-- gray/users Jun 24 20:06 2006 README
  7786. @dots{}
  7787. @end group
  7788. @end smallexample
  7789. @noindent
  7790. (as usual, ignore the warnings about unknown keywords.)
  7791. @item
  7792. Let @var{size} be the size of the sparse member, @var{Bs} be its block number
  7793. and @var{Bn} be the block number of the next member.
  7794. Compute:
  7795. @smallexample
  7796. @var{N} = @var{Bs} - @var{Bn} - @var{size}/512 - 2
  7797. @end smallexample
  7798. @noindent
  7799. This number gives the size of the extended header part in tar @dfn{blocks}.
  7800. In our example, this formula gives: @code{897 - 56 - 425984 / 512 - 2
  7801. = 7}.
  7802. @item
  7803. Use @command{dd} to extract the headers:
  7804. @smallexample
  7805. @kbd{dd if=@var{archive} of=@var{hname} bs=512 skip=@var{Bs} count=@var{N}}
  7806. @end smallexample
  7807. @noindent
  7808. where @var{archive} is the archive name, @var{hname} is a name of the
  7809. file to store the extended header in, @var{Bs} and @var{N} are
  7810. computed in previous steps.
  7811. In our example, this command will be
  7812. @smallexample
  7813. $ @kbd{dd if=arc.tar of=xhdr bs=512 skip=56 count=7}
  7814. @end smallexample
  7815. @end enumerate
  7816. Finally, you can expand the condensed file, using the obtained header:
  7817. @smallexample
  7818. @group
  7819. $ @kbd{xsparse -v -x xhdr GNUSparseFile.6058/sparsefile}
  7820. Reading extended header file
  7821. Found variable GNU.sparse.size = 217481216
  7822. Found variable GNU.sparse.numblocks = 208
  7823. Found variable GNU.sparse.name = sparsefile
  7824. Found variable GNU.sparse.map = 0,2048,1050624,2048,@dots{}
  7825. Expanding file `GNUSparseFile.28124/sparsefile' to `sparsefile'
  7826. Done
  7827. @end group
  7828. @end smallexample
  7829. @node cpio
  7830. @section Comparison of @command{tar} and @command{cpio}
  7831. @UNREVISED
  7832. @FIXME{Reorganize the following material}
  7833. The @command{cpio} archive formats, like @command{tar}, do have maximum
  7834. file name lengths. The binary and old @acronym{ASCII} formats have a maximum file
  7835. length of 256, and the new @acronym{ASCII} and @acronym{CRC ASCII} formats have a max
  7836. file length of 1024. @acronym{GNU} @command{cpio} can read and write archives
  7837. with arbitrary file name lengths, but other @command{cpio} implementations
  7838. may crash unexplainedly trying to read them.
  7839. @command{tar} handles symbolic links in the form in which it comes in @acronym{BSD};
  7840. @command{cpio} doesn't handle symbolic links in the form in which it comes
  7841. in System V prior to SVR4, and some vendors may have added symlinks
  7842. to their system without enhancing @command{cpio} to know about them.
  7843. Others may have enhanced it in a way other than the way I did it
  7844. at Sun, and which was adopted by AT&T (and which is, I think, also
  7845. present in the @command{cpio} that Berkeley picked up from AT&T and put
  7846. into a later @acronym{BSD} release---I think I gave them my changes).
  7847. (SVR4 does some funny stuff with @command{tar}; basically, its @command{cpio}
  7848. can handle @command{tar} format input, and write it on output, and it
  7849. probably handles symbolic links. They may not have bothered doing
  7850. anything to enhance @command{tar} as a result.)
  7851. @command{cpio} handles special files; traditional @command{tar} doesn't.
  7852. @command{tar} comes with V7, System III, System V, and @acronym{BSD} source;
  7853. @command{cpio} comes only with System III, System V, and later @acronym{BSD}
  7854. (4.3-tahoe and later).
  7855. @command{tar}'s way of handling multiple hard links to a file can handle
  7856. file systems that support 32-bit inumbers (e.g., the @acronym{BSD} file system);
  7857. @command{cpio}s way requires you to play some games (in its ``binary''
  7858. format, i-numbers are only 16 bits, and in its ``portable @acronym{ASCII}'' format,
  7859. they're 18 bits---it would have to play games with the "file system @acronym{ID}"
  7860. field of the header to make sure that the file system @acronym{ID}/i-number pairs
  7861. of different files were always different), and I don't know which
  7862. @command{cpio}s, if any, play those games. Those that don't might get
  7863. confused and think two files are the same file when they're not, and
  7864. make hard links between them.
  7865. @command{tar}s way of handling multiple hard links to a file places only
  7866. one copy of the link on the tape, but the name attached to that copy
  7867. is the @emph{only} one you can use to retrieve the file; @command{cpio}s
  7868. way puts one copy for every link, but you can retrieve it using any
  7869. of the names.
  7870. @quotation
  7871. What type of check sum (if any) is used, and how is this calculated.
  7872. @end quotation
  7873. See the attached manual pages for @command{tar} and @command{cpio} format.
  7874. @command{tar} uses a checksum which is the sum of all the bytes in the
  7875. @command{tar} header for a file; @command{cpio} uses no checksum.
  7876. @quotation
  7877. If anyone knows why @command{cpio} was made when @command{tar} was present
  7878. at the unix scene,
  7879. @end quotation
  7880. It wasn't. @command{cpio} first showed up in PWB/UNIX 1.0; no
  7881. generally-available version of UNIX had @command{tar} at the time. I don't
  7882. know whether any version that was generally available @emph{within AT&T}
  7883. had @command{tar}, or, if so, whether the people within AT&T who did
  7884. @command{cpio} knew about it.
  7885. On restore, if there is a corruption on a tape @command{tar} will stop at
  7886. that point, while @command{cpio} will skip over it and try to restore the
  7887. rest of the files.
  7888. The main difference is just in the command syntax and header format.
  7889. @command{tar} is a little more tape-oriented in that everything is blocked
  7890. to start on a record boundary.
  7891. @quotation
  7892. Is there any differences between the ability to recover crashed
  7893. archives between the two of them. (Is there any chance of recovering
  7894. crashed archives at all.)
  7895. @end quotation
  7896. Theoretically it should be easier under @command{tar} since the blocking
  7897. lets you find a header with some variation of @samp{dd skip=@var{nn}}.
  7898. However, modern @command{cpio}'s and variations have an option to just
  7899. search for the next file header after an error with a reasonable chance
  7900. of resyncing. However, lots of tape driver software won't allow you to
  7901. continue past a media error which should be the only reason for getting
  7902. out of sync unless a file changed sizes while you were writing the
  7903. archive.
  7904. @quotation
  7905. If anyone knows why @command{cpio} was made when @command{tar} was present
  7906. at the unix scene, please tell me about this too.
  7907. @end quotation
  7908. Probably because it is more media efficient (by not blocking everything
  7909. and using only the space needed for the headers where @command{tar}
  7910. always uses 512 bytes per file header) and it knows how to archive
  7911. special files.
  7912. You might want to look at the freely available alternatives. The
  7913. major ones are @command{afio}, @GNUTAR{}, and
  7914. @command{pax}, each of which have their own extensions with some
  7915. backwards compatibility.
  7916. Sparse files were @command{tar}red as sparse files (which you can
  7917. easily test, because the resulting archive gets smaller, and
  7918. @acronym{GNU} @command{cpio} can no longer read it).
  7919. @node Media
  7920. @chapter Tapes and Other Archive Media
  7921. @UNREVISED
  7922. A few special cases about tape handling warrant more detailed
  7923. description. These special cases are discussed below.
  7924. Many complexities surround the use of @command{tar} on tape drives. Since
  7925. the creation and manipulation of archives located on magnetic tape was
  7926. the original purpose of @command{tar}, it contains many features making
  7927. such manipulation easier.
  7928. Archives are usually written on dismountable media---tape cartridges,
  7929. mag tapes, or floppy disks.
  7930. The amount of data a tape or disk holds depends not only on its size,
  7931. but also on how it is formatted. A 2400 foot long reel of mag tape
  7932. holds 40 megabytes of data when formatted at 1600 bits per inch. The
  7933. physically smaller EXABYTE tape cartridge holds 2.3 gigabytes.
  7934. Magnetic media are re-usable---once the archive on a tape is no longer
  7935. needed, the archive can be erased and the tape or disk used over.
  7936. Media quality does deteriorate with use, however. Most tapes or disks
  7937. should be discarded when they begin to produce data errors. EXABYTE
  7938. tape cartridges should be discarded when they generate an @dfn{error
  7939. count} (number of non-usable bits) of more than 10k.
  7940. Magnetic media are written and erased using magnetic fields, and
  7941. should be protected from such fields to avoid damage to stored data.
  7942. Sticking a floppy disk to a filing cabinet using a magnet is probably
  7943. not a good idea.
  7944. @menu
  7945. * Device:: Device selection and switching
  7946. * Remote Tape Server::
  7947. * Common Problems and Solutions::
  7948. * Blocking:: Blocking
  7949. * Many:: Many archives on one tape
  7950. * Using Multiple Tapes:: Using Multiple Tapes
  7951. * label:: Including a Label in the Archive
  7952. * verify::
  7953. * Write Protection::
  7954. @end menu
  7955. @node Device
  7956. @section Device Selection and Switching
  7957. @UNREVISED
  7958. @table @option
  7959. @item -f [@var{hostname}:]@var{file}
  7960. @itemx --file=[@var{hostname}:]@var{file}
  7961. Use archive file or device @var{file} on @var{hostname}.
  7962. @end table
  7963. This option is used to specify the file name of the archive @command{tar}
  7964. works on.
  7965. If the file name is @samp{-}, @command{tar} reads the archive from standard
  7966. input (when listing or extracting), or writes it to standard output
  7967. (when creating). If the @samp{-} file name is given when updating an
  7968. archive, @command{tar} will read the original archive from its standard
  7969. input, and will write the entire new archive to its standard output.
  7970. If the file name contains a @samp{:}, it is interpreted as
  7971. @samp{hostname:file name}. If the @var{hostname} contains an @dfn{at}
  7972. sign (@samp{@@}), it is treated as @samp{user@@hostname:file name}. In
  7973. either case, @command{tar} will invoke the command @command{rsh} (or
  7974. @command{remsh}) to start up an @command{/usr/libexec/rmt} on the remote
  7975. machine. If you give an alternate login name, it will be given to the
  7976. @command{rsh}.
  7977. Naturally, the remote machine must have an executable
  7978. @command{/usr/libexec/rmt}. This program is free software from the
  7979. University of California, and a copy of the source code can be found
  7980. with the sources for @command{tar}; it's compiled and installed by default.
  7981. The exact path to this utility is determined when configuring the package.
  7982. It is @file{@var{prefix}/libexec/rmt}, where @var{prefix} stands for
  7983. your installation prefix. This location may also be overridden at
  7984. runtime by using @option{rmt-command=@var{command}} option (@xref{Option Summary,
  7985. ---rmt-command}, for detailed description of this option. @xref{Remote
  7986. Tape Server}, for the description of @command{rmt} command).
  7987. If this option is not given, but the environment variable @env{TAPE}
  7988. is set, its value is used; otherwise, old versions of @command{tar}
  7989. used a default archive name (which was picked when @command{tar} was
  7990. compiled). The default is normally set up to be the @dfn{first} tape
  7991. drive or other transportable I/O medium on the system.
  7992. Starting with version 1.11.5, @GNUTAR{} uses
  7993. standard input and standard output as the default device, and I will
  7994. not try anymore supporting automatic device detection at installation
  7995. time. This was failing really in too many cases, it was hopeless.
  7996. This is now completely left to the installer to override standard
  7997. input and standard output for default device, if this seems
  7998. preferable. Further, I think @emph{most} actual usages of
  7999. @command{tar} are done with pipes or disks, not really tapes,
  8000. cartridges or diskettes.
  8001. Some users think that using standard input and output is running
  8002. after trouble. This could lead to a nasty surprise on your screen if
  8003. you forget to specify an output file name---especially if you are going
  8004. through a network or terminal server capable of buffering large amounts
  8005. of output. We had so many bug reports in that area of configuring
  8006. default tapes automatically, and so many contradicting requests, that
  8007. we finally consider the problem to be portably intractable. We could
  8008. of course use something like @samp{/dev/tape} as a default, but this
  8009. is @emph{also} running after various kind of trouble, going from hung
  8010. processes to accidental destruction of real tapes. After having seen
  8011. all this mess, using standard input and output as a default really
  8012. sounds like the only clean choice left, and a very useful one too.
  8013. @GNUTAR{} reads and writes archive in records, I
  8014. suspect this is the main reason why block devices are preferred over
  8015. character devices. Most probably, block devices are more efficient
  8016. too. The installer could also check for @samp{DEFTAPE} in
  8017. @file{<sys/mtio.h>}.
  8018. @table @option
  8019. @xopindex{force-local, short description}
  8020. @item --force-local
  8021. Archive file is local even if it contains a colon.
  8022. @opindex rsh-command
  8023. @item --rsh-command=@var{command}
  8024. Use remote @var{command} instead of @command{rsh}. This option exists
  8025. so that people who use something other than the standard @command{rsh}
  8026. (e.g., a Kerberized @command{rsh}) can access a remote device.
  8027. When this command is not used, the shell command found when
  8028. the @command{tar} program was installed is used instead. This is
  8029. the first found of @file{/usr/ucb/rsh}, @file{/usr/bin/remsh},
  8030. @file{/usr/bin/rsh}, @file{/usr/bsd/rsh} or @file{/usr/bin/nsh}.
  8031. The installer may have overridden this by defining the environment
  8032. variable @env{RSH} @emph{at installation time}.
  8033. @item -[0-7][lmh]
  8034. Specify drive and density.
  8035. @xopindex{multi-volume, short description}
  8036. @item -M
  8037. @itemx --multi-volume
  8038. Create/list/extract multi-volume archive.
  8039. This option causes @command{tar} to write a @dfn{multi-volume} archive---one
  8040. that may be larger than will fit on the medium used to hold it.
  8041. @xref{Multi-Volume Archives}.
  8042. @xopindex{tape-length, short description}
  8043. @item -L @var{num}
  8044. @itemx --tape-length=@var{num}
  8045. Change tape after writing @var{num} x 1024 bytes.
  8046. This option might be useful when your tape drivers do not properly
  8047. detect end of physical tapes. By being slightly conservative on the
  8048. maximum tape length, you might avoid the problem entirely.
  8049. @xopindex{info-script, short description}
  8050. @xopindex{new-volume-script, short description}
  8051. @item -F @var{file}
  8052. @itemx --info-script=@var{file}
  8053. @itemx --new-volume-script=@var{file}
  8054. Execute @file{file} at end of each tape. This implies
  8055. @option{--multi-volume} (@option{-M}). @xref{info-script}, for a detailed
  8056. description of this option.
  8057. @end table
  8058. @node Remote Tape Server
  8059. @section The Remote Tape Server
  8060. @cindex remote tape drive
  8061. @pindex rmt
  8062. In order to access the tape drive on a remote machine, @command{tar}
  8063. uses the remote tape server written at the University of California at
  8064. Berkeley. The remote tape server must be installed as
  8065. @file{@var{prefix}/libexec/rmt} on any machine whose tape drive you
  8066. want to use. @command{tar} calls @command{rmt} by running an
  8067. @command{rsh} or @command{remsh} to the remote machine, optionally
  8068. using a different login name if one is supplied.
  8069. A copy of the source for the remote tape server is provided. It is
  8070. Copyright @copyright{} 1983 by the Regents of the University of
  8071. California, but can be freely distributed. It is compiled and
  8072. installed by default.
  8073. @cindex absolute file names
  8074. Unless you use the @option{--absolute-names} (@option{-P}) option,
  8075. @GNUTAR{} will not allow you to create an archive that contains
  8076. absolute file names (a file name beginning with @samp{/}.) If you try,
  8077. @command{tar} will automatically remove the leading @samp{/} from the
  8078. file names it stores in the archive. It will also type a warning
  8079. message telling you what it is doing.
  8080. When reading an archive that was created with a different
  8081. @command{tar} program, @GNUTAR{} automatically
  8082. extracts entries in the archive which have absolute file names as if
  8083. the file names were not absolute. This is an important feature. A
  8084. visitor here once gave a @command{tar} tape to an operator to restore;
  8085. the operator used Sun @command{tar} instead of @GNUTAR{},
  8086. and the result was that it replaced large portions of
  8087. our @file{/bin} and friends with versions from the tape; needless to
  8088. say, we were unhappy about having to recover the file system from
  8089. backup tapes.
  8090. For example, if the archive contained a file @file{/usr/bin/computoy},
  8091. @GNUTAR{} would extract the file to @file{usr/bin/computoy},
  8092. relative to the current directory. If you want to extract the files in
  8093. an archive to the same absolute names that they had when the archive
  8094. was created, you should do a @samp{cd /} before extracting the files
  8095. from the archive, or you should either use the @option{--absolute-names}
  8096. option, or use the command @samp{tar -C / @dots{}}.
  8097. @cindex Ultrix 3.1 and write failure
  8098. Some versions of Unix (Ultrix 3.1 is known to have this problem),
  8099. can claim that a short write near the end of a tape succeeded,
  8100. when it actually failed. This will result in the -M option not
  8101. working correctly. The best workaround at the moment is to use a
  8102. significantly larger blocking factor than the default 20.
  8103. In order to update an archive, @command{tar} must be able to backspace the
  8104. archive in order to reread or rewrite a record that was just read (or
  8105. written). This is currently possible only on two kinds of files: normal
  8106. disk files (or any other file that can be backspaced with @samp{lseek}),
  8107. and industry-standard 9-track magnetic tape (or any other kind of tape
  8108. that can be backspaced with the @code{MTIOCTOP} @code{ioctl}.
  8109. This means that the @option{--append}, @option{--concatenate}, and
  8110. @option{--delete} commands will not work on any other kind of file.
  8111. Some media simply cannot be backspaced, which means these commands and
  8112. options will never be able to work on them. These non-backspacing
  8113. media include pipes and cartridge tape drives.
  8114. Some other media can be backspaced, and @command{tar} will work on them
  8115. once @command{tar} is modified to do so.
  8116. Archives created with the @option{--multi-volume}, @option{--label}, and
  8117. @option{--incremental} (@option{-G}) options may not be readable by other version
  8118. of @command{tar}. In particular, restoring a file that was split over
  8119. a volume boundary will require some careful work with @command{dd}, if
  8120. it can be done at all. Other versions of @command{tar} may also create
  8121. an empty file whose name is that of the volume header. Some versions
  8122. of @command{tar} may create normal files instead of directories archived
  8123. with the @option{--incremental} (@option{-G}) option.
  8124. @node Common Problems and Solutions
  8125. @section Some Common Problems and their Solutions
  8126. @ifclear PUBLISH
  8127. @format
  8128. errors from system:
  8129. permission denied
  8130. no such file or directory
  8131. not owner
  8132. errors from @command{tar}:
  8133. directory checksum error
  8134. header format error
  8135. errors from media/system:
  8136. i/o error
  8137. device busy
  8138. @end format
  8139. @end ifclear
  8140. @node Blocking
  8141. @section Blocking
  8142. @UNREVISED
  8143. @dfn{Block} and @dfn{record} terminology is rather confused, and it
  8144. is also confusing to the expert reader. On the other hand, readers
  8145. who are new to the field have a fresh mind, and they may safely skip
  8146. the next two paragraphs, as the remainder of this manual uses those
  8147. two terms in a quite consistent way.
  8148. John Gilmore, the writer of the public domain @command{tar} from which
  8149. @GNUTAR{} was originally derived, wrote (June 1995):
  8150. @quotation
  8151. The nomenclature of tape drives comes from IBM, where I believe
  8152. they were invented for the IBM 650 or so. On IBM mainframes, what
  8153. is recorded on tape are tape blocks. The logical organization of
  8154. data is into records. There are various ways of putting records into
  8155. blocks, including @code{F} (fixed sized records), @code{V} (variable
  8156. sized records), @code{FB} (fixed blocked: fixed size records, @var{n}
  8157. to a block), @code{VB} (variable size records, @var{n} to a block),
  8158. @code{VSB} (variable spanned blocked: variable sized records that can
  8159. occupy more than one block), etc. The @code{JCL} @samp{DD RECFORM=}
  8160. parameter specified this to the operating system.
  8161. The Unix man page on @command{tar} was totally confused about this.
  8162. When I wrote @code{PD TAR}, I used the historically correct terminology
  8163. (@command{tar} writes data records, which are grouped into blocks).
  8164. It appears that the bogus terminology made it into @acronym{POSIX} (no surprise
  8165. here), and now Fran@,{c}ois has migrated that terminology back
  8166. into the source code too.
  8167. @end quotation
  8168. The term @dfn{physical block} means the basic transfer chunk from or
  8169. to a device, after which reading or writing may stop without anything
  8170. being lost. In this manual, the term @dfn{block} usually refers to
  8171. a disk physical block, @emph{assuming} that each disk block is 512
  8172. bytes in length. It is true that some disk devices have different
  8173. physical blocks, but @command{tar} ignore these differences in its own
  8174. format, which is meant to be portable, so a @command{tar} block is always
  8175. 512 bytes in length, and @dfn{block} always mean a @command{tar} block.
  8176. The term @dfn{logical block} often represents the basic chunk of
  8177. allocation of many disk blocks as a single entity, which the operating
  8178. system treats somewhat atomically; this concept is only barely used
  8179. in @GNUTAR{}.
  8180. The term @dfn{physical record} is another way to speak of a physical
  8181. block, those two terms are somewhat interchangeable. In this manual,
  8182. the term @dfn{record} usually refers to a tape physical block,
  8183. @emph{assuming} that the @command{tar} archive is kept on magnetic tape.
  8184. It is true that archives may be put on disk or used with pipes,
  8185. but nevertheless, @command{tar} tries to read and write the archive one
  8186. @dfn{record} at a time, whatever the medium in use. One record is made
  8187. up of an integral number of blocks, and this operation of putting many
  8188. disk blocks into a single tape block is called @dfn{reblocking}, or
  8189. more simply, @dfn{blocking}. The term @dfn{logical record} refers to
  8190. the logical organization of many characters into something meaningful
  8191. to the application. The term @dfn{unit record} describes a small set
  8192. of characters which are transmitted whole to or by the application,
  8193. and often refers to a line of text. Those two last terms are unrelated
  8194. to what we call a @dfn{record} in @GNUTAR{}.
  8195. When writing to tapes, @command{tar} writes the contents of the archive
  8196. in chunks known as @dfn{records}. To change the default blocking
  8197. factor, use the @option{--blocking-factor=@var{512-size}} (@option{-b
  8198. @var{512-size}}) option. Each record will then be composed of
  8199. @var{512-size} blocks. (Each @command{tar} block is 512 bytes.
  8200. @xref{Standard}.) Each file written to the archive uses at least one
  8201. full record. As a result, using a larger record size can result in
  8202. more wasted space for small files. On the other hand, a larger record
  8203. size can often be read and written much more efficiently.
  8204. Further complicating the problem is that some tape drives ignore the
  8205. blocking entirely. For these, a larger record size can still improve
  8206. performance (because the software layers above the tape drive still
  8207. honor the blocking), but not as dramatically as on tape drives that
  8208. honor blocking.
  8209. When reading an archive, @command{tar} can usually figure out the
  8210. record size on itself. When this is the case, and a non-standard
  8211. record size was used when the archive was created, @command{tar} will
  8212. print a message about a non-standard blocking factor, and then operate
  8213. normally. On some tape devices, however, @command{tar} cannot figure
  8214. out the record size itself. On most of those, you can specify a
  8215. blocking factor (with @option{--blocking-factor}) larger than the
  8216. actual blocking factor, and then use the @option{--read-full-records}
  8217. (@option{-B}) option. (If you specify a blocking factor with
  8218. @option{--blocking-factor} and don't use the
  8219. @option{--read-full-records} option, then @command{tar} will not
  8220. attempt to figure out the recording size itself.) On some devices,
  8221. you must always specify the record size exactly with
  8222. @option{--blocking-factor} when reading, because @command{tar} cannot
  8223. figure it out. In any case, use @option{--list} (@option{-t}) before
  8224. doing any extractions to see whether @command{tar} is reading the archive
  8225. correctly.
  8226. @command{tar} blocks are all fixed size (512 bytes), and its scheme for
  8227. putting them into records is to put a whole number of them (one or
  8228. more) into each record. @command{tar} records are all the same size;
  8229. at the end of the file there's a block containing all zeros, which
  8230. is how you tell that the remainder of the last record(s) are garbage.
  8231. In a standard @command{tar} file (no options), the block size is 512
  8232. and the record size is 10240, for a blocking factor of 20. What the
  8233. @option{--blocking-factor} option does is sets the blocking factor,
  8234. changing the record size while leaving the block size at 512 bytes.
  8235. 20 was fine for ancient 800 or 1600 bpi reel-to-reel tape drives;
  8236. most tape drives these days prefer much bigger records in order to
  8237. stream and not waste tape. When writing tapes for myself, some tend
  8238. to use a factor of the order of 2048, say, giving a record size of
  8239. around one megabyte.
  8240. If you use a blocking factor larger than 20, older @command{tar}
  8241. programs might not be able to read the archive, so we recommend this
  8242. as a limit to use in practice. @GNUTAR{}, however,
  8243. will support arbitrarily large record sizes, limited only by the
  8244. amount of virtual memory or the physical characteristics of the tape
  8245. device.
  8246. @menu
  8247. * Format Variations:: Format Variations
  8248. * Blocking Factor:: The Blocking Factor of an Archive
  8249. @end menu
  8250. @node Format Variations
  8251. @subsection Format Variations
  8252. @cindex Format Parameters
  8253. @cindex Format Options
  8254. @cindex Options, archive format specifying
  8255. @cindex Options, format specifying
  8256. @UNREVISED
  8257. Format parameters specify how an archive is written on the archive
  8258. media. The best choice of format parameters will vary depending on
  8259. the type and number of files being archived, and on the media used to
  8260. store the archive.
  8261. To specify format parameters when accessing or creating an archive,
  8262. you can use the options described in the following sections.
  8263. If you do not specify any format parameters, @command{tar} uses
  8264. default parameters. You cannot modify a compressed archive.
  8265. If you create an archive with the @option{--blocking-factor} option
  8266. specified (@pxref{Blocking Factor}), you must specify that
  8267. blocking-factor when operating on the archive. @xref{Formats}, for other
  8268. examples of format parameter considerations.
  8269. @node Blocking Factor
  8270. @subsection The Blocking Factor of an Archive
  8271. @cindex Blocking Factor
  8272. @cindex Record Size
  8273. @cindex Number of blocks per record
  8274. @cindex Number of bytes per record
  8275. @cindex Bytes per record
  8276. @cindex Blocks per record
  8277. @UNREVISED
  8278. @opindex blocking-factor
  8279. The data in an archive is grouped into blocks, which are 512 bytes.
  8280. Blocks are read and written in whole number multiples called
  8281. @dfn{records}. The number of blocks in a record (i.e., the size of a
  8282. record in units of 512 bytes) is called the @dfn{blocking factor}.
  8283. The @option{--blocking-factor=@var{512-size}} (@option{-b
  8284. @var{512-size}}) option specifies the blocking factor of an archive.
  8285. The default blocking factor is typically 20 (i.e., 10240 bytes), but
  8286. can be specified at installation. To find out the blocking factor of
  8287. an existing archive, use @samp{tar --list --file=@var{archive-name}}.
  8288. This may not work on some devices.
  8289. Records are separated by gaps, which waste space on the archive media.
  8290. If you are archiving on magnetic tape, using a larger blocking factor
  8291. (and therefore larger records) provides faster throughput and allows you
  8292. to fit more data on a tape (because there are fewer gaps). If you are
  8293. archiving on cartridge, a very large blocking factor (say 126 or more)
  8294. greatly increases performance. A smaller blocking factor, on the other
  8295. hand, may be useful when archiving small files, to avoid archiving lots
  8296. of nulls as @command{tar} fills out the archive to the end of the record.
  8297. In general, the ideal record size depends on the size of the
  8298. inter-record gaps on the tape you are using, and the average size of the
  8299. files you are archiving. @xref{create}, for information on
  8300. writing archives.
  8301. @FIXME{Need example of using a cartridge with blocking factor=126 or more.}
  8302. Archives with blocking factors larger than 20 cannot be read
  8303. by very old versions of @command{tar}, or by some newer versions
  8304. of @command{tar} running on old machines with small address spaces.
  8305. With @GNUTAR{}, the blocking factor of an archive is limited
  8306. only by the maximum record size of the device containing the archive,
  8307. or by the amount of available virtual memory.
  8308. Also, on some systems, not using adequate blocking factors, as sometimes
  8309. imposed by the device drivers, may yield unexpected diagnostics. For
  8310. example, this has been reported:
  8311. @smallexample
  8312. Cannot write to /dev/dlt: Invalid argument
  8313. @end smallexample
  8314. @noindent
  8315. In such cases, it sometimes happen that the @command{tar} bundled by
  8316. the system is aware of block size idiosyncrasies, while @GNUTAR{}
  8317. requires an explicit specification for the block size,
  8318. which it cannot guess. This yields some people to consider
  8319. @GNUTAR{} is misbehaving, because by comparison,
  8320. @cite{the bundle @command{tar} works OK}. Adding @w{@kbd{-b 256}},
  8321. for example, might resolve the problem.
  8322. If you use a non-default blocking factor when you create an archive, you
  8323. must specify the same blocking factor when you modify that archive. Some
  8324. archive devices will also require you to specify the blocking factor when
  8325. reading that archive, however this is not typically the case. Usually, you
  8326. can use @option{--list} (@option{-t}) without specifying a blocking factor---@command{tar}
  8327. reports a non-default record size and then lists the archive members as
  8328. it would normally. To extract files from an archive with a non-standard
  8329. blocking factor (particularly if you're not sure what the blocking factor
  8330. is), you can usually use the @option{--read-full-records} (@option{-B}) option while
  8331. specifying a blocking factor larger then the blocking factor of the archive
  8332. (i.e., @samp{tar --extract --read-full-records --blocking-factor=300}.
  8333. @xref{list}, for more information on the @option{--list} (@option{-t})
  8334. operation. @xref{Reading}, for a more detailed explanation of that option.
  8335. @table @option
  8336. @item --blocking-factor=@var{number}
  8337. @itemx -b @var{number}
  8338. Specifies the blocking factor of an archive. Can be used with any
  8339. operation, but is usually not necessary with @option{--list} (@option{-t}).
  8340. @end table
  8341. Device blocking
  8342. @table @option
  8343. @item -b @var{blocks}
  8344. @itemx --blocking-factor=@var{blocks}
  8345. Set record size to @math{@var{blocks} * 512} bytes.
  8346. This option is used to specify a @dfn{blocking factor} for the archive.
  8347. When reading or writing the archive, @command{tar}, will do reads and writes
  8348. of the archive in records of @math{@var{block}*512} bytes. This is true
  8349. even when the archive is compressed. Some devices requires that all
  8350. write operations be a multiple of a certain size, and so, @command{tar}
  8351. pads the archive out to the next record boundary.
  8352. The default blocking factor is set when @command{tar} is compiled, and is
  8353. typically 20. Blocking factors larger than 20 cannot be read by very
  8354. old versions of @command{tar}, or by some newer versions of @command{tar}
  8355. running on old machines with small address spaces.
  8356. With a magnetic tape, larger records give faster throughput and fit
  8357. more data on a tape (because there are fewer inter-record gaps).
  8358. If the archive is in a disk file or a pipe, you may want to specify
  8359. a smaller blocking factor, since a large one will result in a large
  8360. number of null bytes at the end of the archive.
  8361. When writing cartridge or other streaming tapes, a much larger
  8362. blocking factor (say 126 or more) will greatly increase performance.
  8363. However, you must specify the same blocking factor when reading or
  8364. updating the archive.
  8365. Apparently, Exabyte drives have a physical block size of 8K bytes.
  8366. If we choose our blocksize as a multiple of 8k bytes, then the problem
  8367. seems to disappear. Id est, we are using block size of 112 right
  8368. now, and we haven't had the problem since we switched@dots{}
  8369. With @GNUTAR{} the blocking factor is limited only
  8370. by the maximum record size of the device containing the archive, or by
  8371. the amount of available virtual memory.
  8372. However, deblocking or reblocking is virtually avoided in a special
  8373. case which often occurs in practice, but which requires all the
  8374. following conditions to be simultaneously true:
  8375. @itemize @bullet
  8376. @item
  8377. the archive is subject to a compression option,
  8378. @item
  8379. the archive is not handled through standard input or output, nor
  8380. redirected nor piped,
  8381. @item
  8382. the archive is directly handled to a local disk, instead of any special
  8383. device,
  8384. @item
  8385. @option{--blocking-factor} is not explicitly specified on the @command{tar}
  8386. invocation.
  8387. @end itemize
  8388. If the output goes directly to a local disk, and not through
  8389. stdout, then the last write is not extended to a full record size.
  8390. Otherwise, reblocking occurs. Here are a few other remarks on this
  8391. topic:
  8392. @itemize @bullet
  8393. @item
  8394. @command{gzip} will complain about trailing garbage if asked to
  8395. uncompress a compressed archive on tape, there is an option to turn
  8396. the message off, but it breaks the regularity of simply having to use
  8397. @samp{@var{prog} -d} for decompression. It would be nice if gzip was
  8398. silently ignoring any number of trailing zeros. I'll ask Jean-loup
  8399. Gailly, by sending a copy of this message to him.
  8400. @item
  8401. @command{compress} does not show this problem, but as Jean-loup pointed
  8402. out to Michael, @samp{compress -d} silently adds garbage after
  8403. the result of decompression, which tar ignores because it already
  8404. recognized its end-of-file indicator. So this bug may be safely
  8405. ignored.
  8406. @item
  8407. @samp{gzip -d -q} will be silent about the trailing zeros indeed,
  8408. but will still return an exit status of 2 which tar reports in turn.
  8409. @command{tar} might ignore the exit status returned, but I hate doing
  8410. that, as it weakens the protection @command{tar} offers users against
  8411. other possible problems at decompression time. If @command{gzip} was
  8412. silently skipping trailing zeros @emph{and} also avoiding setting the
  8413. exit status in this innocuous case, that would solve this situation.
  8414. @item
  8415. @command{tar} should become more solid at not stopping to read a pipe at
  8416. the first null block encountered. This inelegantly breaks the pipe.
  8417. @command{tar} should rather drain the pipe out before exiting itself.
  8418. @end itemize
  8419. @xopindex{ignore-zeros, short description}
  8420. @item -i
  8421. @itemx --ignore-zeros
  8422. Ignore blocks of zeros in archive (means EOF).
  8423. The @option{--ignore-zeros} (@option{-i}) option causes @command{tar} to ignore blocks
  8424. of zeros in the archive. Normally a block of zeros indicates the
  8425. end of the archive, but when reading a damaged archive, or one which
  8426. was created by concatenating several archives together, this option
  8427. allows @command{tar} to read the entire archive. This option is not on
  8428. by default because many versions of @command{tar} write garbage after
  8429. the zeroed blocks.
  8430. Note that this option causes @command{tar} to read to the end of the
  8431. archive file, which may sometimes avoid problems when multiple files
  8432. are stored on a single physical tape.
  8433. @xopindex{read-full-records, short description}
  8434. @item -B
  8435. @itemx --read-full-records
  8436. Reblock as we read (for reading 4.2@acronym{BSD} pipes).
  8437. If @option{--read-full-records} is used, @command{tar}
  8438. will not panic if an attempt to read a record from the archive does
  8439. not return a full record. Instead, @command{tar} will keep reading
  8440. until it has obtained a full
  8441. record.
  8442. This option is turned on by default when @command{tar} is reading
  8443. an archive from standard input, or from a remote machine. This is
  8444. because on @acronym{BSD} Unix systems, a read of a pipe will return however
  8445. much happens to be in the pipe, even if it is less than @command{tar}
  8446. requested. If this option was not used, @command{tar} would fail as
  8447. soon as it read an incomplete record from the pipe.
  8448. This option is also useful with the commands for updating an archive.
  8449. @end table
  8450. Tape blocking
  8451. @FIXME{Appropriate options should be moved here from elsewhere.}
  8452. @cindex blocking factor
  8453. @cindex tape blocking
  8454. When handling various tapes or cartridges, you have to take care of
  8455. selecting a proper blocking, that is, the number of disk blocks you
  8456. put together as a single tape block on the tape, without intervening
  8457. tape gaps. A @dfn{tape gap} is a small landing area on the tape
  8458. with no information on it, used for decelerating the tape to a
  8459. full stop, and for later regaining the reading or writing speed.
  8460. When the tape driver starts reading a record, the record has to
  8461. be read whole without stopping, as a tape gap is needed to stop the
  8462. tape motion without loosing information.
  8463. @cindex Exabyte blocking
  8464. @cindex DAT blocking
  8465. Using higher blocking (putting more disk blocks per tape block) will use
  8466. the tape more efficiently as there will be less tape gaps. But reading
  8467. such tapes may be more difficult for the system, as more memory will be
  8468. required to receive at once the whole record. Further, if there is a
  8469. reading error on a huge record, this is less likely that the system will
  8470. succeed in recovering the information. So, blocking should not be too
  8471. low, nor it should be too high. @command{tar} uses by default a blocking of
  8472. 20 for historical reasons, and it does not really matter when reading or
  8473. writing to disk. Current tape technology would easily accommodate higher
  8474. blockings. Sun recommends a blocking of 126 for Exabytes and 96 for DATs.
  8475. We were told that for some DLT drives, the blocking should be a multiple
  8476. of 4Kb, preferably 64Kb (@w{@kbd{-b 128}}) or 256 for decent performance.
  8477. Other manufacturers may use different recommendations for the same tapes.
  8478. This might also depends of the buffering techniques used inside modern
  8479. tape controllers. Some imposes a minimum blocking, or a maximum blocking.
  8480. Others request blocking to be some exponent of two.
  8481. So, there is no fixed rule for blocking. But blocking at read time
  8482. should ideally be the same as blocking used at write time. At one place
  8483. I know, with a wide variety of equipment, they found it best to use a
  8484. blocking of 32 to guarantee that their tapes are fully interchangeable.
  8485. I was also told that, for recycled tapes, prior erasure (by the same
  8486. drive unit that will be used to create the archives) sometimes lowers
  8487. the error rates observed at rewriting time.
  8488. I might also use @option{--number-blocks} instead of
  8489. @option{--block-number}, so @option{--block} will then expand to
  8490. @option{--blocking-factor} unambiguously.
  8491. @node Many
  8492. @section Many Archives on One Tape
  8493. @FIXME{Appropriate options should be moved here from elsewhere.}
  8494. @findex ntape @r{device}
  8495. Most tape devices have two entries in the @file{/dev} directory, or
  8496. entries that come in pairs, which differ only in the minor number for
  8497. this device. Let's take for example @file{/dev/tape}, which often
  8498. points to the only or usual tape device of a given system. There might
  8499. be a corresponding @file{/dev/nrtape} or @file{/dev/ntape}. The simpler
  8500. name is the @emph{rewinding} version of the device, while the name
  8501. having @samp{nr} in it is the @emph{no rewinding} version of the same
  8502. device.
  8503. A rewinding tape device will bring back the tape to its beginning point
  8504. automatically when this device is opened or closed. Since @command{tar}
  8505. opens the archive file before using it and closes it afterwards, this
  8506. means that a simple:
  8507. @smallexample
  8508. $ @kbd{tar cf /dev/tape @var{directory}}
  8509. @end smallexample
  8510. @noindent
  8511. will reposition the tape to its beginning both prior and after saving
  8512. @var{directory} contents to it, thus erasing prior tape contents and
  8513. making it so that any subsequent write operation will destroy what has
  8514. just been saved.
  8515. @cindex tape positioning
  8516. So, a rewinding device is normally meant to hold one and only one file.
  8517. If you want to put more than one @command{tar} archive on a given tape, you
  8518. will need to avoid using the rewinding version of the tape device. You
  8519. will also have to pay special attention to tape positioning. Errors in
  8520. positioning may overwrite the valuable data already on your tape. Many
  8521. people, burnt by past experiences, will only use rewinding devices and
  8522. limit themselves to one file per tape, precisely to avoid the risk of
  8523. such errors. Be fully aware that writing at the wrong position on a
  8524. tape loses all information past this point and most probably until the
  8525. end of the tape, and this destroyed information @emph{cannot} be
  8526. recovered.
  8527. To save @var{directory-1} as a first archive at the beginning of a
  8528. tape, and leave that tape ready for a second archive, you should use:
  8529. @smallexample
  8530. $ @kbd{mt -f /dev/nrtape rewind}
  8531. $ @kbd{tar cf /dev/nrtape @var{directory-1}}
  8532. @end smallexample
  8533. @cindex tape marks
  8534. @dfn{Tape marks} are special magnetic patterns written on the tape
  8535. media, which are later recognizable by the reading hardware. These
  8536. marks are used after each file, when there are many on a single tape.
  8537. An empty file (that is to say, two tape marks in a row) signal the
  8538. logical end of the tape, after which no file exist. Usually,
  8539. non-rewinding tape device drivers will react to the close request issued
  8540. by @command{tar} by first writing two tape marks after your archive, and by
  8541. backspacing over one of these. So, if you remove the tape at that time
  8542. from the tape drive, it is properly terminated. But if you write
  8543. another file at the current position, the second tape mark will be
  8544. erased by the new information, leaving only one tape mark between files.
  8545. So, you may now save @var{directory-2} as a second archive after the
  8546. first on the same tape by issuing the command:
  8547. @smallexample
  8548. $ @kbd{tar cf /dev/nrtape @var{directory-2}}
  8549. @end smallexample
  8550. @noindent
  8551. and so on for all the archives you want to put on the same tape.
  8552. Another usual case is that you do not write all the archives the same
  8553. day, and you need to remove and store the tape between two archive
  8554. sessions. In general, you must remember how many files are already
  8555. saved on your tape. Suppose your tape already has 16 files on it, and
  8556. that you are ready to write the 17th. You have to take care of skipping
  8557. the first 16 tape marks before saving @var{directory-17}, say, by using
  8558. these commands:
  8559. @smallexample
  8560. $ @kbd{mt -f /dev/nrtape rewind}
  8561. $ @kbd{mt -f /dev/nrtape fsf 16}
  8562. $ @kbd{tar cf /dev/nrtape @var{directory-17}}
  8563. @end smallexample
  8564. In all the previous examples, we put aside blocking considerations, but
  8565. you should do the proper things for that as well. @xref{Blocking}.
  8566. @menu
  8567. * Tape Positioning:: Tape Positions and Tape Marks
  8568. * mt:: The @command{mt} Utility
  8569. @end menu
  8570. @node Tape Positioning
  8571. @subsection Tape Positions and Tape Marks
  8572. @UNREVISED
  8573. Just as archives can store more than one file from the file system,
  8574. tapes can store more than one archive file. To keep track of where
  8575. archive files (or any other type of file stored on tape) begin and
  8576. end, tape archive devices write magnetic @dfn{tape marks} on the
  8577. archive media. Tape drives write one tape mark between files,
  8578. two at the end of all the file entries.
  8579. If you think of data as a series of records "rrrr"'s, and tape marks as
  8580. "*"'s, a tape might look like the following:
  8581. @smallexample
  8582. rrrr*rrrrrr*rrrrr*rr*rrrrr**-------------------------
  8583. @end smallexample
  8584. Tape devices read and write tapes using a read/write @dfn{tape
  8585. head}---a physical part of the device which can only access one
  8586. point on the tape at a time. When you use @command{tar} to read or
  8587. write archive data from a tape device, the device will begin reading
  8588. or writing from wherever on the tape the tape head happens to be,
  8589. regardless of which archive or what part of the archive the tape
  8590. head is on. Before writing an archive, you should make sure that no
  8591. data on the tape will be overwritten (unless it is no longer needed).
  8592. Before reading an archive, you should make sure the tape head is at
  8593. the beginning of the archive you want to read. You can do it manually
  8594. via @code{mt} utility (@pxref{mt}). The @code{restore} script does
  8595. that automatically (@pxref{Scripted Restoration}).
  8596. If you want to add new archive file entries to a tape, you should
  8597. advance the tape to the end of the existing file entries, backspace
  8598. over the last tape mark, and write the new archive file. If you were
  8599. to add two archives to the example above, the tape might look like the
  8600. following:
  8601. @smallexample
  8602. rrrr*rrrrrr*rrrrr*rr*rrrrr*rrr*rrrr**----------------
  8603. @end smallexample
  8604. @node mt
  8605. @subsection The @command{mt} Utility
  8606. @UNREVISED
  8607. @FIXME{Is it true that this only works on non-block devices?
  8608. should explain the difference, (fixed or variable).}
  8609. @xref{Blocking Factor}.
  8610. You can use the @command{mt} utility to advance or rewind a tape past a
  8611. specified number of archive files on the tape. This will allow you
  8612. to move to the beginning of an archive before extracting or reading
  8613. it, or to the end of all the archives before writing a new one.
  8614. @FIXME{Why isn't there an "advance 'til you find two tape marks
  8615. together"?}
  8616. The syntax of the @command{mt} command is:
  8617. @smallexample
  8618. @kbd{mt [-f @var{tapename}] @var{operation} [@var{number}]}
  8619. @end smallexample
  8620. where @var{tapename} is the name of the tape device, @var{number} is
  8621. the number of times an operation is performed (with a default of one),
  8622. and @var{operation} is one of the following:
  8623. @FIXME{is there any use for record operations?}
  8624. @table @option
  8625. @item eof
  8626. @itemx weof
  8627. Writes @var{number} tape marks at the current position on the tape.
  8628. @item fsf
  8629. Moves tape position forward @var{number} files.
  8630. @item bsf
  8631. Moves tape position back @var{number} files.
  8632. @item rewind
  8633. Rewinds the tape. (Ignores @var{number}).
  8634. @item offline
  8635. @itemx rewoff1
  8636. Rewinds the tape and takes the tape device off-line. (Ignores @var{number}).
  8637. @item status
  8638. Prints status information about the tape unit.
  8639. @end table
  8640. @FIXME{Is there a better way to frob the spacing on the list?}
  8641. If you don't specify a @var{tapename}, @command{mt} uses the environment
  8642. variable @env{TAPE}; if @env{TAPE} is not set, @command{mt} will use
  8643. the default device specified in your @file{sys/mtio.h} file
  8644. (@code{DEFTAPE} variable). If this is not defined, the program will
  8645. display a descriptive error message and exit with code 1.
  8646. @command{mt} returns a 0 exit status when the operation(s) were
  8647. successful, 1 if the command was unrecognized, and 2 if an operation
  8648. failed.
  8649. @node Using Multiple Tapes
  8650. @section Using Multiple Tapes
  8651. Often you might want to write a large archive, one larger than will fit
  8652. on the actual tape you are using. In such a case, you can run multiple
  8653. @command{tar} commands, but this can be inconvenient, particularly if you
  8654. are using options like @option{--exclude=@var{pattern}} or dumping entire file systems.
  8655. Therefore, @command{tar} provides a special mode for creating
  8656. multi-volume archives.
  8657. @dfn{Multi-volume} archive is a single @command{tar} archive, stored
  8658. on several media volumes of fixed size. Although in this section we will
  8659. often call @samp{volume} a @dfn{tape}, there is absolutely no
  8660. requirement for multi-volume archives to be stored on tapes. Instead,
  8661. they can use whatever media type the user finds convenient, they can
  8662. even be located on files.
  8663. When creating a multi-volume archive, @GNUTAR{} continues to fill
  8664. current volume until it runs out of space, then it switches to
  8665. next volume (usually the operator is queried to replace the tape on
  8666. this point), and continues working on the new volume. This operation
  8667. continues until all requested files are dumped. If @GNUTAR{} detects
  8668. end of media while dumping a file, such a file is archived in split
  8669. form. Some very big files can even be split across several volumes.
  8670. Each volume is itself a valid @GNUTAR{} archive, so it can be read
  8671. without any special options. Consequently any file member residing
  8672. entirely on one volume can be extracted or otherwise operated upon
  8673. without needing the other volume. Sure enough, to extract a split
  8674. member you would need all volumes its parts reside on.
  8675. Multi-volume archives suffer from several limitations. In particular,
  8676. they cannot be compressed.
  8677. @GNUTAR{} is able to create multi-volume archives of two formats
  8678. (@pxref{Formats}): @samp{GNU} and @samp{POSIX}.
  8679. @menu
  8680. * Multi-Volume Archives:: Archives Longer than One Tape or Disk
  8681. * Tape Files:: Tape Files
  8682. * Tarcat:: Concatenate Volumes into a Single Archive
  8683. @end menu
  8684. @node Multi-Volume Archives
  8685. @subsection Archives Longer than One Tape or Disk
  8686. @cindex Multi-volume archives
  8687. @opindex multi-volume
  8688. To create an archive that is larger than will fit on a single unit of
  8689. the media, use the @option{--multi-volume} (@option{-M}) option in conjunction with
  8690. the @option{--create} option (@pxref{create}). A @dfn{multi-volume}
  8691. archive can be manipulated like any other archive (provided the
  8692. @option{--multi-volume} option is specified), but is stored on more
  8693. than one tape or disk.
  8694. When you specify @option{--multi-volume}, @command{tar} does not report an
  8695. error when it comes to the end of an archive volume (when reading), or
  8696. the end of the media (when writing). Instead, it prompts you to load
  8697. a new storage volume. If the archive is on a magnetic tape, you
  8698. should change tapes when you see the prompt; if the archive is on a
  8699. floppy disk, you should change disks; etc.
  8700. @table @option
  8701. @item --multi-volume
  8702. @itemx -M
  8703. Creates a multi-volume archive, when used in conjunction with
  8704. @option{--create} (@option{-c}). To perform any other operation on a multi-volume
  8705. archive, specify @option{--multi-volume} in conjunction with that
  8706. operation.
  8707. For example:
  8708. @smallexample
  8709. $ @kbd{tar --create --multi-volume --file=/dev/tape @var{files}}
  8710. @end smallexample
  8711. @end table
  8712. The method @command{tar} uses to detect end of tape is not perfect, and
  8713. fails on some operating systems or on some devices. If @command{tar}
  8714. cannot detect the end of the tape itself, you can use
  8715. @option{--tape-length} option to inform it about the capacity of the
  8716. tape:
  8717. @anchor{tape-length}
  8718. @table @option
  8719. @opindex tape-length
  8720. @item --tape-length=@var{size}
  8721. @itemx -L @var{size}
  8722. Set maximum length of a volume. The @var{size} argument should then
  8723. be the usable size of the tape in units of 1024 bytes. This option
  8724. selects @option{--multi-volume} automatically. For example:
  8725. @smallexample
  8726. $ @kbd{tar --create --tape-length=41943040 --file=/dev/tape @var{files}}
  8727. @end smallexample
  8728. @end table
  8729. @anchor{change volume prompt}
  8730. When @GNUTAR{} comes to the end of a storage media, it asks you to
  8731. change the volume. The built-in prompt for POSIX locale
  8732. is@footnote{If you run @GNUTAR{} under a different locale, the
  8733. translation to the locale's language will be used.}:
  8734. @smallexample
  8735. Prepare volume #@var{n} for `@var{archive}' and hit return:
  8736. @end smallexample
  8737. @noindent
  8738. where @var{n} is the ordinal number of the volume to be created and
  8739. @var{archive} is archive file or device name.
  8740. When prompting for a new tape, @command{tar} accepts any of the following
  8741. responses:
  8742. @table @kbd
  8743. @item ?
  8744. Request @command{tar} to explain possible responses
  8745. @item q
  8746. Request @command{tar} to exit immediately.
  8747. @item n @var{file-name}
  8748. Request @command{tar} to write the next volume on the file @var{file-name}.
  8749. @item !
  8750. Request @command{tar} to run a subshell. This option can be disabled
  8751. by giving @option{--restrict} command line option to
  8752. @command{tar}@footnote{@xref{--restrict}, for more information about
  8753. this option}.
  8754. @item y
  8755. Request @command{tar} to begin writing the next volume.
  8756. @end table
  8757. (You should only type @samp{y} after you have changed the tape;
  8758. otherwise @command{tar} will write over the volume it just finished.)
  8759. @cindex Volume number file
  8760. @cindex volno file
  8761. @anchor{volno-file}
  8762. @opindex volno-file
  8763. The volume number used by @command{tar} in its tape-changing prompt
  8764. can be changed; if you give the
  8765. @option{--volno-file=@var{file-of-number}} option, then
  8766. @var{file-of-number} should be an non-existing file to be created, or
  8767. else, a file already containing a decimal number. That number will be
  8768. used as the volume number of the first volume written. When
  8769. @command{tar} is finished, it will rewrite the file with the
  8770. now-current volume number. (This does not change the volume number
  8771. written on a tape label, as per @ref{label}, it @emph{only} affects
  8772. the number used in the prompt.)
  8773. @cindex End-of-archive info script
  8774. @cindex Info script
  8775. @anchor{info-script}
  8776. @opindex info-script
  8777. @opindex new-volume-script
  8778. If you want more elaborate behavior than this, you can write a special
  8779. @dfn{new volume script}, that will be responsible for changing the
  8780. volume, and instruct @command{tar} to use it instead of its normal
  8781. prompting procedure:
  8782. @table @option
  8783. @item --info-script=@var{script-name}
  8784. @itemx --new-volume-script=@var{script-name}
  8785. @itemx -F @var{script-name}
  8786. Specify the full name of the volume script to use. The script can be
  8787. used to eject cassettes, or to broadcast messages such as
  8788. @samp{Someone please come change my tape} when performing unattended
  8789. backups.
  8790. @end table
  8791. The @var{script-name} is executed without any command line
  8792. arguments. It inherits @command{tar}'s shell environment.
  8793. Additional data is passed to it via the following
  8794. environment variables:
  8795. @table @env
  8796. @vrindex TAR_VERSION, info script environment variable
  8797. @item TAR_VERSION
  8798. @GNUTAR{} version number.
  8799. @vrindex TAR_ARCHIVE, info script environment variable
  8800. @item TAR_ARCHIVE
  8801. The name of the archive @command{tar} is processing.
  8802. @vrindex TAR_BLOCKING_FACTOR, info script environment variable
  8803. @item TAR_BLOCKING_FACTOR
  8804. Current blocking factor (@pxref{Blocking}.
  8805. @vrindex TAR_VOLUME, info script environment variable
  8806. @item TAR_VOLUME
  8807. Ordinal number of the volume @command{tar} is about to start.
  8808. @vrindex TAR_SUBCOMMAND, info script environment variable
  8809. @item TAR_SUBCOMMAND
  8810. A short option describing the operation @command{tar} is executing
  8811. @xref{Operations}, for a complete list of subcommand options.
  8812. @vrindex TAR_FORMAT, info script environment variable
  8813. @item TAR_FORMAT
  8814. Format of the archive being processed. @xref{Formats}, for a complete
  8815. list of archive format names.
  8816. @vrindex TAR_FD, info script environment variable
  8817. @item TAR_FD
  8818. File descriptor which can be used to communicate the new volume
  8819. name to @command{tar}.
  8820. @end table
  8821. The volume script can instruct @command{tar} to use new archive name,
  8822. by writing in to file descriptor @env{$TAR_FD} (see below for an example).
  8823. If the info script fails, @command{tar} exits; otherwise, it begins
  8824. writing the next volume.
  8825. If you want @command{tar} to cycle through a series of files or tape
  8826. drives, there are three approaches to choose from. First of all, you
  8827. can give @command{tar} multiple @option{--file} options. In this case
  8828. the specified files will be used, in sequence, as the successive
  8829. volumes of the archive. Only when the first one in the sequence needs
  8830. to be used again will @command{tar} prompt for a tape change (or run
  8831. the info script). For example, suppose someone has two tape drives on
  8832. a system named @file{/dev/tape0} and @file{/dev/tape1}. For having
  8833. @GNUTAR{} to switch to the second drive when it needs to write the
  8834. second tape, and then back to the first tape, etc., just do either of:
  8835. @smallexample
  8836. $ @kbd{tar --create --multi-volume --file=/dev/tape0 --file=/dev/tape1 @var{files}}
  8837. $ @kbd{tar cMff /dev/tape0 /dev/tape1 @var{files}}
  8838. @end smallexample
  8839. The second method is to use the @samp{n} response to the tape-change
  8840. prompt.
  8841. Finally, the most flexible approach is to use a volume script, that
  8842. writes new archive name to the file descriptor @env{$TAR_FD}. For example, the
  8843. following volume script will create a series of archive files, named
  8844. @file{@var{archive}-@var{vol}}, where @var{archive} is the name of the
  8845. archive being created (as given by @option{--file} option) and
  8846. @var{vol} is the ordinal number of the archive being created:
  8847. @smallexample
  8848. @group
  8849. #! /bin/sh
  8850. echo Preparing volume $TAR_VOLUME of $TAR_ARCHIVE.
  8851. name=`expr $TAR_ARCHIVE : '\(.*\)-.*'`
  8852. case $TAR_SUBCOMMAND in
  8853. -c) ;;
  8854. -d|-x|-t) test -r $@{name:-$TAR_ARCHIVE@}-$TAR_VOLUME || exit 1
  8855. ;;
  8856. *) exit 1
  8857. esac
  8858. echo $@{name:-$TAR_ARCHIVE@}-$TAR_VOLUME >&$TAR_FD
  8859. @end group
  8860. @end smallexample
  8861. The same script can be used while listing, comparing or extracting
  8862. from the created archive. For example:
  8863. @smallexample
  8864. @group
  8865. # @r{Create a multi-volume archive:}
  8866. $ @kbd{tar -c -L1024 -f archive.tar -F new-volume .}
  8867. # @r{Extract from the created archive:}
  8868. $ @kbd{tar -x -f archive.tar -F new-volume .}
  8869. @end group
  8870. @end smallexample
  8871. @noindent
  8872. Notice, that the first command had to use @option{-L} option, since
  8873. otherwise @GNUTAR{} will end up writing everything to file
  8874. @file{archive.tar}.
  8875. You can read each individual volume of a multi-volume archive as if it
  8876. were an archive by itself. For example, to list the contents of one
  8877. volume, use @option{--list}, without @option{--multi-volume} specified.
  8878. To extract an archive member from one volume (assuming it is described
  8879. that volume), use @option{--extract}, again without
  8880. @option{--multi-volume}.
  8881. If an archive member is split across volumes (i.e., its entry begins on
  8882. one volume of the media and ends on another), you need to specify
  8883. @option{--multi-volume} to extract it successfully. In this case, you
  8884. should load the volume where the archive member starts, and use
  8885. @samp{tar --extract --multi-volume}---@command{tar} will prompt for later
  8886. volumes as it needs them. @xref{extracting archives}, for more
  8887. information about extracting archives.
  8888. Multi-volume archives can be modified like any other archive. To add
  8889. files to a multi-volume archive, you need to only mount the last
  8890. volume of the archive media (and new volumes, if needed). For all
  8891. other operations, you need to use the entire archive.
  8892. If a multi-volume archive was labeled using
  8893. @option{--label=@var{archive-label}} (@pxref{label}) when it was
  8894. created, @command{tar} will not automatically label volumes which are
  8895. added later. To label subsequent volumes, specify
  8896. @option{--label=@var{archive-label}} again in conjunction with the
  8897. @option{--append}, @option{--update} or @option{--concatenate} operation.
  8898. Notice that multi-volume support is a GNU extension and the archives
  8899. created in this mode should be read only using @GNUTAR{}. If you
  8900. absolutely have to process such archives using a third-party @command{tar}
  8901. implementation, read @ref{Split Recovery}.
  8902. @node Tape Files
  8903. @subsection Tape Files
  8904. @UNREVISED
  8905. To give the archive a name which will be recorded in it, use the
  8906. @option{--label=@var{volume-label}} (@option{-V @var{volume-label}})
  8907. option. This will write a special block identifying
  8908. @var{volume-label} as the name of the archive to the front of the
  8909. archive which will be displayed when the archive is listed with
  8910. @option{--list}. If you are creating a multi-volume archive with
  8911. @option{--multi-volume} (@pxref{Using Multiple Tapes}), then the
  8912. volume label will have @samp{Volume @var{nnn}} appended to the name
  8913. you give, where @var{nnn} is the number of the volume of the archive.
  8914. (If you use the @option{--label=@var{volume-label}}) option when
  8915. reading an archive, it checks to make sure the label on the tape
  8916. matches the one you give. @xref{label}.
  8917. When @command{tar} writes an archive to tape, it creates a single
  8918. tape file. If multiple archives are written to the same tape, one
  8919. after the other, they each get written as separate tape files. When
  8920. extracting, it is necessary to position the tape at the right place
  8921. before running @command{tar}. To do this, use the @command{mt} command.
  8922. For more information on the @command{mt} command and on the organization
  8923. of tapes into a sequence of tape files, see @ref{mt}.
  8924. People seem to often do:
  8925. @smallexample
  8926. @kbd{--label="@var{some-prefix} `date +@var{some-format}`"}
  8927. @end smallexample
  8928. or such, for pushing a common date in all volumes or an archive set.
  8929. @node Tarcat
  8930. @subsection Concatenate Volumes into a Single Archive
  8931. @pindex tarcat
  8932. Sometimes it is necessary to convert existing @GNUTAR{} multi-volume
  8933. archive to a single @command{tar} archive. Simply concatenating all
  8934. volumes into one will not work, since each volume carries an additional
  8935. information at the beginning. @GNUTAR{} is shipped with the shell
  8936. script @command{tarcat} designed for this purpose.
  8937. The script takes a list of files comprising a multi-volume archive
  8938. and creates the resulting archive at the standard output. For example:
  8939. @smallexample
  8940. @kbd{tarcat vol.1 vol.2 vol.3 | tar tf -}
  8941. @end smallexample
  8942. The script implements a simple heuristics to determine the format of
  8943. the first volume file and to decide how to process the rest of the
  8944. files. However, it makes no attempt to verify whether the files are
  8945. given in order or even if they are valid @command{tar} archives.
  8946. It uses @command{dd} and does not filter its standard error, so you
  8947. will usually see lots of spurious messages.
  8948. @FIXME{The script is not installed. Should we install it?}
  8949. @node label
  8950. @section Including a Label in the Archive
  8951. @cindex Labeling an archive
  8952. @cindex Labels on the archive media
  8953. @cindex Labeling multi-volume archives
  8954. @UNREVISED
  8955. @opindex label
  8956. To avoid problems caused by misplaced paper labels on the archive
  8957. media, you can include a @dfn{label} entry---an archive member which
  8958. contains the name of the archive---in the archive itself. Use the
  8959. @option{--label=@var{archive-label}} (@option{-V @var{archive-label}})
  8960. option in conjunction with the @option{--create} operation to include
  8961. a label entry in the archive as it is being created.
  8962. @table @option
  8963. @item --label=@var{archive-label}
  8964. @itemx -V @var{archive-label}
  8965. Includes an @dfn{archive-label} at the beginning of the archive when
  8966. the archive is being created, when used in conjunction with the
  8967. @option{--create} operation. Checks to make sure the archive label
  8968. matches the one specified (when used in conjunction with any other
  8969. operation.
  8970. @end table
  8971. If you create an archive using both
  8972. @option{--label=@var{archive-label}} (@option{-V @var{archive-label}})
  8973. and @option{--multi-volume} (@option{-M}), each volume of the archive
  8974. will have an archive label of the form @samp{@var{archive-label}
  8975. Volume @var{n}}, where @var{n} is 1 for the first volume, 2 for the
  8976. next, and so on. @xref{Using Multiple Tapes}, for information on
  8977. creating multiple volume archives.
  8978. @cindex Volume label, listing
  8979. @cindex Listing volume label
  8980. The volume label will be displayed by @option{--list} along with
  8981. the file contents. If verbose display is requested, it will also be
  8982. explicitly marked as in the example below:
  8983. @smallexample
  8984. @group
  8985. $ @kbd{tar --verbose --list --file=iamanarchive}
  8986. V--------- 0 0 0 1992-03-07 12:01 iamalabel--Volume Header--
  8987. -rw-r--r-- ringo user 40 1990-05-21 13:30 iamafilename
  8988. @end group
  8989. @end smallexample
  8990. @opindex test-label
  8991. @anchor{--test-label option}
  8992. However, @option{--list} option will cause listing entire
  8993. contents of the archive, which may be undesirable (for example, if the
  8994. archive is stored on a tape). You can request checking only the volume
  8995. by specifying @option{--test-label} option. This option reads only the
  8996. first block of an archive, so it can be used with slow storage
  8997. devices. For example:
  8998. @smallexample
  8999. @group
  9000. $ @kbd{tar --test-label --file=iamanarchive}
  9001. iamalabel
  9002. @end group
  9003. @end smallexample
  9004. If @option{--test-label} is used with a single command line
  9005. argument, @command{tar} compares the volume label with the
  9006. argument. It exits with code 0 if the two strings match, and with code
  9007. 2 otherwise. In this case no output is displayed. For example:
  9008. @smallexample
  9009. @group
  9010. $ @kbd{tar --test-label --file=iamanarchive 'iamalable'}
  9011. @result{} 0
  9012. $ @kbd{tar --test-label --file=iamanarchive 'iamalable' alabel}
  9013. @result{} 1
  9014. @end group
  9015. @end smallexample
  9016. If you request any operation, other than @option{--create}, along
  9017. with using @option{--label} option, @command{tar} will first check if
  9018. the archive label matches the one specified and will refuse to proceed
  9019. if it does not. Use this as a safety precaution to avoid accidentally
  9020. overwriting existing archives. For example, if you wish to add files
  9021. to @file{archive}, presumably labeled with string @samp{My volume},
  9022. you will get:
  9023. @smallexample
  9024. @group
  9025. $ @kbd{tar -rf archive --label 'My volume' .}
  9026. tar: Archive not labeled to match `My volume'
  9027. @end group
  9028. @end smallexample
  9029. @noindent
  9030. in case its label does not match. This will work even if
  9031. @file{archive} is not labeled at all.
  9032. Similarly, @command{tar} will refuse to list or extract the
  9033. archive if its label doesn't match the @var{archive-label}
  9034. specified. In those cases, @var{archive-label} argument is interpreted
  9035. as a globbing-style pattern which must match the actual magnetic
  9036. volume label. @xref{exclude}, for a precise description of how match
  9037. is attempted@footnote{Previous versions of @command{tar} used full
  9038. regular expression matching, or before that, only exact string
  9039. matching, instead of wildcard matchers. We decided for the sake of
  9040. simplicity to use a uniform matching device through
  9041. @command{tar}.}. If the switch @option{--multi-volume} (@option{-M}) is being used,
  9042. the volume label matcher will also suffix @var{archive-label} by
  9043. @w{@samp{ Volume [1-9]*}} if the initial match fails, before giving
  9044. up. Since the volume numbering is automatically added in labels at
  9045. creation time, it sounded logical to equally help the user taking care
  9046. of it when the archive is being read.
  9047. The @option{--label} was once called @option{--volume}, but is not
  9048. available under that name anymore.
  9049. You can also use @option{--label} to get a common information on
  9050. all tapes of a series. For having this information different in each
  9051. series created through a single script used on a regular basis, just
  9052. manage to get some date string as part of the label. For example:
  9053. @smallexample
  9054. @group
  9055. $ @kbd{tar cfMV /dev/tape "Daily backup for `date +%Y-%m-%d`"}
  9056. $ @kbd{tar --create --file=/dev/tape --multi-volume \
  9057. --volume="Daily backup for `date +%Y-%m-%d`"}
  9058. @end group
  9059. @end smallexample
  9060. Also note that each label has its own date and time, which corresponds
  9061. to when @GNUTAR{} initially attempted to write it,
  9062. often soon after the operator launches @command{tar} or types the
  9063. carriage return telling that the next tape is ready. Comparing date
  9064. labels does give an idea of tape throughput only if the delays for
  9065. rewinding tapes and the operator switching them were negligible, which
  9066. is usually not the case.
  9067. @node verify
  9068. @section Verifying Data as It is Stored
  9069. @cindex Verifying a write operation
  9070. @cindex Double-checking a write operation
  9071. @table @option
  9072. @item -W
  9073. @itemx --verify
  9074. @opindex verify, short description
  9075. Attempt to verify the archive after writing.
  9076. @end table
  9077. This option causes @command{tar} to verify the archive after writing it.
  9078. Each volume is checked after it is written, and any discrepancies
  9079. are recorded on the standard error output.
  9080. Verification requires that the archive be on a back-space-able medium.
  9081. This means pipes, some cartridge tape drives, and some other devices
  9082. cannot be verified.
  9083. You can insure the accuracy of an archive by comparing files in the
  9084. system with archive members. @command{tar} can compare an archive to the
  9085. file system as the archive is being written, to verify a write
  9086. operation, or can compare a previously written archive, to insure that
  9087. it is up to date.
  9088. @xopindex{verify, using with @option{--create}}
  9089. @xopindex{create, using with @option{--verify}}
  9090. To check for discrepancies in an archive immediately after it is
  9091. written, use the @option{--verify} (@option{-W}) option in conjunction with
  9092. the @option{--create} operation. When this option is
  9093. specified, @command{tar} checks archive members against their counterparts
  9094. in the file system, and reports discrepancies on the standard error.
  9095. To verify an archive, you must be able to read it from before the end
  9096. of the last written entry. This option is useful for detecting data
  9097. errors on some tapes. Archives written to pipes, some cartridge tape
  9098. drives, and some other devices cannot be verified.
  9099. One can explicitly compare an already made archive with the file
  9100. system by using the @option{--compare} (@option{--diff}, @option{-d})
  9101. option, instead of using the more automatic @option{--verify} option.
  9102. @xref{compare}.
  9103. Note that these two options have a slightly different intent. The
  9104. @option{--compare} option checks how identical are the logical contents of some
  9105. archive with what is on your disks, while the @option{--verify} option is
  9106. really for checking if the physical contents agree and if the recording
  9107. media itself is of dependable quality. So, for the @option{--verify}
  9108. operation, @command{tar} tries to defeat all in-memory cache pertaining to
  9109. the archive, while it lets the speed optimization undisturbed for the
  9110. @option{--compare} option. If you nevertheless use @option{--compare} for
  9111. media verification, you may have to defeat the in-memory cache yourself,
  9112. maybe by opening and reclosing the door latch of your recording unit,
  9113. forcing some doubt in your operating system about the fact this is really
  9114. the same volume as the one just written or read.
  9115. The @option{--verify} option would not be necessary if drivers were indeed
  9116. able to detect dependably all write failures. This sometimes require many
  9117. magnetic heads, some able to read after the writes occurred. One would
  9118. not say that drivers unable to detect all cases are necessarily flawed,
  9119. as long as programming is concerned.
  9120. The @option{--verify} (@option{-W}) option will not work in
  9121. conjunction with the @option{--multi-volume} (@option{-M}) option or
  9122. the @option{--append} (@option{-r}), @option{--update} (@option{-u})
  9123. and @option{--delete} operations. @xref{Operations}, for more
  9124. information on these operations.
  9125. Also, since @command{tar} normally strips leading @samp{/} from file
  9126. names (@pxref{absolute}), a command like @samp{tar --verify -cf
  9127. /tmp/foo.tar /etc} will work as desired only if the working directory is
  9128. @file{/}, as @command{tar} uses the archive's relative member names
  9129. (e.g., @file{etc/motd}) when verifying the archive.
  9130. @node Write Protection
  9131. @section Write Protection
  9132. Almost all tapes and diskettes, and in a few rare cases, even disks can
  9133. be @dfn{write protected}, to protect data on them from being changed.
  9134. Once an archive is written, you should write protect the media to prevent
  9135. the archive from being accidentally overwritten or deleted. (This will
  9136. protect the archive from being changed with a tape or floppy drive---it
  9137. will not protect it from magnet fields or other physical hazards).
  9138. The write protection device itself is usually an integral part of the
  9139. physical media, and can be a two position (write enabled/write
  9140. disabled) switch, a notch which can be popped out or covered, a ring
  9141. which can be removed from the center of a tape reel, or some other
  9142. changeable feature.
  9143. @node Changes
  9144. @appendix Changes
  9145. This appendix lists some important user-visible changes between
  9146. version @GNUTAR{} @value{VERSION} and previous versions. An up-to-date
  9147. version of this document is available at
  9148. @uref{http://www.gnu.org/@/software/@/tar/manual/changes.html,the
  9149. @GNUTAR{} documentation page}.
  9150. @table @asis
  9151. @item Use of globbing patterns when listing and extracting.
  9152. Previous versions of GNU tar assumed shell-style globbing when
  9153. extracting from or listing an archive. For example:
  9154. @smallexample
  9155. $ @kbd{tar xf foo.tar '*.c'}
  9156. @end smallexample
  9157. would extract all files whose names end in @samp{.c}. This behavior
  9158. was not documented and was incompatible with traditional tar
  9159. implementations. Therefore, starting from version 1.15.91, GNU tar
  9160. no longer uses globbing by default. For example, the above invocation
  9161. is now interpreted as a request to extract from the archive the file
  9162. named @file{*.c}.
  9163. To facilitate transition to the new behavior for those users who got
  9164. used to the previous incorrect one, @command{tar} will print a warning
  9165. if it finds out that a requested member was not found in the archive
  9166. and its name looks like a globbing pattern. For example:
  9167. @smallexample
  9168. $ @kbd{tar xf foo.tar '*.c'}
  9169. tar: Pattern matching characters used in file names. Please,
  9170. tar: use --wildcards to enable pattern matching, or --no-wildcards to
  9171. tar: suppress this warning.
  9172. tar: *.c: Not found in archive
  9173. tar: Error exit delayed from previous errors
  9174. @end smallexample
  9175. To treat member names as globbing patterns, use --wildcards option.
  9176. If you want to tar to mimic the behavior of versions prior to 1.15.91,
  9177. add this option to your @env{TAR_OPTIONS} variable.
  9178. @xref{wildcards}, for the detailed discussion of the use of globbing
  9179. patterns by @GNUTAR{}.
  9180. @item Use of short option @option{-o}.
  9181. Earlier versions of @GNUTAR{} understood @option{-o} command line
  9182. option as a synonym for @option{--old-archive}.
  9183. @GNUTAR{} starting from version 1.13.90 understands this option as
  9184. a synonym for @option{--no-same-owner}. This is compatible with
  9185. UNIX98 @command{tar} implementations.
  9186. However, to facilitate transition, @option{-o} option retains its
  9187. old semantics when it is used with one of archive-creation commands.
  9188. Users are encouraged to use @option{--format=oldgnu} instead.
  9189. It is especially important, since versions of @acronym{GNU} Automake
  9190. up to and including 1.8.4 invoke tar with this option to produce
  9191. distribution tarballs. @xref{Formats,v7}, for the detailed discussion
  9192. of this issue and its implications.
  9193. @FIXME{Change the first argument to tar-formats when the new Automake is
  9194. out. The proposition to add @anchor{} to the appropriate place of its
  9195. docs was accepted by Automake people --Sergey 2006-05-25}.
  9196. @xref{Options, tar-v7, Changing Automake's Behavior,
  9197. automake, GNU Automake}, for a description on how to use various
  9198. archive formats with @command{automake}.
  9199. Future versions of @GNUTAR{} will understand @option{-o} only as a
  9200. synonym for @option{--no-same-owner}.
  9201. @item Use of short option @option{-l}
  9202. Earlier versions of @GNUTAR{} understood @option{-l} option as a
  9203. synonym for @option{--one-file-system}. Since such usage contradicted
  9204. to UNIX98 specification and harmed compatibility with other
  9205. implementation, it was declared deprecated in version 1.14. However,
  9206. to facilitate transition to its new semantics, it was supported by
  9207. versions 1.15 and 1.15.90. The present use of @option{-l} as a short
  9208. variant of @option{--check-links} was introduced in version 1.15.91.
  9209. @item Use of options @option{--portability} and @option{--old-archive}
  9210. These options are deprecated. Please use @option{--format=v7} instead.
  9211. @item Use of option @option{--posix}
  9212. This option is deprecated. Please use @option{--format=posix} instead.
  9213. @end table
  9214. @node Configuring Help Summary
  9215. @appendix Configuring Help Summary
  9216. Running @kbd{tar --help} displays the short @command{tar} option
  9217. summary (@pxref{help}). This summary is organized by @dfn{groups} of
  9218. semantically close options. The options within each group are printed
  9219. in the following order: a short option, eventually followed by a list
  9220. of corresponding long option names, followed by a short description of
  9221. the option. For example, here is an excerpt from the actual @kbd{tar
  9222. --help} output:
  9223. @verbatim
  9224. Main operation mode:
  9225. -A, --catenate, --concatenate append tar files to an archive
  9226. -c, --create create a new archive
  9227. -d, --diff, --compare find differences between archive and
  9228. file system
  9229. --delete delete from the archive
  9230. @end verbatim
  9231. @vrindex ARGP_HELP_FMT, environment variable
  9232. The exact visual representation of the help output is configurable via
  9233. @env{ARGP_HELP_FMT} environment variable. The value of this variable
  9234. is a comma-separated list of @dfn{format variable} assignments. There
  9235. are two kinds of format variables. An @dfn{offset variable} keeps the
  9236. offset of some part of help output text from the leftmost column on
  9237. the screen. A @dfn{boolean} variable is a flag that toggles some
  9238. output feature on or off. Depending on the type of the corresponding
  9239. variable, there are two kinds of assignments:
  9240. @table @asis
  9241. @item Offset assignment
  9242. The assignment to an offset variable has the following syntax:
  9243. @smallexample
  9244. @var{variable}=@var{value}
  9245. @end smallexample
  9246. @noindent
  9247. where @var{variable} is the variable name, and @var{value} is a
  9248. numeric value to be assigned to the variable.
  9249. @item Boolean assignment
  9250. To assign @code{true} value to a variable, simply put this variable name. To
  9251. assign @code{false} value, prefix the variable name with @samp{no-}. For
  9252. example:
  9253. @smallexample
  9254. @group
  9255. # Assign @code{true} value:
  9256. dup-args
  9257. # Assign @code{false} value:
  9258. no-dup-args
  9259. @end group
  9260. @end smallexample
  9261. @end table
  9262. Following variables are declared:
  9263. @deftypevr {Help Output} boolean dup-args
  9264. If true, arguments for an option are shown with both short and long
  9265. options, even when a given option has both forms, for example:
  9266. @smallexample
  9267. -f ARCHIVE, --file=ARCHIVE use archive file or device ARCHIVE
  9268. @end smallexample
  9269. If false, then if an option has both short and long forms, the
  9270. argument is only shown with the long one, for example:
  9271. @smallexample
  9272. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9273. @end smallexample
  9274. @noindent
  9275. and a message indicating that the argument is applicable to both
  9276. forms is printed below the options. This message can be disabled
  9277. using @code{dup-args-note} (see below).
  9278. The default is false.
  9279. @end deftypevr
  9280. @deftypevr {Help Output} boolean dup-args-note
  9281. If this variable is true, which is the default, the following notice
  9282. is displayed at the end of the help output:
  9283. @quotation
  9284. Mandatory or optional arguments to long options are also mandatory or
  9285. optional for any corresponding short options.
  9286. @end quotation
  9287. Setting @code{no-dup-args-note} inhibits this message. Normally, only one of
  9288. variables @code{dup-args} or @code{dup-args-note} should be set.
  9289. @end deftypevr
  9290. @deftypevr {Help Output} offset short-opt-col
  9291. Column in which short options start. Default is 2.
  9292. @smallexample
  9293. @group
  9294. $ @kbd{tar --help|grep ARCHIVE}
  9295. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9296. $ @kbd{ARGP_HELP_FMT=short-opt-col=6 tar --help|grep ARCHIVE}
  9297. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9298. @end group
  9299. @end smallexample
  9300. @end deftypevr
  9301. @deftypevr {Help Output} offset long-opt-col
  9302. Column in which long options start. Default is 6. For example:
  9303. @smallexample
  9304. @group
  9305. $ @kbd{tar --help|grep ARCHIVE}
  9306. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9307. $ @kbd{ARGP_HELP_FMT=long-opt-col=16 tar --help|grep ARCHIVE}
  9308. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9309. @end group
  9310. @end smallexample
  9311. @end deftypevr
  9312. @deftypevr {Help Output} offset doc-opt-col
  9313. Column in which @dfn{doc options} start. A doc option isn't actually
  9314. an option, but rather an arbitrary piece of documentation that is
  9315. displayed in much the same manner as the options. For example, in
  9316. the description of @option{--format} option:
  9317. @smallexample
  9318. @group
  9319. -H, --format=FORMAT create archive of the given format.
  9320. FORMAT is one of the following:
  9321. gnu GNU tar 1.13.x format
  9322. oldgnu GNU format as per tar <= 1.12
  9323. pax POSIX 1003.1-2001 (pax) format
  9324. posix same as pax
  9325. ustar POSIX 1003.1-1988 (ustar) format
  9326. v7 old V7 tar format
  9327. @end group
  9328. @end smallexample
  9329. @noindent
  9330. the format names are doc options. Thus, if you set
  9331. @kbd{ARGP_HELP_FMT=doc-opt-col=6} the above part of the help output
  9332. will look as follows:
  9333. @smallexample
  9334. @group
  9335. -H, --format=FORMAT create archive of the given format.
  9336. FORMAT is one of the following:
  9337. gnu GNU tar 1.13.x format
  9338. oldgnu GNU format as per tar <= 1.12
  9339. pax POSIX 1003.1-2001 (pax) format
  9340. posix same as pax
  9341. ustar POSIX 1003.1-1988 (ustar) format
  9342. v7 old V7 tar format
  9343. @end group
  9344. @end smallexample
  9345. @end deftypevr
  9346. @deftypevr {Help Output} offset opt-doc-col
  9347. Column in which option description starts. Default is 29.
  9348. @smallexample
  9349. @group
  9350. $ @kbd{tar --help|grep ARCHIVE}
  9351. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9352. $ @kbd{ARGP_HELP_FMT=opt-doc-col=19 tar --help|grep ARCHIVE}
  9353. -f, --file=ARCHIVE use archive file or device ARCHIVE
  9354. $ @kbd{ARGP_HELP_FMT=opt-doc-col=9 tar --help|grep ARCHIVE}
  9355. -f, --file=ARCHIVE
  9356. use archive file or device ARCHIVE
  9357. @end group
  9358. @end smallexample
  9359. @noindent
  9360. Notice, that the description starts on a separate line if
  9361. @code{opt-doc-col} value is too small.
  9362. @end deftypevr
  9363. @deftypevr {Help Output} offset header-col
  9364. Column in which @dfn{group headers} are printed. A group header is a
  9365. descriptive text preceding an option group. For example, in the
  9366. following text:
  9367. @verbatim
  9368. Main operation mode:
  9369. -A, --catenate, --concatenate append tar files to
  9370. an archive
  9371. -c, --create create a new archive
  9372. @end verbatim
  9373. @noindent
  9374. @samp{Main operation mode:} is the group header.
  9375. The default value is 1.
  9376. @end deftypevr
  9377. @deftypevr {Help Output} offset usage-indent
  9378. Indentation of wrapped usage lines. Affects @option{--usage}
  9379. output. Default is 12.
  9380. @end deftypevr
  9381. @deftypevr {Help Output} offset rmargin
  9382. Right margin of the text output. Used for wrapping.
  9383. @end deftypevr
  9384. @node Fixing Snapshot Files
  9385. @appendix Fixing Snapshot Files
  9386. @include tar-snapshot-edit.texi
  9387. @node Tar Internals
  9388. @appendix Tar Internals
  9389. @include intern.texi
  9390. @node Genfile
  9391. @appendix Genfile
  9392. @include genfile.texi
  9393. @node Free Software Needs Free Documentation
  9394. @appendix Free Software Needs Free Documentation
  9395. @include freemanuals.texi
  9396. @node Copying This Manual
  9397. @appendix Copying This Manual
  9398. @menu
  9399. * GNU Free Documentation License:: License for copying this manual
  9400. @end menu
  9401. @include fdl.texi
  9402. @node Index of Command Line Options
  9403. @appendix Index of Command Line Options
  9404. This appendix contains an index of all @GNUTAR{} long command line
  9405. options. The options are listed without the preceding double-dash.
  9406. For a cross-reference of short command line options, @ref{Short Option Summary}.
  9407. @printindex op
  9408. @node Index
  9409. @appendix Index
  9410. @printindex cp
  9411. @summarycontents
  9412. @contents
  9413. @bye
  9414. @c Local variables:
  9415. @c texinfo-column-for-description: 32
  9416. @c End: