9

I've installed Ubuntu 20.04 on a Lenovo Ideapad 330 as single operating system. In normal boot on my laptop, after choosing the operating system at the GRUB menu it shows some ACPI BIOS ERROR and other messages and then the system starts normally.

This happens every time while starting & restarting my system. I've attached some images & video of this code.

GRUB menu

boot messages

boot messages

boot messages

Video clip showing the boot process with these messages

Zanna
  • 70,465
  • I am also facing similar issue.. but not yet able to install it. did you find the solution?

    https://askubuntu.com/questions/1295510/not-able-to-install-ubuntu-20-04-alongside-windows-10-pro-dual-boot?noredirect=1#comment2201070_1295510

    – sub Aug 14 '21 at 10:44

2 Answers2

6

The bugs you are seeing are harmless. Apparently, because of Microsoft's market dominance, the faulty ACPI implementation from Microsoft has become the de facto industry standard. As a result, Linux and other non-Microsoft operating systems have to reverse engineer the faulty ACPI implementation from MS.

Things you may try:

  • You could try upgrading your BIOS. Here on the Lenovo support website is the latest available firmware for your Lenovo Ideapad 330 and this question explains about upgrading BIOS: How to update the computer bios firmware without using Windows.

  • Use UEFI mode instead of BIOS legacy mode, if system supports.

  • Install intel-microcode non-free package.

  • To just turn off these messages, you may edit /etc/default/grub and add to the line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" the parameters acpi=off or noacpi acpi=strict and then run sudo update-grub2.

References:

kashish
  • 1,332
  • It's important to say that disabling ACPI with acpi=off or noacpi is a very bad idea for laptops used as portable devices, those parameters stops functions relative to power management, like battery information, suspend and screen brightness. – leoperbo Jun 01 '23 at 14:56
0

I have looked at the images and the video, and we are talking about a very common error regarding ACPI BIOS, it allows you to discover computer hardware components and solving this error is not easy because it varies depending on the device in use. Here are the three main methods that are right for me, but don't follow all these methods, make sure that what you used doesn't work before proceeding with the others:

  1. On the grub screen, press "e" and in the line with "Linux" add the following at the end modprobe.blacklist=nouveau

  2. Disable ACPI: My solution is similar, but I recommend that you follow this even more

    a) How do I disable ACPI when booting?

  3. If you can't solve the problem, you can use this last method:
    a) Study the Lenovo BIOS and look for some settings by the use of ACPI,after format your computer and re-install your distro.
loreame
  • 44