home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / os / linux / 10522 < prev    next >
Encoding:
Text File  |  1992-09-11  |  1.8 KB  |  40 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!world!dsb
  3. From: dsb@world.std.com (David Boyce)
  4. Subject: Re: Backups
  5. Message-ID: <BuG1As.7JH@world.std.com>
  6. Organization: The World Public Access UNIX, Brookline, MA
  7. References: <1992Sep11.202337.10427@cs.tulane.edu>
  8. Date: Sat, 12 Sep 1992 02:23:16 GMT
  9. Lines: 29
  10.  
  11. In article <1992Sep11.202337.10427@cs.tulane.edu> butler@cs.tulane.edu (Larry Butler) writes:
  12. >How do I make a backup of a file system on to floppies?
  13.  
  14.     Well, you could just run "tar cvf /dev/fd0 /" (more or less) if you're
  15. using GNU tar. GNU tar has multivolume support built in, so it will ask
  16. you to change floppies as appropriate. But it won't compress the data
  17. and do multiple volumes at the same time, which means you need
  18. perhaps twice as many floppies. Also if your tar isn't the GNU version
  19. (like if it's linked to pax) this won't work.
  20.     Most people use a wrapper around tar to allow compression and to
  21. add some user-friendliness. The three I know of are shown below,
  22. grepped out of tsx-11:/pub/linux/ls-lR:
  23.  
  24. -rw-rw-r--  1 johnsonm    74557 Jul  7 22:39 backflops.tar.Z
  25. -rw-r--r--  1 tytso        7815 Apr  7 14:51 diskbackup.tar.Z
  26. -rw-rw-r--  1 johnsonm     3212 Apr 26 14:11 floptools.shar.Z
  27.  
  28.     Backflops was written by me, so of course it's what I recommend.
  29. It certainly has more bells and whistles than the others, but take
  30. a look at all of them. Floptools is simply a couple of scripts;
  31. it's the lightweight solution. Diskbackup is a somewhat more
  32. ambitious C program, and backflops is also in C and attempts to
  33. overcome some of the limitations of the other two. It should work
  34. with pax-tar, though I haven't tried it.
  35.     I think lots of other people have their private solutions but haven't
  36. made them public.  Feel free to ask me directly if you have questions
  37. about backflops.  Good luck.
  38. -- 
  39. David Boyce    dsb@world.std.com    617-576-1540
  40.