top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain briefly the procedure for re-installing Grub in Linux ?

+3 votes
692 views
Explain briefly the procedure for re-installing Grub in Linux ?
posted Sep 29, 2015 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

1) Download Ubuntu Installation / Live cd

2) Boot from Ubuntu Installation / Live cd - usb, burned cd etc.

3) During boot select "Try Ubuntu" , Don't select install !

4) Mount your Linux root partitio
sudo mount /dev/sda6 /mnt ( Assuming /dev/sda6 is the Linux root partition)

5) Install / reinstall grub
$ sudo grub-install --root-directory=/mnt/ /dev/sda ( where /dev/sda is your primary disk)
Installation finished. No error reported.

6) Reboot your system, remove bootable CD and we should have the boot menu ready when the system starts.

Note : There would be slight difference when using with other distros.

answer Sep 30, 2015 by Manikandan J
Similar Questions
0 votes

I wrote and compiled c code. I am using command "time a.out" . Every time output comes different.

$time ./a.out

real 0m0.002s
user 0m0.001s
sys 0m0.001s
-bash-3.2$ time ./a.out

real 0m0.001s
user 0m0.001s
sys 0m0.001s
-bash-3.2$ time ./a.out

real 0m0.001s
user 0m0.000s
sys 0m0.001s

Can someone please explain why these different different output come ?

+1 vote

I am trying to create a bootable img file for use as a virtual box disk. How can I install grub to make the img file bootable?

...