linux

  • ACPI Errors on Ubuntu bootup

    You can get rid of those ACPI Error messages by 1. Open ‘/etc/default/grub’ in an editor with root access. In your case I believe Ubuntu uses gedit as it’s text editor Code: 2. The line with ‘GRUB_CMDLINE_LINUX_DEFAULT’, add the loglevel=3 part. The original looks like GRUB_CMDLINE_LINUX_DEFAULT=’quiet splash’ Change it to this: Code: Then save the…

  • Installing Nvidia driver in Ubuntu 22.04

    sudo apt update sudo apt-get remove ‘^nvidia’ sudo apt autoremove sudo apt install nvidia-driver-450 sudo reboot After you have installed the nvidia-driver-450 graphics driver in Ubuntu 20.04 it may be updated from nvidia-driver-450 to nvidia-driver-460 by the normal software update activity. As an alternative to step 4 you can let the ubuntu-drivers program automatically select the proprietary…