黑名单 Nouveau 无法在 Ubuntu 14.04 上运行

黑名单 Nouveau 无法在 Ubuntu 14.04 上运行

我知道有很多关于将 Nouveau 驱动程序列入黑名单的文档。但是常规方法对我来说不起作用。我尝试在文件中添加以下几行/etc/modprobe.d/blacklist.conf,但这不起作用。无论如何,Nouveau 仍然会加载。

blacklist nouveau
blacklist lbm-nouveau
options nouveau modeset=0
alias nouveau off
alias lbm-nouveau off

我尝试使用此命令禁用内核模块:

echo options nouveau modeset=0 | sudo tee -a /etc/modprobe.d/nouveau-kms.conf

其次是:

update-initramfs -u

但它不起作用。无论如何,Nouveau 仍然会被加载。

答案1

您可能需要编辑 grub 以防止内核在启动时加载 nouveau。运行以下命令:

cp /etc/default/grub ~/grubbackup
sudo sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="/GRUB_CMDLINE_LINUX_DEFAULT="nouveau.blacklist=1 /g' /etc/default/grub
sudo update-grub

重启。


该文件看起来应该像这样:

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="nouveau.blacklist=1 quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

您可以运行以下命令来在重新启动之前验证文件的内容是否安全:

cat /etc/default/grub

如果需要进行更改,可以运行以下命令来编辑文件:

sudo nano /etc/default/grub

CTR+o保存文件,然后按CTRL+x退出 nano。

另外,不要忘记在进行更改后更新 grub:

sudo update-grub

相关内容