home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / unix / bsd / 4786 < prev    next >
Encoding:
Text File  |  1992-08-27  |  2.2 KB  |  73 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: extracting sys.386bsd sources only Re: zsh for 386bsd
  5. Message-ID: <1992Aug28.010525.6750@ntuix.ntu.ac.sg>
  6. Organization: Nanyang Technological University - Singapore
  7. X-Newsreader: Tin 1.1 PL4
  8. References: <1992Aug26.204022.24768@rwwa.COM>
  9. Distribution: usa
  10. Date: Fri, 28 Aug 1992 01:05:25 GMT
  11. Lines: 60
  12.  
  13. witr@rwwa.COM (Robert Withrow) writes:
  14. : Could you summarize the necessary steps?  Lot's of us would like that.
  15. If it were true that there are many of you like me, who would like to install
  16. only the kernel sources, then we should make an effort to ask the archive
  17. keepers to have a sys.tar.Z file for distribution. It surely would save a
  18. lot of downloading time and effort.
  19.  
  20.  
  21. I'm working on a Mips workstation running Ultrix 4.2 . The cpio commands will
  22. be very different for your particular workstation. My main problem is not
  23. so much of lack of space, rather of priorities. I want to concentrate on
  24. compiling my particular sources only. The utility sources tend to be more stable
  25. and we can easily download it from the 386bsd archives in directory 
  26. filesystem(?) because they are small in size.
  27.  
  28.  
  29. ;first download all the etc files into a tmp space in your workstation,
  30. cd /usr/tmp
  31. ftp agate.berkeley.edu
  32. ......
  33.  
  34. ;after that extract only the sys.386bsd directory
  35.  
  36. cat src* | uncompress | cpio -idalmC usr/src/sys.386bsd
  37. ;note that the C is an Ultrix cpio option for compatibility with old BSD,
  38. ; before 4.2
  39.  
  40. ; after that you'd better tar and compress it
  41. cd usr/src
  42. tar cvf sys.tar 
  43. compress sys.tar
  44.  
  45. ; you must copy the resultant file sys.tar.Z to a DOS diskete then use mread
  46. ; to transfer it to you 386bsd
  47.  
  48. cd /usr
  49. mkdir src
  50. mread "a:*.*" .
  51.  
  52. ;extract it
  53.  
  54. zcat sys.tar | tar xvf -
  55.  
  56. ; you have got your sys.386bsd sources
  57.  
  58.  
  59. EXPERIMENTAL:
  60.  
  61. I'm experimenting with alternative ways of archiving distribution files using
  62. multivolume tar format which allows you to extract only relevant files from
  63. your distribution floppies. See my article on this.
  64.  
  65. --
  66. Othman bin Ahmad, School of EEE,
  67. Nanyang Technological University, Singapore 2263.
  68. Internet Email: eoahmad@ntuix.ntu.ac.sg
  69. Bitnet Email: eoahmad@ntuvax.bitnet
  70.  
  71.