2

I recently installed Linux Gecko alongside with already install Ubuntu. After the installation the computer is automatically booted with Linux Ubuntu without giving me the option to select the other distro. I cannot open BIOS menu to change the boot order, so I cannot access to the other distro. The issue with opening BIOS is that when I hold down F2 (my BIOS key) the screen stuck at initial "ACER" logo. Without pressing F2 it starts up normally with Ubuntu. Please find the steps I did for installing Gecko with dual booting below:

  1. Started the computer with bootable USB plugged in, but it didn't work.
  2. Opened BIOS menu by pressing F2 key (it was working at this stage) and put USB to the top of boot order
  3. Installed Gecko with dual booting alongside with Ubuntu. The installation went successful and I was able to use Gecko
  4. Restarted the computer and entered BIOS menu. It was also working at this stage. I restored the initial boot order (i.e. before my changes in step 2). So I put USB to the bottom again Gecko to 2nd place after Ubuntu.
  5. Plugged out USB and restarted the computer again.

After the 5th step, the issue I mentioned above started to show up. Now I cannot boot from USB as well, because I cannot access to BIOS, so can't change the boot order.

How should I switch to the installed Gecko distro now? I can also consider uninstalling Ubuntu completely, but don't know how to do it properly.

1 Answers1

1

Assuming your computer is recent enough to support UEFI, here's what you should do to enter the UEFI configuration menu:

  1. Reboot
  2. When the grub bootloader loads, press c and at the grub> prompt, type fwsetup: grub> fwsetup.
  3. This should reboot your computer into a configuration interface that you can boot your other distro from.

A [somewhat] more permanent solution involves editing /boot/grub/grub.cfg in the Ubuntu installation (or wherever your grub.cfg is) and adding the following lines:

menuentry "Firmware Setup" {
  fwsetup
}

Do note that this is only a temporary solution. Running sudo update-grub or a kernel upgrade will delete these changes, and you will have to add these lines again.

rando
  • 281
  • 1
  • 4