home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / unix / bsd / 4787 < prev    next >
Encoding:
Text File  |  1992-08-27  |  2.0 KB  |  66 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!wupost!gumby!yale!yale.edu!jvnc.net!nuscc!ntuix!eoahmad
  3. From: eoahmad@ntuix.ntu.ac.sg (Othman Ahmad)
  4. Subject: Re: How download X386 to floppies?
  5. Message-ID: <1992Aug28.011842.9607@ntuix.ntu.ac.sg>
  6. Organization: Nanyang Technological University - Singapore
  7. X-Newsreader: Tin 1.1 PL4
  8. References: <22269@venera.isi.edu>
  9. Date: Fri, 28 Aug 1992 01:18:42 GMT
  10. Lines: 54
  11.  
  12. allard@isi.edu (Dennis Allard) writes:
  13. : My goal: create a set of floppies with the X386 distribution on them
  14. :          and then extract that distribution onto my 386BSD.
  15. : My situation:
  16. :   At home: 386BSD binary distribution up and running on a 386-33 clone
  17. :   At work: HP-UX and SunOS workstations, one which has a floppy drive
  18. : I have already ftp'd the files core-{bin,server,fonts,inc,lib,man}-1.0.3.tar.Z
  19. : from agate.berkeley.edu to a fileserver at work.  How can I create a
  20. : multivolume set of floppies which I can then use to install X on my 386 at
  21. : home?
  22. : I cannot use MCOPY to move the files to floppies as each one is far too big
  23. : to fit on a single floppy.  This has GOT to be a simple problem, what am
  24. : I missing (besides a Unix User's guide, something which two decades of
  25. : Unix users have missed)?
  26.  
  27. Please do read my article on multivolume tar.
  28.  
  29. In your case, first you need to insall the GNU tar 1.10 . I do not think that
  30. the Sun tar can do multivolume, why don't you check with man tar.
  31.  
  32. If you have GNU tar 1.10, you do the following commands
  33.  
  34. tar cvMf /dev/rfd0 {file to archive} 
  35.  
  36.  
  37. ; note that I forgot Sun floppy device name
  38. ; I recommend that you archive each file separately to prevent one error
  39. ; affecting all the others
  40.  
  41. ; to verify
  42.  
  43. tar -tvMf /dev/rfd0
  44.  
  45.  
  46. ; to extract to 386bsd without copying the files first
  47.  
  48. tar -xvMOzf /dev/rfd0a | tar xvf -
  49.  
  50. ; warning: I have problems with links
  51.  
  52.  
  53. I've not done this personally, I hope you can try and tell us about it.
  54.  
  55. --
  56. Othman bin Ahmad, School of EEE,
  57. Nanyang Technological University, Singapore 2263.
  58. Internet Email: eoahmad@ntuix.ntu.ac.sg
  59. Bitnet Email: eoahmad@ntuvax.bitnet
  60.  
  61.