当前位置:   article > 正文

Centos7 安装独立显卡驱动_kernel module load error: no such device

kernel module load error: no such device

Centos7 安装独立显卡驱动

参考:

https://blog.csdn.net/u013378306/article/details/69229919

安装基础依赖环境

Yum install gcc kernel-delve -y

 

注意事项,保证内核版本和源码版本一样,否则,安装报错误6:

  •  查看内核版本:
    ls /boot | grep vmlinu

     

  • 查看源码包版本
    rpm -aq | grep kernel-devel

     

从上面的输出中可以看出内核版本号和内核源码版本。为了解决这个错误,需要从FC官方网站上下载与内核版本对应的源码包进行安装。
可以在以下网站下载并安装:
http://rpmfind.net/linux/rpm2html/search.php?query=kernel-devel

 

源码安装

1 在英伟达官网下载相应驱动

搜索出相应的驱动后,不要直接点,而是右健,Save Link as...

否则,会出现下载半天没动静的情况。

存放的路径上最好不要有中文。

我存放的路径是 ~/Downloads/NVIDIA-Linux-x86_64-346.47.run

 

2 屏蔽默认带有的nouveau

使用su命令切换到root用户下: su root

打开/lib/modprobe.d/dist-blacklist.conf

 

将nvidiafb注释掉。

#blacklist nvidiafb 

 

然后添加以下语句:

blacklist nouveau

options nouveau modeset=0

3 重建initramfs image步骤

mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak

dracut /boot/initramfs-$(uname -r).img $(uname -r) 

4 修改运行级别为文本模式

systemctl set-default multi-user.target 

5 重新启动, 使用root用户登陆

reboot

 

6 查看nouveau是否已经禁用

ls mod | grep nouveau

如果没有显示相关的内容,说明已禁用。

 

7 进入下载的驱动所在目录

chmod +x NVIDIA-Linux-x86_64-346.47.run

./NVIDIA-Linux-x86_64-346.47.run

安装过程中,选择accept

如果提示要修改xorg.conf,选择yes

8 修改运行级别回图形模式

systemctl set-default graphical.target 

9 重新启动,OK

在Applications--Other可以看见NVIDIA X Server Settings菜单。 

问题:

错误1:

ERROR: The Nouveau kernel driver is currently in use by your system.  This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding.  Please consult the NVIDIA driver README and your Linux distribution's docu
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/65123
推荐阅读
相关标签
  

闽ICP备14008679号