"This computer currently has no detected operating systems."- Ubuntu 14.04 install Windows 8.1 [duplicate]
Solution 1:
Below is a link to a resource that walks you through the dual-boot install process for Ubuntu and Windows 8.1. It outlines the steps of the installation as follows:
- Back up Windows
- Create a bootable Ubuntu USB disk
- Shrink the established Windows partition
- Turn off(disable) fast boot
- Turn off(disable) secure boot
- Install Ubuntu from boot-disk
- Boot repair
- Fix the bootloader
- Reboot into Ubuntu
- Reboot into Windows
The steps I have listed are a concise version of the posted link. There are detailed instructions between listed steps, be careful to read and follow each; failure to do so could result in data loss, corruption, or system failure.
http://www.everydaylinuxuser.com/2014/05/install-ubuntu-1404-alongside-windows.html
Solution 2:
I ran into a similar issue when attempting to dual boot Ubuntu 18.04 on a machine running Windows 10 with legacy BIOS. During the Ubuntu install process, the installer did not recognize the Windows 10 OS.
I ran diskmgmt.exe
in Windows and saw that the disk had an MBR partition:
MBR Partition
Previously, I had Windows 7 installed and got upgraded to Windows 10. I think this is how I ended up getting Windows 10 with an MBR partition. From my understanding, Windows 10 needs to have a GPT partition in order to have UEFI BIOS, otherwise you'll end up with legacy BIOS.
This seems to cause the error during the install process. Ubuntu 18.04 has a UEFI BIOS; Windows 10 will also need to have a UEFI BIOS, or it won't be recognized.
I ran the mbr2gpt
tool that comes installed with Windows 10 Creator's Edition:
https://www.youtube.com/watch?v=hfJep4hmg9o
This procedure will allow you to change the Windows partition from MBR to GPT. You'll need to get a WindowsPE USB to run this tool:
https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/boot-to-winpe
After changing the partition, you'll be able to switch to UEFI mode in your BIOS. Once the BIOS was set to UEFI, the Ubuntu installer recognized the Windows 10 OS and I was able to dual boot both systems.