如何设置 grub 密码?

如何设置 grub 密码?

如何在 Debian Squeeze 中设置 grub 密码?如何在 Squeeze 中配置 grup 条目,我看到了一些条目/etc/默认/grub

答案1

不要再碰menu.lst了,因为现在已经是 Grub2 了。

您的问题的答案可以在第 5 章中找到:
http://ubuntuforums.org/showthread.php?t=1369019

Grub2 具有不同的交互方式并通过脚本进行配置,这些脚本位于/etc/grub.d/。在里面你会发现一些很棒的例子)更改脚本后,只需输入update-grub并重新启动。

答案2

grub 配置位于/boot/grub/menu.lst,并且已经包含有关如何设置密码的文档:

## password ['--md5'] passwd
# If used in the first section of a menu file, disable all interactive editing
# control (menu entry editor and command-line)  and entries protected by the
# command 'lock'
# e.g. password topsecret
#      password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
# password topsecret

相关内容