what GRUB stands for?
GRand Unified Boot Loader
In Grub menu, what can we edit by pressing e? will these changes be permanent?
You can edit the commands before booting this allows you to change the hard drive you’re booting from, the kernel and the initrd. These changes will not be adopted permanently.
what file contains the GRUB configuration?
/boot/grub/grub.conf
What are the three parameters of grub title menu?
vmlinuz
kernel file
if you want to install GRUB on /dev/sdb, what command would you run?
grub-install /dev/sdb or grub-install /dev/hd1
grub2
/boot/grub2
It has:
where the grub2 scripts located?
/etc/grub2.d/
How do you make changes to grub2 configurations?
Edit files in /etc/grub.d or edit /etc/default/grub
How would you regenerate the GRUB2 menu to include any changes to scripts you may have made. What should you always do before running this command?
as super user: grub-mkconfig > /boot/grub2/grub.cfg
before doing this you should always backup the grub.cfg file using the cp command