I was trying to install nvidia drivers for my PC for so that xorg will use intel drivers. I followed this guide and did an installation a runfile using the command:
sudo sh NVIDIA-Linux-x86_64-396.24.run --no-opengl-files --dkms --no-drm
The method didn't work for me. And now I'm trying to uninstall nvidia's drivers with sudo apt purge nvidia*
Somehow after doing this, now whenever I try to install/uninstall something I get a message like this:
....
W: Possible missing firmware /lib/firmware/nvidia/gv100/acr/bl.bin for module nouveau
I: The initramfs will attempt to resume from /dev/nvme0n1p3
I: (UUID=1e612fb7-d1f4-4a4a-a5bd-1ae6761c9bf0)
I: Set the RESUME variable to override this.
And I can't even get the original nvidia driver to work. Any idea what the RESUME variable is? What is it that needs to be removed?
I'm using Ubuntu 18.04.
Reinstall the nouveau-firmware...sudo apt-get install --reinstall nouveau-firmware
There are two resume parameters that I know of, and two that would effect the initramfs.
Kernel parameter:
In
terminal
... (permanent)...sudo blkid
# get a list of partitions and UUID'ssudo -H gedit /etc/default/grub
# edit this filesudo update-grub
# update the grub filesreboot
# reboot the computervia the
GRUB
menu... (temporary)...initramfs:
In
terminal
...sudo blkid
# get a list of partitions and UUID'ssudo -H /etc/initramfs-tools/conf.d/resume
# edit this fileRESUME=UUID=1e612fb7-d1f4-4a4a-a5bd-1ae6761c9bf0
# edit with correct UUIDsudo update-initramfs -c -k $(uname -r)
# update initrd.imgreboot
# reboot the computer