This is a discussion on ISOLINUX 2.08 2003-12-12 isolinux: Disk Error 01, AX=4271, 9F within the Linux Operating System forums, part of the Unix Operating Systems category; --> At start up of my PC, using the first Fedora Core II Cd, I got the following error : ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| valerio <valerio.frigerio@e4b.it> wrote: > ISOLINUX 2.08 2003-12-12 isolinux: Disk Error 01, AX=4271, 9F The CD is busted. Get a new CD or try burn it again. Davide -- | Never worry about theory as long as the machinery does what it's | supposed to do. | | |
| |||
| On 2004-07-08, Davide Bianchi <davideyeahsure@onlyforfun.net> wrote: > valerio <valerio.frigerio@e4b.it> wrote: >> ISOLINUX 2.08 2003-12-12 isolinux: Disk Error 01, AX=4271, 9F > The CD is busted. Get a new CD or try burn it again. I saw this error when I tried to install FC2 on an HP laptop. The CD was not busted; it passed the media check and in fact I used the same disk to install to a desktop machine. The problem in my case at least appears to have been a brain-dead BIOS that would only allow bootable CDs that used floppy emulation. The solution I used was to create a new bootable CD using DR-DOS and LOADLIN to start the FC2 installer. -- -John (john@os2.dhs.org) |
| |||
| John Thompson <john@starfleet.os2.dhs.org> wrote in message news:<slrncerg33.rog.john@starfleet.os2.dhs.org>.. . > On 2004-07-08, Davide Bianchi <davideyeahsure@onlyforfun.net> wrote: > > > valerio <valerio.frigerio@e4b.it> wrote: > > >> ISOLINUX 2.08 2003-12-12 isolinux: Disk Error 01, AX=4271, 9F > > > The CD is busted. Get a new CD or try burn it again. > > I saw this error when I tried to install FC2 on an HP laptop. The CD was > not busted; it passed the media check and in fact I used the same disk to > install to a desktop machine. > > The problem in my case at least appears to have been a brain-dead BIOS > that would only allow bootable CDs that used floppy emulation. The > solution I used was to create a new bootable CD using DR-DOS and LOADLIN > to start the FC2 installer. Thank you John, I think that you could have reason. In fact, the CD is working on another computer and I had the same problem with other Linux distributions even thougth some distributions works. I'd like to follow your procedure, but I haven't DR-DOS and LOADLIN. Can you suggest me where to find out the tools ? Thanks in advance, Valerio |
| |||
| On 2004-07-09, valerio <valerio.frigerio@e4b.it> wrote: > John Thompson <john@starfleet.os2.dhs.org> wrote in message news:<slrncerg33.rog.john@starfleet.os2.dhs.org>.. . >> >> The problem in my case at least appears to have been a brain-dead BIOS >> that would only allow bootable CDs that used floppy emulation. The >> solution I used was to create a new bootable CD using DR-DOS and LOADLIN >> to start the FC2 installer. > I think that you could have reason. > In fact, the CD is working on another computer and I had the same > problem with other Linux distributions even thougth some distributions > works. > > I'd like to follow your procedure, but I haven't DR-DOS and LOADLIN. > Can you suggest me where to find out the tools ? I used DR-DOS but you can use any DOS boot diskette. You can get a variety from http://www.bootdisk.com. Basically, download the boot diskette image, make sure it supports CDROM devices (you can mount the image through the loopback device: eg, "mount -t vfat -o loop disk.img /mnt/tmp" to mount it on /mnt/tmp, then you can check AUTOEXEC.BAT and CONFIG.SYS for the needed support: [AUTOEXEC.BAT] @ECHO OFF rem LH MSCDEX.EXE /D LH NWCDEX.EXE /D [CONFIG.SYS] rem device=himem.sys device=emm386.exe device=oakcdrom.sys /D device=btdosm.sys rem device=flashpt.sys device=btcdrom.sys /D files=60 buffers=20 dos=high,umb stacks=9,256 lastdrive=z If yiour computer has a floppy drive, you can simply write the image to a floppy ("dd if=disk.img of=/dev/fd0") and boot from it to test. If you don't have a floppy drive, you'll need to make a bootable "el Torrito" CD disk using the floppy image. Copy the first FC2 CD contents to a directory somewhere. Create a new "boot" directory at the top level of that directory. Copy the disk.img file into that directory. Then you'll need to track down LOADLIN.EXE; I think RedHat has it on their ftp site, but I just copied the whole DOSUTILS directory from the FC1 install bootdisk into the FC2 directory. Edit the DOSUTILS\AUTOBOOT.BAT file so it reads: loadlin isolinux\vmlinuz initrd=isolinux\initrd.img ramdisk_size=9216 %1 %2 %3 %4 %5 %6 %7 %8 %9 (all on a single line). You then make the iso using mkisof: mkisofs -r -b boot/disk.img -c boot/boot.catalog -o bootcd.iso . Finally, burn the iso to a CD using cdrecord: cdrecord -v -fs=16m -eject bootcd.iso -- -John (john@os2.dhs.org) |
| |||
| Hi John, you have been really exaustive. I'll try to follow your suggestions, then I'll let you know the result thanks a lot Valerio John Thompson <john@starfleet.os2.dhs.org> wrote in message news:<slrncetgfi.uof.john@starfleet.os2.dhs.org>.. . > On 2004-07-09, valerio <valerio.frigerio@e4b.it> wrote: > > > John Thompson <john@starfleet.os2.dhs.org> wrote in message news:<slrncerg33.rog.john@starfleet.os2.dhs.org>.. . > >> > >> The problem in my case at least appears to have been a brain-dead BIOS > >> that would only allow bootable CDs that used floppy emulation. The > >> solution I used was to create a new bootable CD using DR-DOS and LOADLIN > >> to start the FC2 installer. > > > I think that you could have reason. > > In fact, the CD is working on another computer and I had the same > > problem with other Linux distributions even thougth some distributions > > works. > > > > I'd like to follow your procedure, but I haven't DR-DOS and LOADLIN. > > Can you suggest me where to find out the tools ? > > I used DR-DOS but you can use any DOS boot diskette. You can get a > variety from http://www.bootdisk.com. Basically, download the boot > diskette image, make sure it supports CDROM devices (you can mount the > image through the loopback device: eg, "mount -t vfat -o loop disk.img > /mnt/tmp" to mount it on /mnt/tmp, then you can check AUTOEXEC.BAT and > CONFIG.SYS for the needed support: > > [AUTOEXEC.BAT] > @ECHO OFF > rem LH MSCDEX.EXE /D > LH NWCDEX.EXE /D > > [CONFIG.SYS] > rem device=himem.sys > device=emm386.exe > device=oakcdrom.sys /D > device=btdosm.sys > rem device=flashpt.sys > device=btcdrom.sys /D > files=60 > buffers=20 > dos=high,umb > stacks=9,256 > lastdrive=z > > If yiour computer has a floppy drive, you can simply write the image to a > floppy ("dd if=disk.img of=/dev/fd0") and boot from it to test. > > If you don't have a floppy drive, you'll need to make a bootable "el > Torrito" CD disk using the floppy image. Copy the first FC2 CD contents > to a directory somewhere. Create a new "boot" directory at the top level > of that directory. Copy the disk.img file into that directory. Then > you'll need to track down LOADLIN.EXE; I think RedHat has it on their ftp > site, but I just copied the whole DOSUTILS directory from the FC1 install > bootdisk into the FC2 directory. Edit the DOSUTILS\AUTOBOOT.BAT file so > it reads: > > loadlin isolinux\vmlinuz initrd=isolinux\initrd.img ramdisk_size=9216 %1 > %2 %3 %4 %5 %6 %7 %8 %9 > > (all on a single line). You then make the iso using mkisof: > > mkisofs -r -b boot/disk.img -c boot/boot.catalog -o bootcd.iso . > > Finally, burn the iso to a CD using cdrecord: > > cdrecord -v -fs=16m -eject bootcd.iso |
| ||||
| valerio.frigerio@e4b.it (valerio) wrote in message news:<2f786f8f.0407080110.44972c36@posting.google. com>... > At start up of my PC, using the first Fedora Core II Cd, I got the following error : > > ISOLINUX 2.08 2003-12-12 isolinux: Disk Error 01, AX=4271, 9F Just had this same error on an AX6BC motherboard, several years old. Updating the BIOS fixed it. The old BIOS wouldn't recognize a bootable CD. |
| Thread Tools | |
| Display Modes | |
|
|