Magellan Linux

Annotation of /trunk/grub/grub.confd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1682 - (hide annotations) (download)
Sun Mar 4 00:53:02 2012 UTC (12 years, 2 months ago) by niro
File size: 1908 byte(s)
-added some hints about the linux schedulers and help the user to choose the right one
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     #GRUB_CMDLINE_LINUX_DEFAULT="elevator=noop"
11    
12     # Server should use the deadline scheduler for better database perfomance
13     #GRUB_CMDLINE_LINUX_DEFAULT="elevator=deadline"
14 niro 1404 GRUB_CMDLINE_LINUX=""
15    
16     # Preload both GPT and MBR modules so that they are not missed
17     GRUB_PRELOAD_MODULES="part_gpt part_msdos"
18    
19     # Uncomment to enable Hidden Menu, and optionally hide the timeout count
20     #GRUB_HIDDEN_TIMEOUT=5
21     #GRUB_HIDDEN_TIMEOUT_QUIET=true
22    
23     # Uncomment to use basic console
24     GRUB_TERMINAL_INPUT=console
25    
26     # Uncomment to disable graphical terminal
27     #GRUB_TERMINAL_OUTPUT=console
28    
29     # The resolution used on graphical terminal
30     # note that you can use only modes which your graphic card supports via VBE
31     # you can see them in real GRUB with the command `vbeinfo'
32     GRUB_GFXMODE=auto
33    
34     # Uncomment to allow the kernel use the same resolution used by grub
35     GRUB_GFXPAYLOAD_LINUX=keep
36    
37     # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
38     # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
39     #GRUB_DISABLE_LINUX_UUID=true
40    
41     # Uncomment to disable generation of recovery mode menu entries
42     GRUB_DISABLE_RECOVERY=true
43    
44     # Uncomment and set to the desired menu colors. Used by normal and wallpaper
45     # modes only. Entries specified as foreground/background.
46     #GRUB_COLOR_NORMAL="light-blue/black"
47     #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
48    
49     # Uncomment one of them for the gfx desired, a image background or a gfxtheme
50     #GRUB_BACKGROUND="/path/to/wallpaper"
51     #GRUB_THEME="/path/to/gfxtheme"
52    
53     # Uncomment to get a beep at GRUB start
54     #GRUB_INIT_TUNE="480 440 1"