广告

本站里的文章大部分经过自行整理与测试

2017年3月24日星期五

Fedora - NVIDIA 显卡安装

1. 依赖包

$ su root
$ dnf install kernel-devel kernel-headers
$ dnf install gcc dkms acpid

2. 下载 NVIDIA-Linux-x86_64-375.39.run

http://www.geforce.cn/drivers

3. 给予 NVIDIA-Linux-x86_64-375.39.run 驱动执行权限

$ su username
$ cd ~/Downloads
$ chmod +x NVIDIA-Linux-x86_64-375.39.run

4. 关闭 X-Server

$ su root
$ rm /etc/systemd/system/default.target
$ ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target

5. 创建 /etc/modprobe.d/disable-nouveau.conf

$ echo 'blacklist nouveau' >> /etc/modprobe.d/disable-nouveau.conf
$ echo 'nouveau modeset=0' >> /etc/modprobe.d/disable-nouveau.conf

6. 修改 /boot/grub2/grub.cfg

$ gedit /boot/grub2/grub.cfg

linux16 /vmlinuz-4.9.14-200.fc25.x86_64+debug root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet LANG=en_US.UTF-8
改为
linux16 /vmlinuz-4.9.14-200.fc25.x86_64+debug root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rdblacklist=nouveau rhgb quiet LANG=en_US.UTF-8

7. 重启

$ reboot

8. 登入, 运行 NVIDIA-Linux-x86_64-375.39.run 驱动

$ su username
$ cd ~/Downloads
$ ./NVIDIA-Linux-x86_64-375.39.run

选择 Accept, Yes, Yes.. 等待安装..

9. 修改回预设

$ su root
$ rm /etc/systemd/system/default.target
$ ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target

没有评论:

发表评论