Quadro P4000顯卡在centos7安裝
官網(wǎng)下載對(duì)應(yīng)驅(qū)動(dòng)。
執(zhí)行:
[root@localhost ~]# sh NVIDIA-Linux-x86_64-396.37.run
出現(xiàn)如下報(bào)錯(cuò):
出現(xiàn)如下報(bào)錯(cuò):
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 documentation for details on how
to correctly disable the Nouveau kernel driver.
解決方法:
[root@localhost ~]# cd /etc/modprobe.d/
[root@localhost modprobe.d]# ls
dccp-blacklist.conf firewalld-sysctls.conf tuned.conf
[root@localhost modprobe.d]# cp dccp-blacklist.conf blacklist.conf
[root@localhost modprobe.d]# vim blacklist.conf
# DCCP is considered a potential security liability: prevent socket layer
# from automatically loading related modules using their aliases
blacklist dccp
blacklist dccp_diag
blacklist dccp_ipv4
blacklist dccp_ipv6
blacklist nouveau
#添加此配置,把nouveau
加入黑名單
[root@localhost modprobe.d]# mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak # #使用dracut重新建立 initramfs image file
[root@localhost modprobe.d]# dracut -v /boot/initramfs-$(uname -r).img $(uname -r)
#使用dracut重新建立 initramfs image file #重新建立the initramfs file
reboot
重啟
查看進(jìn)程是否還有:
[root@localhost ~]# lsmod | grep nouveau
執(zhí)行下一步:
ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the package 'gcc' installed. If gcc is installed on your system, then please check that `cc` is in your PATH.
出現(xiàn)如上報(bào)錯(cuò),解決方法:
[root@localhost ~]# yum install -y gcc
執(zhí)行驅(qū)動(dòng)文件,再次出現(xiàn)報(bào)錯(cuò)如下:
ERROR: Unable to find the kernel source tree for the currently running kernel. Please make sure you have installed the kernel source files for your kernel and that they are properly configured; on Red Hat Linux systems, for example, be sure you have the
'kernel-source' or 'kernel-devel' RPM installed. If you know the correct kernel source files are installed, you may specify the kernel source path with the '--kernel-source-path' command line option.
解決方法:
[root@localhost ~]# yum install kernel-* -y
然后再次執(zhí)行reboot,&&執(zhí)行驅(qū)動(dòng)文件:對(duì)于nvidia顯卡的話可以用nvidia-smi命令來查,查看GPU也是用這個(gè)命令
[root@localhost ~]# nvidia-smi
Thu Apr 18 16:08:11 2019
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.37 Driver Version: 396.37 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Quadro P4000 Off | 00000000:65:00.0 Off | N/A |
| 46% 37C P0 27W / 105W | 0MiB / 8119MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
[root@localhost ~]#
如上可以看到顯卡GPU型號(hào)P4000,安裝執(zhí)行成功。
以上就是“centos7 安裝NVIDIA P4000”的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注木子天禾科技其它相關(guān)文章!