[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tape backup advice
- To: misc_(_at_)_openbsd_(_dot_)_org
- Subject: Re: tape backup advice
- From: "David S." <davids_(_at_)_idiom_(_dot_)_com>
- Date: Fri, 2 May 2003 15:44:22 -0700
> 2. Next I tried 'cpio'. I can write a full backup and restore files. I'm
> having problems performing an incremental backup. 'cpio' for the full
> backup is:
>
> cpio -o -v -F /dev/rst0 < file.list >& log.out
>
> 'cpio' for the incremental backup is:
>
> cpio -o -A -v -F /dev/rst0 < file.list >& log.out
You can't append new data onto a cpio file on tape. Presuming that
the full backup if the first file on the tape, you want something
like
mt -f /dev/nrst0 fsf 1
cpio -o -v -F /dev/rst0 < incremental_file.list >& log.out
But you'll probably find it easier to use one tape per backup.
>
> Which command works "best" for this type of simple backup?
cpio, tar, pax - "De gustibus non est disputandum"
David S.
Visit your host, monkey.org