WinXP und Suse auf einem PC. Wie kann ich die einstellungen ändern das als erstes Windows und suse alszweites startet?
Linux 15.070 Themen, 107.540 Beiträge
Du mußt nur in der Konfigurationsdatei /boot/grub/menu.lst die Nummer des entsprechenden Menüeintrags der Variable default übergeben.
Oder du setzt die Variable default auf saved.
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not change this entry to 'saved' or your
# array will desync and will not let you boot your system.
default saved
Dann wird immer der zuletzt ausgewählte Menüeintrag wieder aktiviert, wenn savedefault mit angegeben wurde:
title Debian GNU/Linux, kernel 2.6.18-17-K6
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-17-K6 root=/dev/hda1 ro vga=771
savedefault
PS: Ließ mal das Handbuch zu grub:
http://www.gnu.org/software/grub/manual/
