Reading time: < 1 minute
No heu tingut mai la necessitat de protegir una de les opcions de botat del grub amb un password, doncs aquĆ teniu un exemple de com fer-ho:
grub> md5crypt Password: ********* Encrypted: $1$sEOFN1$dalP1fzlFCHD4saxlnNzM/ grub>
Com queda el menu.lst:
# Start GRUB global section #timeout 30 color light-gray/blue black/light-gray # End GRUB global section
# Other bootable partition config begins title Forbidden (on /dev/hda1) rootnoverify (hd0,0) makeactive chainloader +1 # Other bootable partition config ends
# Linux bootable partition config begins title Ubuntu Breezy (on /dev/hda2) root (hd0,1) kernel /boot/vmlinuz-2.6.12-9-386 root=/dev/hda2 ro vga=790 initrd /boot/initrd.img-2.6.12-9-386 password --md5 $1$sEOFN1$dalP1fzlFCHD4saxlnNzM/ # Linux bootable partition config ends