grubのメニュ順序を変更する
Windowsの起動をデフォルトにするためメニュの順序を変更
/etc/default/grubで起動メニュ選択のデフォルトも変更可能の様だが、カーネルの数でメニュが追加される仕組みになっていたのでメニュ順序を変更する手段を選択(Windowsも存在する分メニュが追加される仕組みにはなっている)
# cd /etc/grub.d
# ls -l
-rwxr-xr-x 1 root root 6433 2011-09-19 12:12 00_header
-rwxr-xr-x 1 root root 5343 2011-09-19 11:55 05_debian_theme
-rwxr-xr-x 1 root root 4284 2011-09-19 12:12 10_linux
-rwxr-xr-x 1 root root 4925 2011-09-19 12:12 20_linux_xen
-rwxr-xr-x 1 root root 5789 2011-09-19 12:12 30_os-prober
-rwxr-xr-x 1 root root 214 2011-09-19 12:12 40_custom
-rwxr-xr-x 1 root root 95 2011-09-19 12:12 41_custom
# mv 10_linux 15_linux
# mv 30_os-prober 0_os-prober
# ls -l
-rwxr-xr-x 1 root root 6433 2011-09-19 12:12 00_header
-rwxr-xr-x 1 root root 5343 2011-09-19 11:55 05_debian_theme
-rwxr-xr-x 1 root root 5789 2011-09-19 12:12 10_os-prober
-rwxr-xr-x 1 root root 4284 2011-09-19 12:12 15_linux
-rwxr-xr-x 1 root root 4925 2011-09-19 12:12 20_linux_xen
-rwxr-xr-x 1 root root 214 2011-09-19 12:12 40_custom
-rwxr-xr-x 1 root root 95 2011-09-19 12:12 41_custom
-rw-r--r-- 1 root root 483 2011-09-19 12:12 README
# update-grub
・・・
#
安易であるが変更できた(正式なやり方は不明)