How to regenerate a GRUB configuration on Linux.

Assuming your grub is installed correctly you need to re-generate its configuration. In a terminal, the steps to do this are as follows. You need to mount the partition in a chroot. This can be done quickly when using a Linux Mint live DVD. Escalate your shell to root because…

Read More

Re-install the GRUB 2 bootloader in Debian easily.

To re-install the grub2 bootloader in Debian 6.0 , you need to be chrooted into the filesystem, this can be done from the installation DVD or an Ubuntu Live CD. Once you are sitting at a root prompt on the Debian system, you need to type: debian ~ # grub-install…

Read More

How to update the grub menu manually on Kali Linux.

The update-grub command will update the grub menu on Kali Linux. root@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-3.12-kali1-amd64 Found initrd image: /boot/initrd.img-3.12-kali1-amd64 Found memtest86+ image: /boot/memtest86+.bin Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin No volume groups found doneroot@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png…

Read More

Installing GNU Grub 2.00 on Linux Mint 13 Maya.

The new GNU Grub 2.00 has just been released with all new features and here is how to install it. Firstly, download the tarball from this mailing list post. https://lists.gnu.org/archive/html/grub-devel/2012-06/msg00093.html. After unpacking the tarball, cd into the folder and type: ./configure –prefix=/usr./configure –prefix=/usr to run the configure script. You will…

Read More