Linux 8.0 telepítési gond
  • TheZsenyka
    #9
    Kiszedtem neked az infót ami a CD-ről történő bootolás sikertelensége esetén hasznos lehet:


    6.2. Creating the boot and root floppies

    (This step is only needed if you can't boot from a CD-ROM.)

    Your Linux CD-ROM may come with installation aids that will take you through
    the process of building boot, root, and rescue disks with interactive
    prompts. These may be an MS-DOS installation program (such as the Red Hat
    redhat.exe program) or a Unix script, or both.

    If you have such a program and can use it, you should read the rest of this
    subsection for information only. Run the program to do actual installation --
    its authors certainly knew more about the specific distribution than I, and
    you'll avoid many error-prone hand-entry steps.

    More detailed information on making bootdisks, see the [http://
    www.linuxdoc.org/HOWTO/Bootdisk-HOWTO.html] Linux Bootdisk HOWTO.

    Your first step will be to select a boot-disk image to fit your hardware. If
    you must do this by hand, you'll generally find that either (a) the bootdisk
    images on your CD-ROM are named in a way that will help you pick a correct
    one, or (b) there's an index file nearby describing each image.

    Next, you must create floppies from the bootdisk image you selected, and
    optionally from the rescue disk images. This is where the MS-DOS program
    RAWRITE.EXE comes into play.

    Next, you must have two or three high-density MS-DOS formatted floppies.
    (They must be of the same type; that is, if your boot floppy drive is a 3.5"
    drive, both floppies must be high-density 3.5" disks.) You will use
    RAWRITE.EXE to write the bootdisk images to the floppies.

    Invoke it with no arguments, like this:
    +---------------------------------------------------------------------------+
    |C:\> RAWRITE |
    +---------------------------------------------------------------------------+

    Answer the prompts for the name of the file to write and the floppy to write
    it to (such as A:). RAWRITE will copy the file, block-by-block, directly to
    the floppy. Also use RAWRITE for the root disk image (such as COLOR144). When
    you're done, you'll have two floppies: one containing the boot disk, the
    other containing the root disk. Note that these two floppies will no longer
    be readable by MS-DOS (they are ``Linux format'' floppies, in some sense).

    You can use the dd(1) commands on a UNIX system to do the same job. (For
    this, you will need a UNIX workstation with a floppy drive, of course.) For
    example, on a Sun workstation with the floppy drive on device /dev/rfd0, you
    can use the command:
    +---------------------------------------------------------------------------+
    |$ dd if=bare of=/dev/rfd0 obs=18k |
    +---------------------------------------------------------------------------+

    You must provide the appropriate output block size argument (the `obs'
    argument) on some workstations (e.g., Suns) or this will fail. If you have
    problems the man page for dd(1) may be be instructive.

    Be sure that you're using brand-new, error-free floppies. The floppies must
    have no bad blocks on them.

    Note that you do not need to be running Linux or MS-DOS in order to install
    Linux. However, running Linux or MS-DOS makes it easier to create the boot
    and root floppies from your CD-ROM. If you don't have an operating system on
    your machine, you can use someone else's Linux or MS-DOS just to create the
    floppies, and install from there.
    ----------------------------------------------------------------------------