So I've read newer computers who ship with windows 8 and 10 are using UEFI. I want to dual boot Windows 10 and Ubuntu, I'm using a computer with Windows 10 installed but it originally had Windows 7, is it probably running UEFI? How do I find out if my OS is installed in UEFI mode?
2 Answers
I got a laptop which has pre-installed Windows 8.1 and I am now using Ubuntu 14.04 with Windows 8.1 in dual boot mode.
If you are going to install Ubuntu 14.04 , I will say it is prefereable to install Ubuntu in (U)EFI mode because of problems specified in this thread.
You can find out which Boot mode you are using from these articles.
If you still have doubt and open BIOS and find out which entries are listed in (U)EFI mode and legacy mode.
UEFI mode:

- 160
Yes, you should install in UEFI mode because of many advantages of it.
- Better security by helping to protect the pre-startup—or pre-boot—process against bootkit attacks. UEFI supports Secure Boot, a useful security feature that prevents malware from hijacking Windows or another installed operating system. Windows supports secure boot, but Linux machines are on their way to support secure boot too
- Faster startup times and resuming from hibernation.
- Support for drives larger than 2.2 terabytes (TB).
First and most important for a desktop user is UEFI provides with GPT partition table which is better than older MBR. It allows you to make any practically any number of partitions where primary
or extended
.
MBR works with disks up to 2 TB in size, but it can’t handle disks with more than 2 TB of space. MBR also only supports up to four primary partitions — if you want more, you have to make one of your primary partitions an “extended partition” and create logical partitions inside it. This is a silly little hack and shouldn’t be necessary.
- Support for modern, 64-bit firmware device drivers that the system can use to address more than 17.2 billion gigabytes (GB) of memory during startup.

- 7,982
- 9
- 55
- 94
fdisk
will complain about and ask you to usegdisk
instead. This may provide some clues – Elder Geek Oct 17 '15 at 17:43sudo parted -l
Most Windows 7 systems also used all 4 primary partition in MBR. http://askubuntu.com/questions/149821/my-laptop-already-has-4-primary-partitions-how-can-i-install-ubuntu – oldfred Oct 17 '15 at 18:25