home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 107 / SLS-A3.ZIP / README < prev    next >
Text File  |  1992-10-13  |  2KB  |  60 lines

  1. Before you can install Linux on your hard drive, you must partition your
  2. drive, and put a file system on it.  Roughly, this entails:
  3.  
  4.  - Create a Linux/Minix partition with "fdisk" on your hard drive and reboot.
  5.  - Make a file system on the partition with "mkfs" (or "mkefs", see below).
  6.  - Use "doinstall /dev/PART", where PART is your partition, to start 
  7.    the installation.  For example "doinstall /dev/hda2".
  8.  
  9. This last step will ask you to put a formatted floppy in the drive
  10. so that BOOT DISK can be prepared for you, so have one ready ahead of time.  
  11. When the installation is complete, and you reboot from this floppy, you 
  12. will be using Linux from your hard drive.
  13.  
  14. Before you begin, however, you may wish to type "menu" and browse the
  15. Instructions submenu.  But make sure you exit "menu" before you start
  16. the install process.  You can also print files from there using "P",
  17. or you can use "cat README > /dev/lp1" or "cat README > /dev/lp2".
  18.  
  19. Your first task after the base install is done, should be to make backup
  20. copies of all of your disks  (Look in the "User Commands" menu).
  21. In fact, you should make sure all disks are write protected first,
  22. before you start the installation.  After the install, you can log on as "root".
  23.  
  24. PS:
  25. Note, although you can use the Extended FS type, it is not recommeneded
  26. (read as not tested), and is subject to change.
  27.  
  28. **************** EXAMPLE PARTITIONING PROCEDURE **************************
  29. /# fdisk
  30.  
  31. Command (m for help): n
  32. Command action
  33.    e   extended
  34.    p   primary partition (1-4)
  35. p
  36. Partition number (1-4): 2
  37. First cylinder (500-977): 500
  38. Last cylinder or +size or +sizeM or +sizeK (500-977): 977
  39.  
  40. Command (m for help): t
  41. Partition number (1-4): 1
  42. Hex code (type L to list codes): 81
  43.  
  44. Command (m for help): v
  45. Command (m for help): p
  46.  
  47. Disk /dev/hda: 5 heads, 17 sectors, 977 cylinders
  48. Units = cylinders of 85 * 512 bytes
  49.  
  50.    Device Boot  Begin   Start     End  Blocks   Id  System
  51. /dev/hda1           1       1     499   20000    4  DOS
  52. /dev/hda2           1       1       7   30000   81  Linux/MINIX
  53.  
  54. Command (m for help): w
  55. reboot now before doing anything else
  56. /#
  57. ...<after the reboot>
  58. /# mkfs /dev/hda2 30000
  59. /# doinstall /dev/hda2
  60.