*BSD News Article 98403


Return to BSD News archive

#! rnews 1523 bsd
Path: euryale.cc.adfa.oz.au!newshost.carno.net.au!harbinger.cc.monash.edu.au!munnari.OZ.AU!news.Hawaii.Edu!news.caldera.com!enews.sgi.com!nntprelay.mathworks.com!news.maxwell.syr.edu!news-was.dfn.de!news-kar1.dfn.de!news-fra1.dfn.de!news-koe1.dfn.de!RRZ.Uni-Koeln.DE!gtnduss1.du.gtn.com!www.punkt.de!not-for-mail
From: "Patrick M. Hausen" <hausen@punkt.de>
Newsgroups: comp.unix.bsd.freebsd.misc
Subject: Re: tar: dev/rwd0s4: minor number too large; not dumped
Date: 25 Jun 1997 07:56:46 GMT
Organization: WEB Internet Services
Lines: 25
Message-ID: <01bc813d$6df08a40$f3e94dc2@hugo09.ticsoft.de>
References: <33B0261F.167EB0E7@journyx.com> <5op9l9$b77@baygull.rtd.com> <5oplqd$4sa@uriah.heep.sax.de>
NNTP-Posting-Host: hugo09.ticsoft.de
X-Newsreader: Microsoft Internet News 4.70.1155
Xref: euryale.cc.adfa.oz.au comp.unix.bsd.freebsd.misc:43486

J Wunsch <j@uriah.heep.sax.de> schrieb im Beitrag
<5oplqd$4sa@uriah.heep.sax.de>...
> dgy@rtd.com (Don Yuniskis) wrote:
> 
> > >tar: dev/rwd1s4: minor number too large; not dumped
> 
> > This appears to be something inherent in the tar used in FBSD.
> 
> This appears to be something inherent in the tar file format.

As an addon: don't use tar for backup, use cpio.
Or Amanda ;-)

For cpio:

# cd /
# find -d -x . usr var home usr/local -print | cpio -oB -H newc -O
/dev/rst0
             ^^^^^^^^^^^^^^^^^^^^^^^^ use your filesystems here

Note the _missing_ "/" in ". usr var ...", you won't be able
to extract your backup to a different location, if you add
it.

Patrick