Linux create an installation boot disk
There are different methods to create an installation boot disk under Linux. Bootable floppy disks are generally used as a last resort to boot the installer on hardware that cannot boot from CD or by other means (such as a BIOS limitation).
Disk images are files containing the complete contents of a floppy disk in raw form. They cannot be directly copy to floppy disk.
Creating an installation disk from Linux/UNIX
Find out image called boot.img. Different Linux distribution stores disk under different location on CD/DVD:
=> Red Hat / Fedora Linux : /images/boot.img
=> Debian Linux: /install/floppy/boot.img
To write an installation boot disk using dd command as follows (put a floppy disk in disk drive):# dd if=/images/boot.img of=/dev/fd0 bs=1440kOR# dd if=/install/floppy/boot.img of=/dev/fd0 bs=1024 conv=sync ; sync
Creating an installation from DOS or Windows
The rewrite.exe and rawrite2.exe programs can be used under MS-DOS. The rwwrtwin.exe program runs on Windows 95, NT, 98, 2000, ME, XP etc. Different Linux distribution stores these utilities under different location on CD/DVD:
=> Red Hat /Fedora Linux: /dosutils
=> Debian Linux: /tools
Boot into DOS, put a floppy in drive and type command (assuming that E: is your CD/DVD drive):e:When asked for a disk boot image path, enter boot.img (for example e:\images\boot.img or e:\install\floppy\boot.img).
cd dosutils
rawrite.exe
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Linux Boot Disk under Redhat or Fedora Linux
- Howto: Create a boot floppy in Solaris UNIX
- How to Create Bootable Linux CD
- How do I force IDE CD-ROM drive detecting during the Linux installation?
- Howto: Install Linux onto a hard drive using a smart array
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



February 24th, 2008 at 6:19 am
burning boot.img to a cd will make a boot disk for redhat enteprise 5?