Cita:
Iniciado por andinistas (...) yo ahora tengo el ubunto con el cargador grub, pero por defecto está el ubunto, me gustaría que estuviese windows, pero no sé como configurar...
Como root, abre el archivo /boot/grub/grub.conf (si no existe, prueba con el archivo /boot/grub/menu.lst). Tendrás algo parecido a esto:
Cita: # grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,5)
# kernel /boot/vmlinuz-version ro root=/dev/hda6
# initrd /boot/initrd-version.img
#boot=/dev/hda
default=0
timeout=30
splashimage=(hd0,5)/boot/grub/splash.xpm.gz
title FEDORA CORE 3 + nVidia (2.6.11-1.35_FC3)
root (hd0,5)
kernel /boot/vmlinuz-2.6.11-1.35_FC3 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.11-1.35_FC3.img
title FC 3 + nVidia (2.6.11-1.27_FC3)
root (hd0,5)
kernel /boot/vmlinuz-2.6.11-1.27_FC3 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.11-1.27_FC3.img
title MANDRIVA 2005 LE
rootnoverify (hd0,4)
kernel /boot/vmlinuz-2.6.11-6mdk ro root=/dev/hda5 rhgb quiet
initrd /boot/initrd.img
append="quiet devfs=mount acpi=off"
read-only
Ahí se listan los sistemas reconocidos por GRUB (fíjate que en mi caso aparecen tres), y mediante "default=0" se establece que el que arranque por defecto será el primero de la lista (0 es el primero, 1 el segundo, 2 el tercero...). Cambiando ese número cambiarás el sistema que se arrancará por defecto.
Post-edición: Vaya, veo que
ya te habían respondido. Por favor, no repitáis las preguntas.