home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 January / CHIPCD1_98.iso / software / pelne / monkey / mlinux06.arj / LINUX.BAT < prev    next >
DOS Batch File  |  1997-04-28  |  2KB  |  39 lines

  1. @ECHO OFF
  2. rem  First, ensure any unwritten disk buffers are flushed...
  3. rem  Warning: there is no posibility to boot Linux from M$ Windows
  4. smartdrv /C
  5.  
  6. rem  We go to heaven...
  7. loadlin 3mide.030 root=/dev/hda1 rw
  8. rem  This line should be never interpretted (if everything goes well).
  9. GOTO error
  10.  
  11. Seems /dev/hda1 magic for you? /dev/hda1 is usually C: in DOS environment.
  12.     hda is the first  HDD on primary IDE interface (primary master)
  13.     hdb is the second HDD on primary IDE interface (secondary master)
  14.     hdc is the first  HDD on secondary IDE interface (primary slave)
  15.     hdd is the second HDD on secondary IDE interface (secondary slave)
  16.     numbers is first, second, third partitions on HDD
  17.        (logical disk on extended partitions have number 5 or more)
  18.     rw is ReadWrite - how partition will be mounted during startup
  19.  
  20. In DOS on each HDD may be only one primary DOS and only one DOS extended
  21. partition. Extended partitions may have more logical disks.
  22. If you have 1 HDD and only DOS filesystem (without Stacker, Doublespace, etc)
  23.  
  24.         C:   /dev/hda1    -> primary partition
  25.         D:   /dev/hda5    -> first logical disk on extended partition
  26.         E:   /dev/hda6    -> second logical disk on extended partition
  27.  
  28. If you have 2 HDDs
  29.  
  30.         C:   /dev/hda1    -> primary partition on first drive
  31.         D:   /dev/hdb1    -> primary partition on second drive
  32.         E:   depend on you specific configuration
  33.  
  34. If you know nothing about partitions, consult with smart guru ;-)
  35. You may experiment too.
  36.  
  37. :error
  38. ECHO Somethig goes wrong. Check me please. I'm stupid LINUX.BAT
  39.