|
| ||||||||||
| Tags: bootable, grub, linux, ntfs bootable |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
How to create a GRUB bootable CD?
|
|
#2
| ||||
| ||||
| Re: How to create a GRUB bootable CD?
GRUB supports the no emulation mode.This means that you can use the whole CD-ROM from GRUB and you don't have to make a floppy or hard disk image file, which can cause compatibility problems.For booting from a CD-ROM, GRUB need to have stage2_eltorito and optionally a config file. Here is an example of procedures to make a bootable CD-ROM image. First, make a top directory for the bootable image. Code: $ mkdir iso Code: $ mkdir -p iso/boot/grub Code: $ cp /usr/lib/grub/i386-pc/stage2_eltorito iso/boot/grub Code: # Sample boot menu configuration file # By default, boot the first entry. default 0 # The first entry as counting starts with number zero, not one. # Boot automatically after 30 secs. timeout 30 # GRUB will boot automatically in 30 seconds, unless interrupted with a keypress. Code: $ mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot \ -boot-load-size 4 -boot-info-table -o grub.iso |
|
#3
| ||||
| ||||
| Re: How to create a GRUB bootable CD?
Hey thanks man! i'll try it out as soon as i get on my PC. Actually i'm not very familiar with linux OS, wanna know why "load size 4" option is used to make bootable image? is it necessary? |
|
#4
| ||||
| ||||
| Re: How to create a GRUB bootable CD?
No. You can ignore it if u have a newer computer, but some old computers need it for bios compatibility. All the Best! |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to create a GRUB bootable CD?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to create a Bootable USB Key? | MurTuza | Guides & Tutorials | 7 | 17-01-2012 06:46 AM |
| How to create a bootable CD/DVD from a DMG? | Shakirah | Operating Systems | 5 | 18-09-2010 04:07 PM |
| How to create a bootable disk ? | Rhys | Operating Systems | 5 | 30-05-2009 04:11 PM |
| Create Bootable Cd for windows Xp sp3 | msi_1985 | Operating Systems | 5 | 14-03-2009 01:02 AM |
| Create Your Own Bootable Cds | Kuldeep S | Guides & Tutorials | 1 | 28-04-2008 04:58 PM |