Hi there @joseph.t.orlando
You’re welcome! So following your last post, it seems like a DKMS or Xorg issue, here’s what I suggest (in this order) :
-
Blacklist Troubling Drivers
sudo bash -c "echo blacklist nouveau > /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
sudo bash -c "echo options nouveau modeset=0 >> /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
sudo bash -c "echo blacklist i2c_nvidia_gpu > /etc/modprobe.d/asusd.conf"
-
Reinstall Xorg packages:
sudo apt install xserver-xorg xserver-xorg-dev
-
Recreate Kernel Modules:
sudo dkms remove nvidia/470.57 --all
sudo dkms install --force nvidia/470.57 -k $(uname -r)
sudo update-initramfs -u
sync
-
Reboot
If it’s still not working try the following:
-
Fix Xorg config:
-
sudo nano /etc/X11/xorg.conf
add the missing entries from below to the “Device” section:
-
Section "Device"
Identifier "nvidia"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BusID "PCI:2:0:0"
Option "AllowEmptyInitialConfiguration"
EndSection
- Reboot
Still not working? Check out this post here