Grub2-コミュニティUbuntuドキュメントには次のように書かれています:
DEFAULT = savedが/ etc / default / grubで設定されている場合、OSの保存はsudo grub-set-defaultを実行することで実現できます。GRUB_SAVEDEFAULT = trueが/ etc / default / grubでも設定されている場合にも保存されます。この場合、デフォルトのOSは、GRUB 2メニューから新しいOSが手動で選択されるか、grub-set-defaultコマンドが実行されるまで残ります。
行をDEFAULT=saved
AND GRUB_SAVEDEFAULT=true
で挿入し/etc/default/grub
て実行しましたsudo grub-set-default
。出力は次のとおりです。
$ sudo grub-set-default
entry not specified.
Usage: grub-set-default [OPTION] entry
Set the default boot entry for GRUB.
-h, --help print this message and exit
-v, --version print the version information and exit
--boot-directory=DIR expect GRUB images under the directory DIR/grub
instead of the /boot/grub directory
ENTRY is a number or a menu item title.
Report bugs to <bug-grub@gnu.org>.
ドキュメントに正しく従っていませんか?これを行う正しい方法は何ですか?
sudo update-grub
" 実行するのが最も良いです。