How do I add password protection to GRUB?
First you will need to generate a strong password as follows: [root@kerndev ~]# /sbin/grub-md5-cryptPassword:Retype password:$1$BaV5k1$02kE6BCxzGRyByx.RWHEd1[root@kerndev ~]# For the headnode: Edit /etc/grub.conf password -md5 <hash> below the timeout line: [root@kerndev ~]# cat /etc/grub.confdefault 0timeout 8 password -md5 $1$BaV5k1$02kE6BCxzGRyByx.RWHEd1 … For the nodes: You will need to perform the change above in /cm/images/<software image>/etc/grub.conf as…