0

Im not that advanced into computers, but I have tried to install Ubuntu 16.04.4 LTS on to my Lenovo Yoga 11E on a completely new SSD.

  • I made a bootable USB Drive using Rufus and was able to launch the installer on the laptop.

  • I was then able to install Ubuntu on the laptop.

  • But when I restarted it to load the OS from the SSD, it wouldnt launch from the SSD, but only from the USB.

  • I have tried this thread: Install ubuntu on thinkpad yoga

Thanks in advance! Nevin

Edit: Here is what happens when I type "sudo fdisk -l" into the terminal

'Disk /dev/loop0: 1.5 GiB, 1564921856 bytes, 3056488 sectors
 Units: sectors of 1 * 512 = 512 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes


 Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
 Units: sectors of 1 * 512 = 512 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disklabel type: gpt
 Disk identifier: 7B76C6F6-8D31-43AC-8E0F-86786319FB9E

 Device         Start       End   Sectors   Size Type
 /dev/sda1       2048   1050623   1048576   512M EFI System
 /dev/sda2    1050624 491968511 490917888 234.1G Linux filesystem
 /dev/sda3  491968512 500117503   8148992   3.9G Linux swap


 Disk /dev/sdb: 7.5 GiB, 8053063680 bytes, 15728640 sectors
 Units: sectors of 1 * 512 = 512 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disklabel type: dos
 Disk identifier: 0x0921d6a2

 Device     Boot Start      End  Sectors  Size Id Type
 /dev/sdb1  *     2048 15728639 15726592  7.5G  c W95 FAT32 (LBA)

Edit 2: I checked to see if there was a boot flag on sda1, and there was one already and "esp". Here is a screenshot of this.

Next, I used this thread to reinstall GRUB: How do I manually install GRUB? While following the steps, there were problems with the "recover" step.

Image of steps I followed when reinstalling GRUB.

Image of response from the Terminal using this code.

1 Answers1

0

Edit: While some of the solutions suggested here were not correct. I am keeping them in case they help others solve their boot related issues.

Changing Boot Flag with GParted

Based on the output from sudo fdisk -l, it appears that no boot flag is set on your primary drive. To make /dev/sda bootable, open up GParted and right click on /dev/sda1. Then select Manage Flags and check the box that says boot. GParted Manage Flags After that is done, reboot your computer and attempt to boot into your primary installation. Hopefully you'll be successful.

Note: Really quick, I just want to explain how I know that /dev/sda1 is where your system should boot from. The first clue is that it's of type /EFI system. The second is the size of the partition being 512 MB. That size corresponds to that of a standard MBR/GPT boot partition.

If the above process fails, you can try reinstalling GRUB manually by chrooting into your installation. However, being that you said you tried the procedure mentioned in the thread included in your question, I'm assuming you already tried a GRUB reinstallation with no success. If you're curious about the process of chrooting in greater detail, you can find more information at this post on SuperUser.

Edit: Below are a series of edits to my original answer that contain possible solutions.

First, when booting from your SSD, try holding down the shift key, or escape key in some cases, to bring up the GRUB boot menu. Here you can select an operating system or boot into recovery mode. If this is successful, try the latter. This will also help determine if GRUB is the culprit.

If you still have a black screen, try pressing and holding ctrl + alt and then pressing F2 to open up a TTY console. From here, you can login.

Possibly not a boot issue and could be a fault with the graphics driver

If the ctrl + alt + F2 worked then the issue isn't GRUB. Else, skip this section.

What you're experiencing reminds me of a similar problem I faced a couple of years ago. I had used Feliz Arch Installer (live CD that contains a script that simplifies the Arch Linux installation process) and the installation went perfectly fine. But when I booted, my screen was completely black (there might be a few other details that I don't remember though). It turned out that the installer had misidentified my video card and installed the wrong driver.

  1. Type startx. This will start X server. If you see a bunch of errors and X server crashes, then that's a good sign.
  2. lspci | grep VGA. This fetches the VGA compatible card your computer is using. In most cases, this is your video card. Take note of the manufacturer (e.g. Intel, AMD, etc.).
  3. dpkg -l | grep "xserver-xorg-video*". This will return the current video driver installed on the system. If the manufacturer does not match that of step 2, try installing the Intel or AMD drivers.
  4. The open source drivers can be installed with sudo apt install xserver-xorg-video-intel, sudo apt install xserver-xorg-video-ati. Make sure this corresponds to the manufacturer from step 2.

NOTE: The xserver-xorg-video-ati driver is for older AMD/ATI cards. For newer cards, you should do sudo apt install xserver-xorg-video-amdgpu. There is also an AMD radeon driver for AMD cards, but this is pre-installed with Ubuntu. It covers other AMD cards.

  1. Reboot your system.

Chrooting and GRUB update/reinstall (method 1 to update/reinstall GRUB)

