Turning Off Grub2 Automatically Configured

Not possible currently. Its automatic searching for the first match because EasyBCD doesn't have access to Linux filesystems from Windows.
 
You can do it manually. Just add a new NeoGrub entry and type this in:

Code:
root        (hd0,7)
kernel      /boot/grub/core.img

But change the (hd0,7) to whatever you want.
 
If you use for Grub2 entries
root (hd0,7)
kernel /boot/grub/core.img

What would you use for Grub entries
root (hd0,7)
kernel /boot/grub/xxxxx
 
Last edited:
How do you configure neogrub to boot grub distros



# NeoSmart NeoGrub Bootloader Configuration File
#
# This is the NeoGrub configuration file, and should be located at C:\NST\menu.lst
# Please see the EasyBCD Documentation for information on how to create/modify entries:
# EasyBCD Documentation Home - EasyBCD - NeoSmart Technologies Wiki
#This is our first entry
title Windows 7 Pro
root (hd0,0)
chainloader +1
#This is our second entry
title Ubuntu 10.04 Lucid Lynx
root (hd1,0)
kernel /boot/grub/core.img
#End Ubuntu entry
#This is our third entry
title Linux Mint 9.0 Isadora
root (hd1,1)
kernel /boot/grub/core.img
#End linuxmint entry
#This is our fourth entry
title Ultimate Edition 2.7
root (hd1,7)
kernel /boot/grub/core.img
#End ultimate entry
 
Last edited:
Back
Top