home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / LINUX / LOWMEM.TXT (.txt) < prev    next >
Text File  |  1997-04-19  |  3KB  |  70 lines

  1.  
  2. Installation can be tricky on a machine with 4 megabytes of RAM or
  3. less. Here are a few tricks that can be helpful if you run into
  4. problems. (Symptoms might include: system hangs while booting the bootdisk;
  5. root password required on the rootdisk; inability to run "fdisk" or
  6. "mkswap"; and many more, I'm sure...)
  7.  
  8. First, you'll need to use a 3.5" floppy for the rootdisk, and you *must*
  9. uncompress the rootdisk before writing it out.  This is since it will be 
  10. used directly from the floppy drive instead of loaded into a ramdisk.
  11.  
  12. 1. If you have a second 3.5" floppy drive, great -- you'll want to use that
  13. for the rootdisk. If not, you'll have to make due with the rootdisk in your
  14. boot drive. With the rootdisk in the boot drive you won't be able to
  15. install from floppy disks or make a bootdisk at the end of the installation
  16. process, since the disk will be "mounted" in the boot drive and cannot be
  17. removed (no matter what the screen tells you) until the machine is
  18. rebooted. Make a rootdisk using RAWRITE.EXE for the floppy drive you
  19. selected.
  20.  
  21. 2. Unzip lodlin16.zip (look in /kernels) in a directory on your DOS
  22. partition.
  23.  
  24. 3. Select an appropriate kernel from a subdirectory under /kernels. The
  25. /bootdsks.144/WHICH.ONE document might be helpful in selecting the proper
  26. one for your hardware. Copy it into the directory where you put loadlin.
  27.  
  28. 4. Put the rootdisk (NOT write protected) into the floppy drive, and use
  29. this command to boot it:
  30.  
  31.    loadlin scsi.s root=/dev/fd0 ramdisk=0
  32.            ^^^^^^      ^^^^^^^^
  33.            ||||||      This should be the drive you put the disk in.
  34.            This is the name of the kernel you selected.
  35.  
  36.  
  37. Then, install Linux. If you're using the boot floppy drive for the
  38. rootdisk, you will not be able to install from floppy disks. DON'T take the
  39. rootdisk out of the floppy drive for any reason during the installation!
  40. Also, since scratch files may be written to the rootdisk, you'll want to
  41. start with a fresh copy if you need to start over for some reason.
  42.  
  43. Once installed, you'll need to have a way to start your new system. If you
  44. were lucky enough to have a second floppy drive to use for your rootdisk,
  45. then you'll be able to make a bootdisk at the end of the installation
  46. process. This is highly recommended. If your boot drive is occupied by the
  47. rootdisk, then you've got two options: Loadlin (a method of booting from
  48. DOS) or LILO. And, if you're using the UMSDOS filesystem then Loadlin is
  49. your only choice.
  50.  
  51. To boot the system with loadlin, you'll use a command similar to the one
  52. you used to start the rootdisk, but you'll replace /dev/fd0 or /dev/fd1 with 
  53. the name of the device you're using for your root Linux partition, like this:
  54.  
  55.    loadlin scsi root=/dev/hda2 ramdisk=0
  56.  
  57. Once your machine is up and running, you'll probably need to add additional
  58. driver support if you have extra hardware (such as an ethernet card) that's 
  59. not supported by the kernel you've used to install.  You can do this one of
  60. two ways:
  61.  
  62.     1)   Recompile your kernel to include any additional support needed.
  63. or
  64.     2)   Load any extra kernel drivers you need from kernel modules.  To do
  65.          this, edit your /etc/rc.d/rc.modules file.  You can think of this
  66.          file as sort of the Linux equivalent of DOS's CONFIG.SYS file -- it
  67.          contains examples for all of the most commonly used modules.  
  68.  
  69. Pat
  70.