Adjunto Imagen de como lo tengo actualmente; solo quiero saber como agregar mi Ubuntu
Nota: Probe usando # os-prober , y solo me devuelve: /dev/sda1:Microsoft Windows XP Professional:Windows:chain
como si no estuviera Ubuntu. Lo unico que encontre y no veo como usarlo es: 40_custom <-- Para agregar entradas a mano cuando os-prober no encuentra algún SO intalado
de aqui: http://www.esdebian.org/wiki/instalar-grub2-debian
Utilizando el comando: cat /boot/grub/grub.cfg | grep "menuentry" | cut -d '"' -f 2
sale como resultado esto:
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class gnu-linux --class gnu --class os {
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
Microsoft Windows XP Professional
Ubuntu 10.04.3 LTS, kernel 2.6.32-33-generic (on /dev/sda5)
Ubuntu 10.04.3 LTS, kernel 2.6.32-33-generic (recovery mode) (on /dev/sda5)
Ubuntu 10.04.3 LTS, kernel 2.6.24-29-generic (on /dev/sda5)
Ubuntu 10.04.3 LTS, kernel 2.6.24-29-generic (recovery mode) (on /dev/sda5)
Ubuntu 10.04.3 LTS, memtest86+ (on /dev/sda5)
Mostrando así que Ubuntu existe.
Mi archivo burg.cfg esta asi:
Código PHP:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/burg-mkconfig using templates
# from /etc/burg.d and settings from /etc/default/burg
#
### BEGIN /etc/burg.d/00_header ###
set theme_name=burg
set gfxmode=640x480
if [ -s $prefix/burgenv ]; then
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
set saved_entry=${prev_saved_entry}
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
fi
}
function select_menu {
if menu_popup -t template_popup theme_menu ; then
free_config template_popup template_subitem menu class screen
load_config ${prefix}/themes/${theme_name}/theme ${prefix}/themes/custom/theme_${theme_name}
save_env theme_name
menu_refresh
fi
}
function toggle_fold {
if test -z $theme_fold ; then
set theme_fold=1
else
set theme_fold=
fi
save_env theme_fold
menu_refresh
}
function select_resolution {
if menu_popup -t template_popup resolution_menu ; then
menu_reload_mode
save_env gfxmode
fi
}
if test -f ${prefix}/themes/${theme_name}/theme ; then
insmod coreui
menu_region.text
load_string '+theme_menu { -arabic_and_freedom { command="set theme_name=arabic_and_freedom" }}'
load_string '+theme_menu { -black_and_white { command="set theme_name=black_and_white" }}'
load_string '+theme_menu { -burg { command="set theme_name=burg" }}'
load_string '+theme_menu { -chiva { command="set theme_name=chiva" }}'
load_string '+theme_menu { -coffee { command="set theme_name=coffee" }}'
load_string '+theme_menu { -minimum { command="set theme_name=minimum" }}'
load_string '+theme_menu { -proto { command="set theme_name=proto" }}'
load_string '+theme_menu { -radiance { command="set theme_name=radiance" }}'
load_string '+theme_menu { -radiancetext { command="set theme_name=radiancetext" }}'
load_string '+theme_menu { -refit { command="set theme_name=refit" }}'
load_string '+theme_menu { -sora { command="set theme_name=sora" }}'
load_string '+theme_menu { -sora_clean { command="set theme_name=sora_clean" }}'
load_string '+theme_menu { -sora_extended { command="set theme_name=sora_extended" }}'
load_string '+theme_menu { -ubuntu { command="set theme_name=ubuntu" }}'
load_string '+theme_menu { -ubuntu2 { command="set theme_name=ubuntu2" }}'
load_string '+theme_menu { -winter { command="set theme_name=winter" }}'
load_config ${prefix}/themes/conf.d/10_hotkey
load_config ${prefix}/themes/${theme_name}/theme ${prefix}/themes/custom/theme_${theme_name}
insmod vbe
insmod png
insmod jpeg
set gfxfont="Unifont Regular 16"
menu_region.gfx
vmenu resolution_menu
controller.ext
fi
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set b6a3acdf-0d6b-4c69-90d2-74f3b78b568a
set locale_dir=($root)/boot/burg/locale
set lang=es
insmod gettext
set timeout=5
### END /etc/burg.d/00_header ###
### BEGIN /etc/burg.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class gnu-linux --class gnu --class os --group group_main {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set b6a3acdf-0d6b-4c69-90d2-74f3b78b568a
echo 'Loading Linux 2.6.32-5-686 ...'
linux /boot/vmlinuz-2.6.32-5-686 root=UUID=b6a3acdf-0d6b-4c69-90d2-74f3b78b568a ro quiet splash quiet splash
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-5-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --group group_main {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set b6a3acdf-0d6b-4c69-90d2-74f3b78b568a
echo 'Loading Linux 2.6.32-5-686 ...'
linux /boot/vmlinuz-2.6.32-5-686 root=UUID=b6a3acdf-0d6b-4c69-90d2-74f3b78b568a ro single quiet splash
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-5-686
}
### END /etc/burg.d/10_linux ###
### BEGIN /etc/burg.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" --class windows --class os {
insmod ntfs
set root='(hd0,1)'
search --no-floppy --fs-uuid --set d41cb6e11cb6be34
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/burg.d/30_os-prober ###
### BEGIN /etc/burg.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/burg.d/40_custom ###