Last active
March 28, 2020 16:43
-
-
Save vicente-gonzalez-ruiz/14d37713c5923f917c96f616153069dc to your computer and use it in GitHub Desktop.
Nvidia + Manjaro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check the current driver (probably nouveau): | |
inxi -G | |
Graphics: | |
Device-1: Intel 4th Generation Core Processor Family Integrated Graphics | |
driver: i915 v: kernel | |
Device-2: NVIDIA GK104 [GeForce GTX 760] driver: nouveau v: kernel | |
Display: x11 server: X.Org 1.20.7 driver: intel,nouveau | |
unloaded: modesetting tty: N/A | |
OpenGL: renderer: NVE4 v: 4.3 Mesa 19.3.5 | |
# Find the driver to install: | |
mhwd -lh | |
# Install the Nvidia drivers: | |
sudo mhwd -a pci nonfree 0300 | |
# Reboot | |
sudo reboot | |
# Recheck the drivers: | |
inxi -G | |
Graphics: | |
Device-1: Intel 4th Generation Core Processor Family Integrated Graphics | |
driver: i915 v: kernel | |
Device-2: NVIDIA GK104 [GeForce GTX 760] driver: nvidia v: 440.64 | |
Display: x11 server: X.Org 1.20.7 driver: modesetting,nvidia | |
unloaded: intel,nouveau resolution: 1920x1080~60Hz | |
OpenGL: renderer: GeForce GTX 760/PCIe/SSE2 v: 4.6.0 NVIDIA 440.64 | |
# Remove: | |
mhwd -li | |
> Installed PCI configs: | |
-------------------------------------------------------------------------------- | |
NAME VERSION FREEDRIVER TYPE | |
-------------------------------------------------------------------------------- | |
video-hybrid-intel-nvidia-440xx-prime 2019.10.25 false PCI | |
video-linux 2018.05.04 true PCI | |
Warning: No installed USB configs! | |
sudo mhwd -r pci video-hybrid-intel-nvidia-440xx-prime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment