Magellan Linux

Annotation of /trunk/grub/grub.confd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1683 - (hide annotations) (download)
Sun Mar 4 01:39:47 2012 UTC (12 years, 1 month ago) by niro
File size: 1992 byte(s)
-suggest noop for virtual environments too
1 niro 1404 GRUB_DEFAULT=0
2     GRUB_TIMEOUT=5
3 niro 1682
4     # Default command line
5 niro 1404 GRUB_CMDLINE_LINUX_DEFAULT="quiet"
6 niro 1682
7     # Systems with Flash memory like SSDs or intelligent HBAs such as Serial-Attached-SCSI (SAS)
8     # should use the noop scheduler for best performance. The scheduler assumes I/O performance
9     # optimization will be handled by the disk itself or the Host-Bus-Adapter (HBA).
10 niro 1683 # Guests within virtual environments like VirtualBox should use this scheduler too.
11 niro 1682 #GRUB_CMDLINE_LINUX_DEFAULT="elevator=noop"
12    
13     # Server should use the deadline scheduler for better database perfomance
14     #GRUB_CMDLINE_LINUX_DEFAULT="elevator=deadline"
15 niro 1404 GRUB_CMDLINE_LINUX=""
16    
17     # Preload both GPT and MBR modules so that they are not missed
18     GRUB_PRELOAD_MODULES="part_gpt part_msdos"
19    
20     # Uncomment to enable Hidden Menu, and optionally hide the timeout count
21     #GRUB_HIDDEN_TIMEOUT=5
22     #GRUB_HIDDEN_TIMEOUT_QUIET=true
23    
24     # Uncomment to use basic console
25     GRUB_TERMINAL_INPUT=console
26    
27     # Uncomment to disable graphical terminal
28     #GRUB_TERMINAL_OUTPUT=console
29    
30     # The resolution used on graphical terminal
31     # note that you can use only modes which your graphic card supports via VBE
32     # you can see them in real GRUB with the command `vbeinfo'
33     GRUB_GFXMODE=auto
34    
35     # Uncomment to allow the kernel use the same resolution used by grub
36     GRUB_GFXPAYLOAD_LINUX=keep
37    
38     # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
39     # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
40     #GRUB_DISABLE_LINUX_UUID=true
41    
42     # Uncomment to disable generation of recovery mode menu entries
43     GRUB_DISABLE_RECOVERY=true
44    
45     # Uncomment and set to the desired menu colors. Used by normal and wallpaper
46     # modes only. Entries specified as foreground/background.
47     #GRUB_COLOR_NORMAL="light-blue/black"
48     #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
49    
50     # Uncomment one of them for the gfx desired, a image background or a gfxtheme
51     #GRUB_BACKGROUND="/path/to/wallpaper"
52     #GRUB_THEME="/path/to/gfxtheme"
53    
54     # Uncomment to get a beep at GRUB start
55     #GRUB_INIT_TUNE="480 440 1"