0℃
2024年05月06日
⁄ Linux
⁄ 被围观 2,181次+
一、检查服务器是否正确安装了显卡
#安装检查显卡的工具包
yum install pciutils lshw -y #安装
rpm -ivh lshw-B.02.18-17.el7.x86_64.rpm #离线安装
rpm -ivh pciutils-3.5.1-3.el7.x86_64.rpm #离线安装
lspci | grep VGA # 检查
lspci -vvv |grep -i nvidia
lshw -numeric -C display #检查product: NVIDIA Corporation 后的产品标识
lspci | grep -i nvidia #检查显卡是否被系统识别
[root@localhost infras]#lspci | grep -i nvidia
10:00.0 3D controller:NVIDIA Corporation Device 2235(rev a1)
11:00.0 ...
linux, NVIDIA阅读全文