下载驱动
https://www.nvidia.cn/Download/index.aspx?lang=cn
CentOS 7操作
1. 启动方式 需要是 UEFI/EFI 的 非安全启动方式
;
2. 基础环境准备
- 检查 GPU 是否支持 CUDA
lspci | grep -i nvidia 00:09.0 3D controller: NVIDIA Corporation GP100GL [Tesla P100 PCIe 12GB] (rev a1)
- 检查系统是否支持CUDA
uname -m && cat /etc/redhat-release
x86_64
CentOS Linux release 7.7.1908 (Core)
- 安装系统工具包
yum update -y
yum install -y wget vim gcc
yum install kernel-devel-$(uname -r) kernel-headers-$(uname -r)
3. 安装GPU驱动
- 禁用系统默认的 nouveau 驱动
屏蔽前:
lsmod | grep nouveau
- 禁用 nouveau
bash -c "echo blacklist nouveau > /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
bash -c "echo options nouveau modeset=0 >> /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
- 重建 initramfs image
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak
dracut /boot/initramfs-$(uname -r).img $(uname -r)
- 重启系统
reboot
- 屏蔽nouveau之后
lsmod | grep nouveau
(结果为空)
- 安装驱动
chmod +x NVIDIA-Linux-x86_64-440.64.00.run
bash ./NVIDIA-Linux-x86_64-440.64.00.run
- 验证
watch -n 1 nvidia-smi