Results 1 to 6 of 6

Thread: No bootable devices found

  1. #1
    Join Date
    Jan 2024
    Beans
    2

    No bootable devices found

    I'm new to Linux, and I've been asked to install Ubuntu with particular disk partitions.

    There are two disks in the system:
    The boot drive is a 460G SSD (disk 0)
    The data will be a 3 TB spinning disk (disk 1)

    BIOS is set to UEFI

    The partitions requested are:
    Disk Mount point Size File System
    0 / 400G ext4
    0 /boot 2G ext4
    0 /var 10G ext4
    1 /opt 200G ext4
    1 /data 3T ext4 (or remaining disk)

    I designated disk 0 as the boot disk and I created the above partitions and mount points.

    When the system boots I get the error: "No bootable devices found"

    If I let the system automatically create partitions, and I don't try to customize the disk 0, the system boots fine.

    The image below shows the configuration that works. I'm not able to create this manually.
    https://drive.google.com/file/d/12Ww...ew?usp=sharing

    This next image is what I've done (it's more than I've shown above. I'm trying multiple things to get this to work).
    https://drive.google.com/file/d/12Wy...ew?usp=sharing

    I'd appreciate any help on this item.

    Thank you
    Bill

  2. #2
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,768

    Re: No bootable devices found

    The partition mounted at /boot/efi has to be formatted fat32, not ext4 and also should have the boot flat set (which also automatically sets an esp flag).
    This is partition is called an EFI system partition, and it's required for UEFI installation. It was made when you let the installer do the partitioning.

  3. #3
    Join Date
    Jan 2024
    Beans
    2

    Re: No bootable devices found

    Formatting the /boot/efi as fat32 is not an option. Is there another format I can try?

  4. #4
    Join Date
    Mar 2010
    Location
    USA
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: No bootable devices found

    Yes it is, sort of...

    When I am doing an "Other" install where I pick and set things like that: (Sort of a work-aroud I came up with for that)

    I first select "Try" > Startup GParted, add a GPT partition table to my root bootig disk > create an EFI partition of about 750MB to 1GB > Apply... Then change the flags on that partion as "ESP, Boot"...

    Then I'll exit GParted and start up the install, and create / mount what I want to do. I set the boot in the bootem to that root/ booting disk... And it finds the EFI partition...

    The reason it failed with how you did it, is that you did "manual" partitioning, but there was no EFI partition in your workflow...

    In the Server Edition you can create it in the partitioner, and go on from there. In the Desktop Edition, it's a different partitioner. For some reason, with that one, in manual mode, it has to be there before you start that process. I don't know why. To me, I feel that is a Bug.

    It has the ability to create the partition and format it as vfat (FAT32), but doesn't have anything there to change the flags to ESP & boot?

    I have a few Bug reports already filed on that partitioner. It's new, and they are doing there best to improve it, and get it going.

    If you can tell me which ISO image you are trying to install, I'll file the bug report myself, and you can just join it as affected.
    Last edited by MAFoElffen; January 24th, 2024 at 07:25 AM.

    "Concurrent coexistence of Windows, Linux and UNIX..." || Ubuntu user # 33563, Linux user # 533637
    Sticky: Graphics Resolution | UbuntuForums 'system-info' Script | Posting Guidelines | Code Tags

  5. #5
    Join Date
    Jan 2024
    Beans
    7

    Re: No bootable devices found

    You could try using Super Grub Disk (https://www.supergrubdisk.org/) to get successfully booted into your partition and from there reinstall grub (I can provide the specific steps to do this if needed).

  6. #6
    Join Date
    Mar 2010
    Location
    USA
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: No bootable devices found

    Show the output, posted within CODE Tags:
    Code:
    lsblk -e7 -o name,label,size,fstype,mountpoint,model
    sudo blkid | grep -v 'squashfs'
    sudo fdisk -l | grep '^/dev'
    for Disks in $(ls /sys/block/ | grep -v 'loop' ); do sudo sgdisk -p /dev/$Disks | grep -E '^Disk |^Model: |^Number |   [0-9]. '; done
    You are going to want to cut-and-paste the commands as posted into a terminal session booted from an installer LiveUSB. That means also start a Firefox session on it and show this post to copy from it...
    Last edited by MAFoElffen; February 4th, 2024 at 06:08 PM. Reason: Instructions for use

    "Concurrent coexistence of Windows, Linux and UNIX..." || Ubuntu user # 33563, Linux user # 533637
    Sticky: Graphics Resolution | UbuntuForums 'system-info' Script | Posting Guidelines | Code Tags

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •