home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hpfslin9.zip / INSTALL < prev   
Text File  |  1993-10-23  |  1KB  |  37 lines

  1. /*-*- indented-text -*-*/
  2.  
  3. 1. Have a recent backup, just in case.
  4.    If you don't, just set this aside until after your next backup run.    
  5.    Also make sure you haven't misplaced the kernel source tar archive.
  6.  
  7. 2. Install the HPFS sources in the kernel tree:
  8.      cd /usr/src/linux
  9.      patch -p1 < /path/hpfs-0.9.diff
  10.  
  11. 3. Rebuild the kernel:
  12.      make config; make dep; make zlilo
  13.  
  14. 4. Try it.
  15.      reboot
  16.      mount -t hpfs /dev/hdxn /mnt
  17.      ls /mnt
  18.  
  19. If you put hpfs partitions in /etc/fstab and use 'fsck -A' in /etc/rc,
  20. it will try to run a nonexistent fsck.hpfs.  As a stopgap you can do
  21.  
  22.      ln -s /bin/true /bin/fsck.hpfs
  23.  
  24.  
  25. Also included in this distribution is setboot, a Linux utility to
  26. tell OS/2 Boot Manager what system to load at the next reboot.
  27.  
  28. Typical usage:
  29.  
  30.     setboot dos        -- to reboot to dos
  31.     setboot C:        -- to reboot to whatever is on C:
  32.  
  33. setboot is actually a script that runs set-boot followed by reboot.
  34. set-boot is the program that stores the information for boot manager.
  35. You'll probably want to edit setboot to use the rebooting procedure
  36. of your choice (shutdown or whatever). 
  37.