home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / bsd / 3287 < prev    next >
Encoding:
Text File  |  1992-07-31  |  1.8 KB  |  44 lines

  1. Path: sparky!uunet!charon.amdahl.com!amdahl!JUTS!griffin!gab10
  2. From: gab10@griffincd.amdahl.com (Gary A Browning)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: 386BSD 0.1 kernel sources ?
  5. Message-ID: <49kT02Wy1cdu01@JUTS.ccc.amdahl.com>
  6. Date: 31 Jul 92 19:12:23 GMT
  7. References: <1992Jul29.192157.5426@nrao.edu> <712539144snx@close.demon.co.uk>
  8. Sender: netnews@ccc.amdahl.com
  9. Organization: Amdahl Corporation, Sunnyvale CA
  10. Lines: 32
  11.  
  12. In article <712539144snx@close.demon.co.uk>, peter@close.demon.co.uk
  13. (Peter Curran) writes:
  14.  
  15. > I have a similar need, but I don't think this will work for me.  I have 
  16. > discovered that if the bin01 is extracted onto a disk <40MB (mine is 39
  17. > and a bit) then it will not all fit on.  The manuals are missing and 
  18. > stuff like termcap out of /usr/share/misc are missing.  Is there any way
  19. > that I can extract only the last few files only from the floppies?
  20.  
  21. FYI, I noticed the other day that agate has a new subdirectory called
  22. 'filesystem' in the distribution directory (/pub/386BSD/386bsd-0.1)
  23. that seems to have the files already extracted.
  24.  
  25. Also, you can extract specific files by:
  26.   cd /; cat tmp/bin01.* | uncompress | cpio -idalmu <file1> <file2> ...
  27.  
  28. You can obtain the names of all files on the bin01 distribution by:
  29.   cat /tmp/bin01.* | uncompress | cpio -it >bin01.filelist
  30.  
  31. Unfortunately, you still must have all of the files in the bin01 distribution
  32. online.
  33.  
  34. An interesting solution to disk space problems might be:
  35.   (for i in /tmp/bin01.*; do cat $i; rm $i; done) | uncompress | cpio -idalmu
  36. Since this removes the distribution files as it goes, freeing up disk space
  37. for the cpio extracted files.
  38. Use this at your own risk.
  39. #include <std/disclaimer.h>
  40. -- 
  41. Gary Browning        | Exhilaration is that feeling you get just after a
  42.              | great idea hits you, and just before you realize
  43.                      | what is wrong with it.
  44.