To add a password for use with grub, first you must generate an md5 password hash using the grub-md5-crypt utility: grub-md5-crypt
The command will ask you to enter a password and offer a resulting hash value as shown below:
Password: (enter new password)
Retype password: (repeat password)
$1$s3YiK$M3lxAbqA6JLm2FbDWnClQ0
Add the resulting hash value to the file /etc/grub/menu.lst in the following format:
password --md5 $1$s3YiK$M3lxAbqA6JLm2FbDWnClQ0
To require use of the password for entering single user mode, change the value of the lockalternative variable in the file /boot/grub/menu.lst to true, as shown in the following example.
# lockalternative=true
2 comments:
Thanks this makes me feel loads more at ease having the recovery option password protected in ubuntu!
Just a note to other Ubuntu users however, the directory for the grub menu.lst file is /boot/grub/menu.lst
Everything else is perfect!
Thanks!
thanks a lot
Post a Comment