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.

- 145

- 141
4 Answers
Don't bother to run Ubuntu live CD. It's not difficult to repair GRUB from the rescue mode.
Command:
ls
It will list all your drives and partitions, like:
(hd0) (hd0,msdos2) (hd0,msdos1)
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 importantlyboot
, and so on.Assuming
(hd0,msdos2)
is the right partition:set prefix=(hd0,msdos2)/boot/grub set root=(hd0,msdos2) insmod normal normal
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

- 145
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)

- 4,951
in rescue mode you need to:
boot your pc from a ubuntu cd
type in a terminal:
grub-install /dev/sda update-grub

- 36,264
- 56
- 94
- 147

- 1
- 2
insmod normal
I get:symbol \
grub_calloc` not found.` – foba May 09 '21 at 20:03/boot
partition, you'll need to set the prefix to the/grub
directory on that partition rather than a/boot/grub
anywhere. Also, if you don't know where and what grub was installed before, an alternative to thegrub-install
step is to check what package you have installed (dodpkg -l | grep grub
and look for theii
one ofgrub-pc
,grub-efi
or whatever else other flavour your platform) and just reinstall that package e.g.sudo apt install --reinstall grub-pc
– rakslice May 10 '21 at 00:08set prefix=(hd0,2)/boot/grub
beset prefix=(hd0,msdos2)/boot/grub
(and also corresponding set=root cnd) instead? – Timofey Jan 08 '22 at 22:42