home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / BOOTDSKS.12 / README.TXT < prev    next >
Encoding:
Text File  |  1995-04-20  |  5.4 KB  |  120 lines

  1. These are 1.2 MB bootkernel images for Slackware Linux 2.2.0.
  2.  
  3. These disks currently use Linux 1.2.3.
  4.  
  5. You'll need one of these to get Linux started on your system so that you can
  6. install it. Because of the possibility of collisions between the various Linux
  7. drivers, several bootkernel disks have been provided. You should use the one
  8. with the least drivers possible to maximize your chances of success. All of
  9. these disks support UMSDOS.
  10.  
  11. You will be using the bootkernel disk to boot a root-install disk. See the
  12. rootdsks.12 directory for these.
  13.  
  14. A bootkernel disk is created by uncompressing the image with GZIP.EXE 
  15. (Example: GZIP -d bare.gz), and then writing the image out with RAWRITE.EXE.
  16. (NOTE: some Slackware CDs will have already decompressed the bootdisk images 
  17. for you -- if the files don't end with '.gz' then you won't need to use GZIP)
  18.  
  19. RAWRITE is interactive and reasonably user-friendly.
  20.  
  21. --------------------------------------------------------------------------------
  22. Here's a description of the disks:
  23.  
  24. aztcd.gz    - contains IDE, SCSI, and Aztech/Okano/Orchid/Wearnes non-IDE CD
  25.               support.
  26. bare.gz     - contains IDE hard drive drivers only.
  27. cdu31a.gz   - contains IDE and SCSI drivers, plus Sony CDU31/33a CD drivers.
  28. cdu535.gz   - contains IDE and SCSI drivers, plus Sony CDU531/535 CD drivers.
  29. mitsumi.gz  - contains IDE and SCSI drivers, plus the Mitsumi CD driver.
  30. idecd.gz    - Supports IDE, SCSI, and IDE/ATAPI CD-ROM.
  31. net.gz      - contains IDE hard drive and ethernet drivers.
  32. sbpcd.gz    - contains IDE and SCSI drivers, plus SB Pro/Panasonic CD drivers.
  33. scsi.gz     - contains IDE hard drive, SCSI hard drive, and SCSI CD-ROM drives.
  34. scsinet1.gz - contains IDE hard drive, SCSI hard drive, SCSI CD-ROM, and 
  35.               ethernet drivers.  (supports SCSI cards in list 1 below)
  36. scsinet2.gz - contains IDE hard drive, SCSI hard drive, SCSI CD-ROM, and 
  37.               ethernet drivers.  (supports SCSI cards in list 2 below)
  38. xt.gz       - contains IDE hard drive and XT hard drive drivers.
  39. --------------------------------------------------------------------------------
  40.  
  41. SCSI DRIVERS:
  42.  
  43. List 1:                              List 2:
  44. Adaptec 152x/1542/1740/274x/284x     Generic NCR5380
  45. Buslogic                             NCR 53c7,8xx
  46. EATA-DMA (DPT/NEC/AT&T)              Always IN2000
  47. Seagate ST-02                        Pro Audio Spectrum 16
  48. Future Domain TMC-8xx, 16xx          QLogic
  49.                                      Trantor T128/T128F/T228
  50.                                      Ultrastor
  51.                                      7000 FASST
  52.  
  53. ---------------------------------------------------------------------------------
  54. IMPORTANT HELPFUL HINTS: (AND WHAT TO DO IF THE INSTALLED SYSTEM WON'T BOOT)
  55.  
  56. The kernels provided with the Slackware A series (idekern and scsikern) are
  57. reasonably generic to maximize the chances that your system will boot after
  58. installation. However, you should compile a custom kernel after installing,
  59. selecting only the drivers your system requires. This will offer optimal
  60. performance. You'll need to recompile your kernel to enable support for non-SCSI
  61. CD-ROM drives, bus-mice, sound cards, and many other pieces of hardware. The
  62. drivers could not be included with the pre-compiled kernels because they cause
  63. system hangs and other compatiblity problems for people that don't have the
  64. hardware installed.
  65.  
  66. On a similar note, any time you use one kernel to install, and a different 
  67. kernel the first time the installed system is started, you run the risk that
  68. the second kernel won't be compatible for some reason. If your system fails
  69. to reboot after installation, you'll have to compile a custom kernel for your
  70. hardware. Follow these steps:
  71.  
  72. 0. If you haven't installed the C compiler and kernel source, do that.
  73.  
  74. 1. Use the bootkernel disk you installed with to start your machine. At the LILO
  75.    prompt, enter: 
  76.    
  77.      mount root=/dev/hda1
  78.                 ^^^^^^^^^ Or whatever your root Linux partition is.
  79.  
  80.    Ignore any error messages as the system starts up.
  81.  
  82. 2. Log in as root, and recompile the kernel with these steps. (Comments will be
  83.    placed in parenthesis) 
  84.  
  85.    cd /usr/src/linux
  86.    make config   (Choose your drivers. Repeat this step until you are satisfied
  87.                   with your choices)
  88.    
  89.    If you are using LILO, this will build and install the new kernel:
  90.  
  91.      make dep ; make clean ; make zlilo 
  92.      rdev -R /vmlinuz 1
  93.  
  94.    If you are using a bootdisk, these commands will build the kernel and create
  95.    a new bootdisk for your machine:
  96.  
  97.      make dep ; make clean ; make zImage
  98.      rdev -R zImage 1    (If you use UMSDOS for your root partition, use
  99.                           'rdev -R zImage 0' instead)
  100.      rdev -v zImage -1
  101.      rdev zImage /dev/hda1   (replace /dev/hda1 with the name of your root Linux
  102.                               partition)
  103.      (Now, put a disk into your floppy drive to be made into the new bootdisk:)
  104.      fdformat /dev/fd0h1200 
  105.      cat zImage > /dev/fd0
  106.  
  107. That should do it! You should now have a Linux kernel that can make full use of
  108. all supported hardware installed in your machine. Reboot and try it out.
  109.  
  110. Good luck!
  111.  
  112. ---
  113. Patrick Volkerding
  114. volkerdi@mhd1.moorhead.msus.edu
  115.  
  116. PS - Bug reports welcome. Requests for help may be answered if time permits.
  117.      I've been happy to do this in the past, but lately I've had both a lot 
  118.      more work to do and a lot more mail to deal with. It's just not as possible
  119.      to keep up with my mail as it once was.
  120.