ACPI Bios Error while installing Ubuntu 18.04 on NUC-11PHKi7C
Andrew Mclaughlin
I am trying to install Ubuntu 18.04 on NUC-11PHKi7C from a bootable drive but I receive the following error and the system freezes:
Is there a work around to solve this problem. I have seen that installing Ubuntu 20.04 on the NUC is fairly straightforward.
32 Answers
What I found works is a modification of Chenxi Yang's answer above. The sequence of events in those instructions was incomplete and some steps were unnecessary. However, I thank Chenxi Yang for the step of editing the grub startup by pressing e in grub and adding nomodeset. That is the key. What worked for me for Ubuntu 18.04 was:
- When booting from Ubuntu 18.04 install media from either the first or second item in the grub list, press e.
- Replace the
---after splash withnomodeset, and push F10. As the previous answer states, this will bypass the ACPI error, which seems to be with the Intel graphics and not NVIDIA. - Let the system startup. Run the
Install Ubuntu 18.04.... - After installation, remove the install media and allow the system to restart. However, you need to boot into the grub menu. If it is not setup to go into grub automatically, press Esc during initial bootup to go into the grub menu.
- In the grub menu, press e on the top choice (boot Ubuntu normally).
- Edit the line that starts with "linux" and change the end of the line where it says
splash $vt_handofftosplash nomodeset(no quotes). Hit F10 to continue booting. - Once into Ubuntu, edit
/etc/default/grub(e.gsudo gedit /etc/default/grub) - Find the line that says:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Change it to:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
- Save the file and close it.
- In a terminal, run:
sudo update-grub2Reboot. Then you should be able to boot correctly and you can install the NVIDIA drivers if you want. You can also choose the drivers from the Software & Updates App
Since several other problems will occur concerning the NVIDIA driver after you solve this ACPI error (took me two days to find the way out), I will provide my complete solution.
Instead of installing Ubuntu, select try Unbuntu without installing, and push E.
Replace the "---" after splash with "nomodeset", and push F10. This step will solve the ACPI error.
Download the drivers in the following link: Install the .run file (before the installation, you need to install gcc first)
Do NOT restart the computer as recommended, otherwise, you will get a black screen and have to start from the first step again. Push the install Ubuntu 18.04 icon and start installing the OS to your Nuc. Remember to select installing the 3rd-party software.
I wish it works for you.