grub2 启动顺序

debian 6.04默认装的是grub2,而grub2是通过/etc/grub.d/目录下的文件顺序来决定启动项顺序的
我先看看下面的东东。
$cd /etc/grub.d 
$ls -l 
 
-rwxr-xr-x 1 root  root  3296 2009-10-24 08:44 00_header 
-rwxr-xr-x 1 root  root  1154 2009-10-24 08:31 05_debian_theme
-rwxr-xr-x 1 root  root  3778 2009-10-24 08:44 10_linux 
-rwxr-xr-x 1 root  root   772 2009-10-24 00:11 20_memtest86+ 
-rwxr-xr-x1 shawn shawn 5467 2010-04-17 23:52 30_os-prober 
-rwxr-xr-x 1 root  root   214 2009-10-24 08:44 40_custom 
-rw-r–r– 1 root  root   483 2009-10-24 08:44 README 
 
我们可以通过新建或改变文件的顺序来配置gurb2的启动顺序。 
我们只要把30_os-prober的顺序设置到10_linux之前就可以让 windows的选项在linux之前。 
把30_os-prober复制一份并且重命名为09_os-prober。 
然后去掉30_os-prober的可执行权限。 (chmod a-x 30_os-prober)
执行update-grub,DONE。
以上是对debain 6 的设置,其他的使用grub2的可能需要做相应的修改,请自己动手试试吧。

==============================================================

网络上亦有人使用如下方式:(我没有测试过)

修改grub2默认启动顺序

vi /etc/default/grub

把"GRUB_DEFAULT=0"里面的数字0改为你想让他默认启动的os,数字从0开始由屏幕上第一个os往下数。

update-grub

修改完后存盘退出,一定要运行这个命令。


你可能感兴趣的:(grub2 启动顺序)