# # How to make a grub boot cd # # # Original Document # ----------------- # http://Linux-Boot.net/Loaders/Grub/Examples/grub.boot-cd.txt # # # 18-Aug-05 amo Date-of-Birth # # # # info grub # # # find your grub libraries # ------------------------ # cd /usr/lib/grub/i386-pc # cd /boot/grub # cd /var/lib # # cd /tmp # mkdir -p iso/boot/grub # cp -p stage2_eltorito iso/boot/grub # # # # optional # vi iso/boot/grub/menu.lst # # mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 \ -boot-info-table -o grub.iso iso # # # * mkisofs creates grub.iso that can be burnt onto cdrom # # # End of file