1

I installed 14.04 with default settings and when I turn off the laptop and turn it back on, Ubuntu refuses to boot up, instead asks me to insert a Boot Device.

Here's the paste text from the boot repair: http://paste.ubuntu.com/7464628/

The machine is Toshiba C55-a-1m7.

How do I fix this? Thanks!

1 Answers1

2

Solution: first post from this thread: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=708430

Use a live CD and replace "debian" with "ubuntu"

mkdir /target
mount /dev/sda2 /target
mount /dev/sda1 /target/boot/efi
mount --bind /sys /target/sys
mount --bind /proc /target/proc
mount --bind /dev /target/dev
chroot /target

cd /boot/efi/EFI
mkdir boot
cp debian/grubx64.efi boot/bootx64.efi

I also had to add sudo in front of all commands up to "chroot".

  • Thanks for directing us to this. I'm not sure if it's required, but I also see instructions about unmounting those directories before rebooting. https://wiki.debian.org/GrubEFIReinstall – Jacob Wan Feb 20 '15 at 05:04