Thank you to Jeremy Rand for clarifying this step of the instructions: https://groups.google.com/d/msg/qubes-users/VeqDPHiaKwM/j4xt1lSOCAAJ
2.9 KiB
layout | title | permalink |
---|---|---|
doc | UEFI Troubleshooting | /doc/uefi-troubleshooting/ |
Troubleshooting UEFI related problems
Cannot start installation, hangs at four penguins after choosing "Test media and install Qubes OS" in GRUB menu
There is some common bug in UEFI implementation, affecting mostly Lenovo systems, but probably some others too. You can try existing workaround:
-
In GRUB menu1 press
e
. -
At the end of
chainloader
line add/mapbs /noexitboot
. -
Perform installation normally, but not reboot system at the end yet.
-
Go to
tty2
(Ctrl-Alt-F2). -
Enable
/mapbs /noexitboot
on just installed system. This step differs between Qubes releases:For Qubes 3.1:
-
Execute
mount | grep boot/efi
and note device name (first column). It should be something like/dev/sda1
. -
Execute
efibootmgr -v
, search forQubes
entry and note its number (it should be something likeBoot0001
-0001
is an entry number). -
Replace existing
Qubes
entry with modified one. ReplaceXXXX
with entry number from previous step,/dev/sda
with your disk name and-p 1
with/boot/efi
partition number):efibootmgr -b XXXX -B efibootmgr -v -c -u -L Qubes -l /EFI/qubes/xen.efi -d /dev/sda -p 1 "placeholder /mapbs /noexitboot"
-
Compare new entry with the old one (printed in step 6) - it should only differ in additional options at the end.
-
Now you can reboot the system by issuing
reboot
command.For Qubes 3.2 or later:
-
Edit
/mnt/sysimage/boot/efi/EFI/qubes/xen.cfg
(you can usevi
editor) and add to every kernel section:mapbs=1 noexitboot=1
Note: You must add these parameters on two separate new lines (one paramater on each line) at the end of each section that includes a kernel line (i.e., all sections except the first one, since it doesn't have a kernel line).
-
Now you can reboot the system by issuing
reboot
command.
System crash/restart when booting installer
Some Dell systems and probably others have another bug in UEFI firmware. And there is another workaround for it:
-
In GRUB menu1 press
e
. -
At the end of
chainloader
line add-- efi=attr=uc
. -
Perform installation normally, but not reboot system at the end yet.
-
Go to
tty2
(Ctrl-Alt-F2). -
Execute:
sed -i -e 's/^options=.*/\0 efi=attr=uc' /mnt/sysimage/boot/efi/qubes/xen.cfg
-
Now you can reboot the system by issuing
reboot
command.
1 If you use rEFInd, you can see 3 options regarding the USB installer. Choose "Fallback Boot Loader" to enter the GRUB menu. ↩ ↩