How can I tell if my system was booted as EFI/UEFI or BIOS?
Enter this in the terminal of your choice
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
You the querry is UEFI the you use UEFI else BIOS
Enter this in the terminal of your choice
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
You the querry is UEFI the you use UEFI else BIOS