diff --git a/en_US.ISO8859-1/books/handbook/backups/chapter.sgml b/en_US.ISO8859-1/books/handbook/backups/chapter.sgml index 6b9e9d4664..ff50d95f45 100644 --- a/en_US.ISO8859-1/books/handbook/backups/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/backups/chapter.sgml @@ -1,7 +1,7 @@ @@ -284,7 +284,19 @@ sa0(ncr1:4:0): Logical unit is in process of becoming ready &man.cpio.1; does not support backups across the network. You can use a pipeline and &man.rsh.1; to send the data to a remote tape - drive. (XXX add an example command) + drive. + + &prompt.root; for f in directory_list; do +find $f >> backup.list +done +&prompt.root; cpio -v -o --format=newc < backup.list | ssh user@host "cat > backup_device + + Where directory_list is the list of + directories you want to back up, + user@host is the + user/hostname combination that will be performing the backups, and + backup_device is where the backups should + be written to (e.g., /dev/nrsa0).