I am running windows 8 natively and have installed Ubuntu 14 from their download page. I believe I have installed the 32bit version instead of the 64bit version, because it will not load the option to boot into Ubuntu at startup. I have to restart holding shift to get into an option to reboot a sata drive that has this version of ubuntu on it. What is the best course of action here? Uninstall Ubuntu? Upgrade somehow?
Asked
Active
Viewed 161 times
1 Answers
0
Either you can use boot-repair from an ubuntu live usb or easyBCD from Windows.
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo sed 's/trusty/saucy/g' -i /etc/apt/sources.list.d/yannubuntu-boot-repair-trusty.list
sudo apt-get update
sudo apt-get install -y boot-repair && (boot-repair &)

Adrien Horgnies
- 285
-
I have installed 64 bit ubuntu, but it has not fixed the issue. I went back into UEFI and changed boot order to legacy, so now it at least boots into Ubuntu first. I don't know what else to do to make it give me a choice of OS to boot into, but this is at least a work around. – Grace Apr 28 '14 at 19:31
-
I'm sorry to keep bumping this but I seem to have ruined windows 8 and cannot access the UEFI settings anymore. Is this fixable? – Grace Apr 28 '14 at 20:05
-
Make a bootable usb key with windows 8 repair (16Go at least I think) or use the installation CD to fix it. – Adrien Horgnies Apr 28 '14 at 20:33
-
I don't have a windows install disk. Windows recovery media was installed on a separate partition. – Grace Apr 28 '14 at 20:36
unetbootin
, use dd:sudo dd if=image.iso of=/dev/sdX bs=4M && sync
. Substitute for X depending on storage devices connected. Usually itsb
when you have just one hdd and one flash drive connected. Important - dont substitutea
forX
. It will wipe out your windwos installation. – Jay Aurabind Apr 28 '14 at 10:03fat32
partition where it can find.efi
files. – Jay Aurabind Apr 28 '14 at 10:10Additionally, unetbootin allowed me to burn the ubuntu installation in fat32.
– Grace Apr 28 '14 at 10:16