home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / unix / bsd / 5111 < prev    next >
Encoding:
Internet Message Format  |  1992-09-03  |  1.7 KB

  1. Path: sparky!uunet!dtix!darwin.sura.net!jvnc.net!nuscc!ntuix!eoahmad
  2. From: eoahmad@ntuix.ntu.ac.sg (Othman Ahmad)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: backup w/ compression for UN*X?
  5. Message-ID: <1992Sep4.085828.10853@ntuix.ntu.ac.sg>
  6. Date: 4 Sep 92 08:58:28 GMT
  7. References: <1992Sep3.165702.3809@gateway.novell.com>
  8. Organization: Nanyang Technological University - Singapore
  9. Lines: 34
  10. X-Newsreader: Tin 1.1 PL4
  11.  
  12. terry@thisbe.Eng.Sandy.Novell.COM (Terry Lambert) writes:
  13. : In article <1992Sep3.015437.15379@msuinfo.cl.msu.edu> paoletti@cps.msu.edu (David R. Paoletti) writes:
  14. : >Does anyone know of any software for UN*X, 386BSD or otherwise,
  15. : >that does on-the-fly compression?  Thinking of looking into
  16. : >writing my own, or getting some 386BSD people together to help,
  17. : >as soon as I get my new machine built with enough HD space to
  18. : >re-compile 386BSD...  This would be really nice for people with
  19. : >floppies, or even people who want to save on tapes.
  20. : ctar (LoneStar software, I believe... Hi guys!)
  21. : Doesn't gnutar support -z (LZW compression)?
  22. Cannot do multi-volume, at least the 386bsd one. The reason is due to
  23. the fact that it gnu tar just pipes it through compress, instead of
  24. incorporating it before the multivolume archiving.
  25.     The trick is to call the compress before the archiving.
  26. Maybe
  27.  
  28. tar cvf - | compress | tar cvOMf /dev/rfd0a
  29.  
  30. "however cO is not a valid option" only "xO"
  31.  
  32. maybe we can use mkfifo, but I have never managed to make mkfifo work.
  33.  
  34. mkfifo fifo
  35. (tar cvzf fifo) | (tar cvMf /dev/rfd9a fifo)
  36.  
  37. Any ideas?
  38.  
  39. --
  40. Othman bin Ahmad, School of EEE,
  41. Nanyang Technological University, Singapore 2263.
  42. Internet Email: eoahmad@ntuix.ntu.ac.sg
  43. Bitnet Email: eoahmad@ntuvax.bitnet
  44.