0

I own an HP Pavilion 5 Notebook which came pre installed with Windows 8. I'm trying to install Ubuntu on my system via a LIVEUSB. But my system doesn't detect the LiveUSB during boot. My boot order is proper, with external USB in the first place, but the system just boots into Windows directly.

Also I observed that when I turn on Legacy mode, the USB is detected. But then I have to install Ubuntu in CSM mode instead of EFI, which causes boot problems later on.

Is there a way to detect my external boot options in UEFI as well? P.S. Secure Boot was disabled during the booting. The tool used for creating the LiveUSB was YUMI Multiboot installer available at pendrivelinux.com.

Neil
  • 103
  • 1
  • 6

1 Answers1

0

It's likely that YUMI is creating a USB drive that's not bootable in EFI mode. In my experience, the most reliable way to create a bootable Ubuntu USB drive is with dd, as in sudo dd if=imagefile.iso of=/dev/sdc (changing imagefile.iso and /dev/sdc as appropriate for your file and system). If you don't have a working Linux installation, there are Windows ports of dd, and other tools that do the same thing -- basically a raw copy of the file to the disk.

If that fails, I recommend you check your firmware for options called "fast boot," "quick startup," or the like. Such options work by skipping certain system initialization steps, which often renders the computer unable to see USB flash drives until after an OS has booted. Disabling such an option in the firmware may render the USB flash drive bootable again.

Rod Smith
  • 44,284
  • 7
  • 63
  • 105