Created
May 13, 2018 17:53
-
-
Save rishispeets/9c28d8c5e6e82a6d1b4db7d31df1a749 to your computer and use it in GitHub Desktop.
Disable Nvidia and Nouveau drivers on 18.04 Bionic Beaver MX150
This file contains 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
sudo apt-get install bbswitch-dkms | |
then | |
gksudo gedit /etc/modprobe.d/blacklist.conf | |
and add the following lines | |
# Blacklist the alternative nvidia module | |
blacklist nouveau | |
# Blacklist the original nvidia module | |
blacklist nvidia | |
then | |
$ gksudo gedit /etc/modules | |
and add the following lines | |
# Switch off discrete GPU | |
bbswitch load_state=0 | |
at last update the initial ramdisk by running | |
$ sudo update-initramfs -u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment