# # 23-Oct-03 amo Date-of-Birth # # http://syslinux.zytor.com/iso.php # http://www.ncart.scs.ryerson.ca/pub/slackware/slackware-current/isolinux/ # # ISOLINUX is a boot loader for Linux/i386 that operates off ISO 9660/El Torito CD-ROMs in "no emulation" mode. # # get a recent enough version of mkisofs. I recommend mkisofs 1.13 (distributed with cdrecord 1.9), # To create an image, create a directory called "isolinux" (or, if you prefer, "boot/isolinux") underneath the root directory of your ISO image master file tree. Copy isolinux.bin, a config file called "isolinux.cfg" (see syslinux.doc for details on the configuration file), and all necessary files (kernels, initrd, display files, etc.) into this directory, then use the following command to create your ISO image (add additional options as appropriate, such as -J or -R): mkisofs -o bootable.cdrom.iso \ -b boot/isolinux/isolinux.bin -c /boot/isolinux/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ root-of-iso-tree # # End of file