Burn a CD using the image. This creates a boot CD with the specified kernel, named
vmlinuz, and a scaled-down version of the
grub.conf configuration file named
isolinux.cfg, both located in the
isolinux subdirectory of the CD. This example mounts the newly created CD-ROM and takes a look at the
isolinux.cfg file to confirm that everything is okay.
[root@bigboy tmp]# mount /mnt/cdrom
[root@bigboy tmp]# ls /mnt/cdrom/isolinux/
boot.cat boot.msg initrd.img isolinux.bin isolinux.cfg
TRANS.TBL vmlinuz
[root@bigboy tmp]# cat /mnt/cdrom/isolinux/isolinux.cfg
default linux
prompt 1
display boot.msg
timeout 100
label linux
kernel vmlinuz
append initrd=initrd.img ro root=/dev/hda2
[root@bigboy tmp]#