如果在/ etc / default / grub中设置了DEFAULT = saved,则可以通过运行sudo grub-set-default来保存操作系统。如果还在/ etc / default / grub中设置了GRUB_SAVEDEFAULT = true,则也可以保存它。在这种情况下,默认操作系统将保留,直到从GRUB 2菜单中手动选择新的操作系统或执行grub-set-default命令为止。
我把线DEFAULT=saved
插进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
”。