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

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!cis.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!news.cs.indiana.edu!umn.edu!mermaid.micro.umn.edu!fridlund
  3. From: fridlund@mermaid.micro.umn.edu (Jim Fridlund)
  4. Subject: Re: Incorrect Install Procedure in FAQ
  5. In-Reply-To: sxjcb@orca.alaska.edu's message of 31 Aug 92 01:33:10 GMT
  6. Message-ID: <FRIDLUND.92Aug31092118@beluga.micro.umn.edu>
  7. Followup-To: comp.unix.bsd
  8. Sender: news@news2.cis.umn.edu (Usenet News Administration)
  9. Nntp-Posting-Host: beluga.micro.umn.edu
  10. Organization: Minnesota Automated Plate Scanner Lab
  11. References: <sxjcb-300892172124@sxjcb.uacn.alaska.edu>
  12. Date: Mon, 31 Aug 1992 15:21:18 GMT
  13. Lines: 59
  14.  
  15. In article <sxjcb-300892172124@sxjcb.uacn.alaska.edu> sxjcb@orca.alaska.edu (Jay C. Beavers) writes:
  16.  
  17. > Path: news.cis.umn.edu!umn.edu!csus.edu!wupost!cs.utexas.edu!sun-barr!ames!ig!bionet!raven.alaska.edu!sxjcb.uacn.alaska.edu!user
  18. > From: sxjcb@orca.alaska.edu (Jay C. Beavers)
  19. >  Newsgroups: comp.unix.bsd
  20. >  Date: 31 Aug 92 01:33:10 GMT
  21. >  Sender: news@raven.alaska.edu (USENET News System)
  22. >  Followup-To: comp.unix.bsd
  23. >  Organization: University of Alaska Computer Network
  24. >  Lines: 34
  25. >  Nntp-Posting-Host: sxjcb.uacn.alaska.edu
  26. >
  27.  
  28.    [other stuff deleted...]
  29.  
  30. >  In the 386BSD 0.1 FAQ revision date 09 Aug 92 there is an error in one of
  31. >  the installation procedures.  In section 2.04, 'How do I get 0.1 installed
  32. >  with "real" partitionning?', there is a description of how to install BIN01
  33. >  without using the happy fun EXTRACT program.  The procedure neglects to
  34. >  mention that you have to run a device install script after step 21, the
  35. >  decompression of the bin01.* files.  The result of this is that /dev/kmem
  36. >  doesn't get created, the rc script complains of its absence, and telnetd
  37. >  refuses to allow incoming telnet sessions.
  38.  
  39. If I remember correctly, I had to run MAKEDEV.
  40.  
  41. >  The original discussion on installing 386BSD 0.1 on a 40 mb hard drive by
  42. >  using the script:
  43. >  # (for i in /tmp/bin01.*; do
  44. >  > cat $i && rm $1
  45. >  > done
  46. >  > ) | uncompress | cpio -iadm
  47. >  also negelcts to mention this.
  48.  
  49. I remember posting something like this back in July.
  50.  
  51. Here's how I did it:
  52.  
  53. My solution after reading the cpio (yuk) man page and getting some
  54. help with my Bourne Shell from my friend David Zuhn was:
  55.  
  56. - Install Tiny 386BSD on the hard drive.
  57. - Boot from the hard drive
  58. - The extraction procedure:
  59.         % cd /tmp
  60.         % loadfd        # copy all the bin01.* to /tmp.  Ctrl-C when done.
  61.         % cd /
  62.         % (for i in /tmp/bin01.*; do
  63.         > cat $i && rm $i
  64.         > done
  65.         > ) | uncompress | cpio -iadm
  66.  
  67. That should extract each bin01.?? file and remove it.  The '%' and '>'
  68. are shell prompts.  Note:  the $i instead of $1.  Try this again.
  69. This is how I unpacked 386BSD bindist on a 40 meg Seagate ST-251 MFM
  70. drive.  Hope this helps.
  71. --
  72. Jim Fridlund                                     U of MN - Computer Science
  73. fridlund@mermaid.micro.umn.edu                   Institute of Technology
  74.