Xref: utzoo comp.unix.xenix.sco:2129 comp.unix.sysv386:6701 Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!swrinde!cs.utexas.edu!uunet!math.fu-berlin.de!fauern!ira.uka.de!smurf!cmllab!macleod From: macleod@cmllab.rgb.sub.org (Connor MacLeod) Newsgroups: comp.unix.xenix.sco,comp.unix.sysv386 Subject: Re: Best way to backup SCO Xenix/UNIX Keywords: backup unix xenix sco Message-ID: <1991Apr05.075312.2831@cmllab.rgb.sub.org> Date: 5 Apr 91 07:53:12 GMT References: Organization: The Connor MacLeod Laboratories, Regensburg, West-Germany Lines: 45 In article aris@tabbs.UUCP (Aris Stathakis) wrote: | The title says it all. What *IS* the best way to do a backup? At the | moment all I do is make sure I keep all important data on a seperate | filesystem, then periodically backup up that filesystem using tar. | If I ever had a crash, i'd have to re-install the Operating System | (Xenix 386 2.3.3) then restore my data from tape. Well... I don't know if the way I use is the best but it's ok for me. I'm using cpio to backup my system. The advantage in using cpio instead of tar is that cpio is able to backup special devices, too. The syntax for using cpio is: cd /path_to_backup; find ./ -print | cpio -oB >/dev/rct0 I'm using 150/250 MB tapes according to the usage of my filesystems. Make sure to use "find ./" to get a backup with relative paths. The cpio has no option -A like tar to suppress the leading / when restoring. The command for the restore is: cd /path_to_restore_to; cpio -iBvdum