Disable-nouveau.conf: Difference between revisions
Created page with "<code>cat /etc/modprobe.d/disable-nouveau.conf</code> (The 'blacklist' and 'options' command lines are commented thus preventing the file from having any effect.)<syntaxhighlight lang="bash"> ## disable the nouveau driver ## and prevent it from doing modeset # blacklist nouveau # options nouveau modeset=0 </syntaxhighlight> Category:System Administration Category:Linux Category:Graphics" |
No edit summary |
||
| Line 1: | Line 1: | ||
This file was created as part of the [[Nvidia on Ubuntu]] effort. Any file ending in .conf within the directory is automatically read in during boot. It is recommended '''not''' to modify the blacklist.conf file distributed with the OS because that file will be subsequently modified by the OS updates causing future conflicts. | |||
<code>cat /etc/modprobe.d/disable-nouveau.conf</code> | <code>cat /etc/modprobe.d/disable-nouveau.conf</code> | ||
(The 'blacklist' and 'options' command lines | (The 'blacklist' and 'options' command lines can be commented (prefixed with #) thus preventing the file from having any effect.)<syntaxhighlight lang="bash"> | ||
## disable the nouveau driver | ## disable the nouveau driver | ||
## and prevent it from doing modeset | ## and prevent it from doing modeset | ||
blacklist nouveau | |||
options nouveau modeset=0 | |||
</syntaxhighlight> | </syntaxhighlight> | ||