How to make Windows Boot Manager automatically open GNU GRUB and then with GNU GRUB automatically boot Linux Ubuntu 11.04. Please answer detailed with the proceedings. Thank you.

link|improve this question
This is not a programming question. Read the FAQ stackoverflow.com/faq – marto Jul 14 '11 at 13:27
feedback

migrated from stackoverflow.com Jul 14 '11 at 13:38

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 0 down vote accepted

You need to edit GRUB's config file:

/boot/grub/grub.conf

There, you put your linux partition as default.

default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux AS (2.6.8-1.523)
    root (hd0,0)
    kernel /vmlinuz-2.6.8-1.523 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
    initrd /initrd-2.6.8-1.523.img

# section to load Windows 
title Windows
    rootnoverify (hd0,0)
    chainloader +1

default in this example is 0, the first entry of your GRUB menu.

link|improve this answer
Are you sure, that's wright patrition? – user90277 Aug 8 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.