Linux – Can’t boot live USB of Linux Mint DE on the UEFI PC

dual-bootlinux-mintlive-usbuefi

I used the Universal USB Installer application to copy the latest ISO image from Linux Mint DE (64 bits) and install it on my PC, however when I try to reboot it I have the option to choose my connected USB device as "UEFI: … USB …" but when I choose it it doesn't do anything, the screen goes black for a couple seconds then loads windows 7 normally.

Should I do something before trying to boot into the USB device? This is my first time trying to install a linux distro on a UEFI-based PC I never had a problem like this before. Thanks in advance.

Best Answer

I've had issues where unetbootin didn't set the correct volume label; some distributions expect to be able to mount the volume by volume label.

I've gotten around this by using the dd utility to copy the entire filesystem from the .iso to the USB drive.

For example, if the USB is at /dev/sdc and your Linux Mint installation image is at /home/me/mint.iso:

dd bs=4m if=/home/me/mint.iso of=/dev/sdc

The of argument tells it the output file to write to, so make sure you point it at the right drive - and make sure you point it at the volume itself, not a partition like /dev/sdc1.

I've personally booted from Linux isos on EFI systems using this method and it's been fine.

Related Question