Differences between revisions 9 and 10
Revision 9 as of 2005-02-02 06:40:00
Size: 2204
Editor: anonymous
Comment:
Revision 10 as of 2005-02-02 06:40:44
Size: 2206
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 49: Line 49:
 c:\boot\stage1="GRUB" to c:\boot.ini  c:\boot\stage1="GRUB"
Line 52: Line 52:
and you now have a grub boot loader on your XP system. to c:\boot.ini

A
nd you now have a grub boot loader on your XP system.

["Boot"] > BootLoader


GRUB is the ["GRand"] Unified Bootloader, a very powerful newish BootLoader that can be used to boot most ?OperatingSystems on the ["x86"] platform.

From LILO to GRUB

 apt-get install grub (for this you can use Synaptic too;see AptGet).
 grub-install /dev/hda (or /dev/hdb if you install it in your second HardDisc ). This installs the grub configuration files.
 update-grub (to create the configuration files for our system).

Automatical grub update after installing a new Kernel

 postinst_hook = /sbin/update-grub
 postrm_hook = /sbin/update-grub
 do_bootloader = no

See also:


["FAQ"]

Will GRUB allow me to hibernate Linux and activate another ?OperatingSystem (such as ["WindowsXP"]) that I hibernated earlier, i.e. a ?DualHibernate rather than a DualBoot?

Is there a way to install GRUB in the MasterBootRecord from DOS or ["WindowsXP"], i.e. a utility similar to rawrite.exe or fdisk.exe that write a GRUB MBR? What I want here is to install Linux without having a bootable floppy.

Answer by Mecki: GRUB uses several stages for loading, only stage 0 can reside in MBR GRUB will need at least a ["partition"] of its own for the remaining stages 1.5 and 2.0

Answer by RainerKulow: There is a win32 Version of GRUB, i used it to install linux from ["Windows2000"] , but i am not sure what exactly the source is ;) you can find a information on my wiki: [http://www.centerzone.ch/phpwiki/index.php/LinuxInstallMinimal ?CenterzoneWiki] or can download the exe at: [http://www.skyjammer.com/files/knoppix/ grubwin32]

Just unzip grubwin32 to c:\ then run c:\boot\grub\w32grub This would patch the necessary files(under XP, not linux). Then add :

 c:\boot\stage1="GRUB" 

to c:\boot.ini

And you now have a grub boot loader on your XP system.