Estrutura do arquivo de configuração
O arquivo de configuração da interface do menu GRUB é /boot/grub/grub.conf
. Os comandos para definir as preferências globais para a interface do menu são colocados na parte superior do arquivo, seguidos por sub-rotinas para cada kernel operacional ou sistema operacional listado no menu.
O seguinte é um arquivo de configuração de menu GRUB muito básico projetado para inicializar o Ubuntu Linux ou outro (centos legacy grub):
edit this file from centos terminal /boot/grub/menu.lst and to find about which (hd*,0) echo this file /boot/grub/device.map if this dont work then lookup for locating grub2(ubuntu 14.04) from grub-legacy(centos-6.*)
default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
# section to load Linux
#your current running os i.e. centos v6.7 running grub-legacy
title CentOS 6.7 Linux (---1.ent)
root (hd0,0)
kernel /vmlinuz-2.4.21-1 ro root=/dev/sda2
initrd /initrd-2.4.21-1.img
title Ubuntu
root (hd0,2)
# replace ? with filename of Ubuntu kernel image
kernel /? root=/dev/sda3