I noticed in the thread you followed for reinstalling GRUB that the top answer did not create hard links to system directories. Personally, I've never seen chrooting done as described in that post. Just to be safe, try updating/reinstalling GRUB again using these steps:

  1. From the live CD/USB type sudo -i to change to root. Then type fdisk -l.
  2. mount /dev/sda2 /mnt (replace sdax with your respective root partition). In your case, it appears to be /dev/sda2.
  3. mount /dev/sda1 /mnt/boot/efi (the EFI partition). In your case /dev/sda1 is the EFI partition, but for others it may be different.
  4. mount --bind /sys/ /mnt/sys (--bind creates a bind mount. Bind mounts are different from typical mounts in that they create an exact replica of all contents that are being mounted within the mountpoint. So /mnt/sys/ will have the same folders and structure as that of /sys/, which is the system directory in your installation).
  5. mount --bind /dev/ /mnt/dev
  6. mount --bind /proc/ /mnt/proc
  7. mount --bind /run/ /mnt/run
  8. Now type chroot /mnt/ (Perhaps the above process is why you got the error when trying to recover earlier?)
  9. First try updating GRUB with update-grub
  10. (may be optional) If the above errors out perform the following:
    1. grub-install /dev/sda (where /dev/sda is the drive that has Linux installed. It can vary, but in your case it is /dev/sda).
    2. update-grub
    3. exit to leave the chroot environment.
  11. Now unmount the bounded folders:
    1. umount /mnt/dev
    2. umount /mnt/sys
    3. umount /mnt/proc
    4. umount /mnt/run
    5. umount /mnt/boot/efi
    6. umount /mnt
  12. Now reboot and see if you still cannot boot into Ubuntu.

Using Startup Boot Repair Disk (method 2 to reinstall GRUB)

There exists are repair tool that can be installed called Boot Repair. Someone was kind enough to create a live CD/USB version to help systems that are in an unbootable state.

Note: You will need another USB/CD/DVD for this task. Also, all data on that USB/CD/DVD will be lost!

  1. Download the Startup Boot Repair disk from the project's SourceForge page. Your system is most likely 64-bit, so download the respective .iso. If you're unsure, download the 32-bit one.
  2. Use Rufus (if in Windows) or another disk utility. If you only have access to a live CD/USB, you can create a bootable CD/DVD by opening Brassero and burning the .iso file you downloaded. If you would like to make a bootable USB, use the dd command as follows:

Using the dd command (can skip if not using USB as boot medium)

  1. First reformat the USB you're going to be using (note: you do not need a large USB drive for this. 1GB is fine). To reformat, you USB from the terminal as a FAT partition do the following:
    1. Type lsblk. Typically, the USB will mount under /media. Being that your USB drive is the third device, it will likely be /dev/sdc. If you would like to see the full name of the device to confirm that it is indeed correct you can type lsblk -l to see the full mountpoint. It should end in the name of your USB. You can crosscheck this name with the one that shows up in Nautilus (i.e. Files).
    2. Next, if you see a digit after /dev/sdx, type sudo umount /dev/sdx#. Where x is b, c, d, etc. and # is the number beside it.
    3. To reformat the flash drive with an FAT filesystem type mkfs.vfat /dev/sdx (replace x with the respective drive letter).
  2. Once the drive is formatted, double check to make sure it hasn't remounted by typing lsblk. If it is still unmounted type dd -bs=4M if=/path/to/iso of=/dev/sdx && sync.

Caution!!!: dd is extremely dangerous. You can wipe out your primary partition if you make a mistake. In the above command, /path/to/iso is the absolute path to your .iso file. To make this easier, after typing if= don't add anything. Instead, open Nautilus (Files) and navigate to your .iso file. Once you find it, click and drag it into the terminal. This will allow the path to auto generate. /dev/sdx is the USB you want to write to. Be absolutely sure that this is correct, or you could lose critical data.

  1. The dd command will take awhile. You'll just have to wait while it copies the data.

---------- (End of section on dd command)

  1. Reboot your system from the CD/DVD/USB you burned the boot repair disk to. If all went well, it should boot up and beginning scanning your drives and boot configuration.
  2. You should see this if it successfully detected everything: Boot Repair Disk after scanning configuration
  3. Generally speaking, the default option is fine. However, you can click the Advanced drop down arrow to see a plethora of options to configure GRUB. Some of these may help fix your issue. However, being that you cannot boot at all and have not shared any error messages, I'm assuming that you're simply being greeted with a black screen at boot (if you are receiving errors of some kind, edit your question to contain them). Click the default option.
  4. At the end of the repair, you should be presented with a pastbin URL. Please write down that URL and edit your answer to include it, as it contains log information and may be useful.

Using Super Grub2 Disk

Note: This will not solve your issue. But it might at least get your system to boot once.

Super Grub2 Disk is a live utility that probes all OS's and allows you to boot them from a GRUB-like environment. You can configure GRUB from here as well. You can download the latest stable version here, and it should be compatible with numerous architectures as well as UEFI and BIOS.

As Super Grub2 Disk is a live environment, you'll have to create a bootable USB/CD/DVD. Once successfully booted select Everything > Linux [...] (hdx, msdosx), or something along those lines. Do not choose the version with (single) in the name. This process may not work depending on your issue.

Reinstallation

If all else fails, you could try a clean installation.