blob: bf56be0d2ca7526484d18e8cdafab97a3edf6e64 (
plain)
1 #
2 # /boot/grub/grub.cfg - sample grub2 configuration file
3 #
4
5 # This is only a sample, you will need to check/edit the root value
6 # or UUID used for your configuration.
7
8 # See the official grub documentation for more information.
9
10 # Set menu colors
11 set menu_color_normal=white/blue
12 set menu_color_highlight=light-blue/white
13
14 # Set menu display time
15 set timeout=10
16
17 # Set the default boot entry (first is 0)
18 set default=0
19
20 # Set the root variable - grub2 uses this to find files if the
21 # root device is not specified in the entry itself.
22 # It can be set explicitly like so:
23
24 #set root='(hd0,msdos2)'
25
26 # Or it can be set using grub2's builtin search feature like so:
27
28 #search --no-floppy --fs-uuid --set root xxxxxxxx-yyyy-zzzz-aaaa-bbbbbbbbbbbb
29
30 # The string xxxxxxxx-yyyy-zzzz-aaaa-bbbbbbbbbbbb should be replaced with
31 # the proper UUID for the root device. It can be found using 'blkid' from
32 # util-linux.
33
34 # Boot entries:
35
36 # CRUX
37 menuentry "CRUX 2.8 (3.6.3)" {
38 linux /boot/vmlinuz-3.6.3 root=/dev/sda2
39 }
40
41 menuentry "CRUX 2.8 (3.6.3) single-user rescue" {
42 linux /boot/vmlinuz-3.6.3 root=/dev/sda2 single
43 }
44
45 # Windows 7
46 menuentry "Windows 7" {
47 set root='(hd0,msdos1)'
48 chainloader +1
49 }
|