Showing posts with label GRUB. Show all posts
Showing posts with label GRUB. Show all posts

07 March 2008

How to Password Protect GRUB Boot loader

The main reason to password protect the GRUB boot loder is to prevent access to single user mode — If attackers can boot the system into single user mode, they are logged in automatically as root without being prompted for the root password.

To do this, open a shell prompt, log in as root, and type:

/sbin/grub-md5-crypt


When prompted, type the GRUB password and press Enter. This returns an MD5 hash of the password.

Next, edit the GRUB configuration file /boot/grub/grub.conf. Open the file and below the timeout line in the main section of the document, add the following line:

password --md5


Replace with the value returned by /sbin/grub-md5-crypt

16 November 2007

INTRO: SPLASH SCREEN

Splash screen is a term used to describe an image that appears while a computer program/operating system is loading.Splash screens used for Operating systems will usually cover entire screen whereas for applications a rectangle near the center.

GRUB SPLASHSCREEN IN RHEL 5