0

I downloaded the iso image from http://releases.ubuntu.com/14.04/ and verified the checksums.

Failed attempts to resolve the problem:

  • disabling secure boot
  • disabling uefi boot altogether
  • disabling quick boot
  • using the OEM install option (in my desperation I thought this might help...)

For the installation I use a 100% free hard drive on which I create a GPT partition table with GParted. The EFI partition is formatted with FAT32 and I also enabled the boot flag with GParted.

What could I possibly be doing wrong? Why is this so difficult?


Are you reaching the bootloader? - No. My Thinkpad instead starts the BIOS boot menu where I can select where to boot from or enter the BIOS settings. When I select "ubuntu" in this menu nothing happens.

Can you plug in an usb key, boot in the live distro and check with gparted of fdisk the state of the drive you used to install the OS? - I can boot the the USB without any problems, even with secure boot enabled. I did a check with the LIVE USB from within the first menu that pops up once the install USB boots (it's the option at the very bottom). The result was that the installation is fine.

Eli Steiner
  • 1
  • 1
  • 3

3 Answers3

0

Could you boot to the live system after the first unsuccessful boot after the installation and run the following commands in a terminal:

sudo -s
mount /dev/mapper/ubuntu--vg-root /mnt
mount /dev/sda2 /mnt/boot
mount /dev/sda1 /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do mount -B $i /mnt$i; done
chroot /mnt
grub-install /dev/sda
update-grub

These instructions are mostly taken from https://help.ubuntu.com/community/Grub2/Installing#via_ChRoot

This method of installation uses the chroot command to gain access to the broken system's files. Once the chroot command is issued, the LiveCD treats the broken system's / as its own. Commands run in a chroot environment will affect the broken systems filesystems and not those of the LiveCD.

mgor
  • 1,231
0

This shows adding nomodeset for both BIOS and grub screen after install. UEFI also uses grub screen so look at that which is further down. You use e for edit on grub menu, scroll to linux line and replace quiet splash.

My computer boots to a black screen, what options do I have to fix it?

But with Intel you may need one of these settings. Add just like above shows adding nomodeset. I prefer to replace quiet splash as then you see boot process. But lots of line scroll by pretty fast. Older Intel video card:

i915.modeset=1 or i915.modeset=0

newer:

i915.i915_enable_rc6=1

even newer still which may be yours: Force Intel Video mode as boot parameter in grub menu - Must change to your screen size, not 1280x1024

video=1280x1024-24@60

and if that doesn't work you can try

video=VGA-1:1280x1024-24@60

oldfred
  • 12,583
0

This update is not very enlightening - but it's what has worked so I want to post this in case this is helpful to some other individual in the community.

At first I tried different attempts with boot repair after being booted from a Live USB. None of the attemps were successful though as the repair was hanging or aborted with an error.

What ended up working was the following (I'll mention everything since I can't point to the specific change that enabled me to boot after the installation):

  • disable UEFI secure boot all together
  • disable Quick Boot
  • disable the BIOS boot-up password

Then I would install Ubuntu 14.04 with a custom partition scheme. I used a GPT partition table and an EFI partition even though I had UEFI booting disabled.

After the install re-enabled all these settings - the boot up was successful. This is unexpected, since leaving these settings enabled before the install would hinder ubuntu to boot after the installation.

Eli Steiner
  • 1
  • 1
  • 3