Stuck in GRUB Rescue Mode [duplicate]

I messed up my new laptop while trying to set up a dual-boot with Ubuntu and Windows 8.I did a whole bunch of stuff trying to get it to work and now when I try to boot I get stuck in GRUB's recovery mode with no errors.

My question is: Can I boot from Ubuntu on a USB drive to erase both Windows 8 and Ubuntu to just install Ubuntu? Will this get ride of the GRUB rescue mode problem.


Don't bother to run Ubuntu live CD. It's not difficult to repair GRUB from the rescue mode.

  1. Command: ls

    It will list all your drives and partitions, like:

    (hd0) (hd0,msdos2) (hd0,msdos1)
    
  2. If you don't know your Ubuntu boot partition, check them one by one:

    ls (hd0,msdos2)/
    ls (hd0,msdos1)/
    

    When you hit the right one, you'll get a line mentioning lost+found, more importantly boot, and so on.

  3. Assuming (hd0,msdos2) is the right partition:

    set prefix=(hd0,msdos2)/boot/grub
    set root=(hd0,msdos2)
    insmod normal
    normal
    
  4. Now you'll be able to boot into Ubuntu. Once you do, execute the following commands:

    sudo update-grub
    sudo grub-install /dev/sda
    

This is already answered here: How to reinstall Grub after burg and tons of other places on this forum.

You are able to boot the Ubuntu installer and erase all of your paritions, but you are also able to save you installs of Ubuntu and Windows but reinstalling GRUB. Once the Ubuntu installer boots, open a command line by pressing Ctlr+Alt+T then type sudo grub-install /dev/sda


Insert your Ubuntu CD, reboot your computer and set it to boot from CD in the BIOS and boot into a live session. You can also use a LiveUSB if you have created one in the past. Install and run

Boot-Repair

Click "Recommended Repair". Now reboot your system. The usual GRUB boot menu should appear. If it does not, hold Left Shift while booting. You will be able to choose between Ubuntu and Windows.

How to install Boot-Repair

sudo apt-get install boot-repair

OR

sudo grub-install

(grub install too)