[BACK]Return to errata.html CVS log [TXT][DIR] Up to [local] / www

Diff for /www/errata.html between version 1.19 and 1.20

version 1.19, 1997/07/23 12:10:52 version 1.20, 1997/08/01 01:03:02
Line 142 
Line 142 
 <p>  <p>
 <li><strong>Mac68k</strong>  <li><strong>Mac68k</strong>
 <ul>  <ul>
 <li>The installer generates incorrect /etc/fstab files.  <li>The installer generates incorrect /etc/fstab files causing messages such as "file system read-only" on bootup.
 To correct, do the following:  To correct, boot to single-user mode (by clicking that checkbox in the Booter's Booting:Options dialog) and do the following:
 <pre>  <pre>
 <b>#</b> mount /dev/sd0a /  <b>#</b> mount /dev/sd0a /
 <b>#</b> ed /etc/fstab  <b>#</b> ed /etc/fstab
 1,$s/ ufs / ffs /  1,$s/ ufs / ffs /
   1,$s/ ro / rw /
 w  w
 q  q
 <b>#</b> reboot  
 </pre>  </pre>
   Alternately, simply invoke vi or another editor and change the root filesystem
   to be of type ffs rather than ufs and be rw (read-write) rather than ro
   (read-only).  In either case, you'll need to reboot the system afterwards.
   Make this correction as soon as possible after installing the system.
 The installer should not have specified the filesystem as the old  The installer should not have specified the filesystem as the old
 "ufs" type; the "ffs" type is more correct.  "ufs" type; the "ffs" type is more correct.
   
 <li>The installer forgets to install the kernel onto the filesystem.  <li>The installer forgets to install the kernel onto the filesystem.
   This is because the installer expects all packages including the kernel to
   be tar'ed and gzip'ed.  The kernel was not shipped that way.  Therefore, you
   must make this correction <em>before attempting to boot the system</em>.
 To correct, use the Installer mini-shell and do the following:  To correct, use the Installer mini-shell and do the following:
 <pre>  <pre>
 cpin "INTERNAL:bsd-generic" "/bsd"  > cpin :[internal-macos-path]:bsd-generic bsd
 </pre>  </pre>
 This should place the kernel as /bsd on the filesystem. Good luck.  This should place the kernel as /bsd on the filesystem. You should
   replace the above string with the colon-delimited path from your deskpto to
   wherever you have placed the kernel.  If possible, it is easiest to drag the
   kernel onto the desktop, so you can simply issue a command like:
   <pre>
   > cpin :bsd-generic bsd
   </pre>
   Good luck.
 </ul>  </ul>
 </ul>  </ul>
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20