Re: Salix 14.1 64 booting from a UEFI system
Posted: 19. Jul 2014, 15:48
I have just tried installing Salix 14.1 64bit XFCE to a UEFI computer.
and success on the first trial to boot in UEFI computer.
After navigating for a while, here I shall show you the two key points for your reference.
Since you had DVD done up, after you load it, boot your Asus laptop, press Esc key, the UEFI menu should popup, you need to choose the boot option that reads
UEFI : DVD
or
UEFI: <Manufacturer-Model-of-DVD>
2. How to verify that computer is running UEFI firmware?
I tested and this is quite a nice step to verify, even before installation.
Once you boot and run Salix, when the first graphic screen let you choose keymap,
the second screen is 'Salix Installation', with two choices:
<Select> <Exit Installation>
Tab to <Exit Installation>, enter to get a root prompt #
type this code
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
hit enter key, look for the display.
If you see UEFI , you are already booted in UEFI mode.
Here I am running it and show the actual terminal with the above code, so that there is no typo
Once you see that you are already in UEFI mode, it is safe to proceed.
You may already knew, the other two important things to check is
3. ensure that the fat32 partition, or EFI Boot partition, or EFI System Partition is mounted on /boot/efi
4. at the end, install elilo
I also show you how the portition of FAT32 partition for UEFI boot entry, so that you can check also after installation.
on root terminal, mount the ESP ( for my case it is /dev/sdb1)
alternatively, as user running Salix, the ESP is already mounted in /boot/efi
and the directory EFI had all the boot entries, Salix is one of them with these boot files
hope it helps
and success on the first trial to boot in UEFI computer.
After navigating for a while, here I shall show you the two key points for your reference.
1. The key to install in UEFI mode is first to boot in UEFI mode.khash777 wrote: yes I downloaded and burned the image to a DVD as you say, however I'm not sure if it booted in EFI or legacy bios mode.
Since you had DVD done up, after you load it, boot your Asus laptop, press Esc key, the UEFI menu should popup, you need to choose the boot option that reads
UEFI : DVD
or
UEFI: <Manufacturer-Model-of-DVD>
2. How to verify that computer is running UEFI firmware?
I tested and this is quite a nice step to verify, even before installation.
Once you boot and run Salix, when the first graphic screen let you choose keymap,
the second screen is 'Salix Installation', with two choices:
<Select> <Exit Installation>
Tab to <Exit Installation>, enter to get a root prompt #
type this code
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
hit enter key, look for the display.
If you see UEFI , you are already booted in UEFI mode.
Here I am running it and show the actual terminal with the above code, so that there is no typo

Code: Select all
wayne[~]$ uname -a
Linux darkstar 3.10.17 #2 SMP Fri Feb 14 16:45:28 CST 2014 x86_64 Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz GenuineIntel GNU/Linux
wayne[~]$ [ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
UEFI
wayne[~]$
Once you see that you are already in UEFI mode, it is safe to proceed.
You may already knew, the other two important things to check is
3. ensure that the fat32 partition, or EFI Boot partition, or EFI System Partition is mounted on /boot/efi
4. at the end, install elilo
I also show you how the portition of FAT32 partition for UEFI boot entry, so that you can check also after installation.
on root terminal, mount the ESP ( for my case it is /dev/sdb1)
Code: Select all
root[EFI]# mount /dev/sdb1 /mnt
root[EFI]# ls /mnt/EFI/Salix
elilo.conf elilo.efi vmlinuz
root[EFI]#
and the directory EFI had all the boot entries, Salix is one of them with these boot files
Code: Select all
wayne[~]$ cd /boot/efi/EFI
wayne[EFI]$ ls |grep Salix
Salix
wayne[EFI]$ ls Salix
elilo.conf elilo.efi vmlinuz
wayne[EFI]$