Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04

这篇具有很好参考价值的文章主要介绍了Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

The record of Nvidia driver installation of Nvidia RTX A4000 in ubuntu22.04

Environment:

Ubuntu22.04

GPU: Nvidia RTX A4000 

Use the official NVIDIA driver for manual installation (stable and reliable)

Step:

1. Before installing the driver, be sure to update the software list and install the necessary software and dependencies (required)

sudo apt-get update   #Update software list
 
sudo apt-get install g++
 
sudo apt-get install gcc
 
sudo apt-get install make

2. Check the GPU model (you don't need to check if you know the model of the graphics card, go to the next step; the general command to check the model of the graphics card: lspci | grep -i vga)

lspci | grep -i nvidia

3. Uninstall the original driver

sudo apt-get remove --purge nvidia*

4. Disable nouveau (nouveau is a generic driver) (required)

sudo gedit /etc/modprobe.d/blacklist.conf   #Or(blacklist-nouveau.conf)

Add the following at the end of the opened blacklist.conf, save the text and close

blacklist nouveau
 
options nouveau modeset=0

Enter the following update in the terminal, restart the computer after the update (required)

sudo update-initramfs –u

Then, reboot your server in the terminal,

reboot

After restarting, enter the following in the terminal, there is no output indicating that the shielding is successful

lsmod | grep nouveau

5. In order to install the new Nvidia driver, we need to stop the current display server. The easiest way is to use the telinit command to change to runlevel 3. After entering the following linux command in the terminal, it shows that the server will stop. (must)

sudo telinit 3

Enter the black text interface tty (if you can't get in, press Ctrl + Alt + F1~F6 (corresponding to enter tty1~tty6 respectively)), and then enter the user name and password, similar to the following:

Exit the text interface to the graphical interface, enter sudo telinit 5 or Ctrl + Alt + F1/F7/F8 (some Lenovo computers: Ctrl + Alt + Fn + F1)

6. In the text interface, disable the X-window service and type the following command in the terminal (required)

sudo /etc/init.d/gdm3 stop

7. Driver installation

First to check the corresponding driver of your GPU, I used this website to find the proper driver that I would like to isntall Official Drivers | NVIDIA

Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04

Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04

 After you figure out which driver version is the proper, you don't need to download it to your server, you can use the following conmmand to install it,

Here, my proper driver version is 515, so I use this command as follow to install,

sudo apt install nvidia-driver-515

For you, if your version is not the same to me, such as 410 version, then your command is 

sudo apt install nvidia-driver-410

8. After the driver is installed, enter nvidia-smi in the terminal to check whether it is installed,

nvidia-smi

and it will appear like the following, congratulations !!!

Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04

 Then enter nvidia-settings to bring up the settings interface,

nvidia-settings

similar to the following, and it's OK.

Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04

9.Restart the display service, done

sudo  service  gdm3 start

Fast way: Condensed and minimalist method: for you who are racing against time! 

sudo apt-get update   #update softwart list
 
sudo apt-get install g++  #install necessary dependencies 
sudo apt-get install gcc
sudo apt-get install make
 
sudo apt-get remove --purge nvidia*  #uninstall previous drivers
 
sudo gedit /etc/modprobe.d/blacklist.conf   #disabled nouveau, open this file first, and then add the following two lines at the end of the content to save.
blacklist nouveau   
options nouveau modeset=0
 
sudo update-initramfs –u   #update
reboot   #restart your server
lsmod | grep nouveau   
 
sudo telinit 3  
sudo service gdm3 stop   #stop display service
sudo apt install nvidia-driver-515 #Please install proper driver version corresponding to your Nvidia GPU, in my case, it is 515 version
 
sudo  service  gdm3 start   #start display service, done

References:

​Ubuntu20.04、22.04安装nvidia显卡驱动——超详细、最简单_道阻且长行则将至!的博客-CSDN博客_ubuntu安装nvidia显卡驱动​ ubuntu20.04 安装nvidia显卡驱动后无法启动系统的解决办法_Felix0328的博客-CSDN博客_ubuntu装了显卡驱动无法进入系统

2022年11月30日记录

安装ubuntu20.04之后,发现默认安装的显卡版本是515版本,根本不需要自己再去手动安装。

但是此时我也发现Nvidia在2022年11月28日发布了525版本驱动。文章来源地址https://www.toymoban.com/news/detail-449124.html

到了这里,关于Nvidia RTX A4000 GPU 安装 515驱动记录-Ubuntu22.04的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • NVIDIA GeForce RTX 3090 GPU系列

    NVIDIA GeForce RTX™ 3090 Ti 和 3090 采用第 2 代 NVIDIA RTX 架构 – NVIDIA Ampere 架构。该系列产品搭载专用的第 2 代 RT Core ,第 3代 Tensor Core、全新的 SM 多单元流处理器以及令人惊叹的 24GB G6X 显存,所有特性都旨在全力为游戏玩家和创作者提供震撼的体验。 GeForce RTX 3090 Ti和GeForce RTX

    2024年01月19日
    浏览(46)
  • ubuntu 22.04 安装 RTX 4090 显卡驱动

    1. 官网下载4090: 驱动程序 2. 关闭图形界面 对应的打开图形界面命令为: 3. tty登录之后 安装新版驱动: 如果报错,信息如下: ERROR: An NVIDIA kernel module \\\'nvidia-drm\\\' appears to already be loaded in your kernel.  This may be because it is in use (for example, by an X server, a CUDA program, or the NVIDIA      

    2024年02月05日
    浏览(72)
  • k8s中如何使用gpu、gpu资源讲解、nvidia gpu驱动安装

    环境: centos7.9、k8s 1.22.17、docker-ce-20.10.9 gpu资源也是服务器中常见的一种资源,gpu即显卡,一般用在人工智能、图文识别、大模型等领域,其中nvidia gpu是nvidia公司生产的nvidia类型的显卡,amd gpu则是adm公司生产的amd类型gpu。企业中服务器最常见的就是英伟达gpu服务器了。 本篇

    2024年02月05日
    浏览(45)
  • Linux CentOS安装NVIDIA GPU驱动程序和NVIDIA CUDA工具包

    要在CentOS上安装NVIDIA驱动程序和NVIDIA CUDA工具包,您可以按照以下步骤进行操作: 确保您的系统具有兼容的NVIDIA GPU。您可以在NVIDIA官方网站上查找支持CUDA的GPU型号列表。 如果您之前已经安装了Nouveau驱动程序并禁用了它,请确保按照之前提供的方法启用Nouveau驱动程序。 运行

    2024年02月09日
    浏览(63)
  • 腾讯云国际代充-GPU服务器安装驱动教程NVIDIA Tesla

    腾讯云国际站GPU 云服务器是基于 GPU 的快速、稳定、弹性的计算服务,主要应用于深度学习训练/推理、图形图像处理以及科学计算等场景。 GPU 云服务器提供和标准腾讯云国际 CVM 云服务器一致的方便快捷的管理方式。 GPU 云服务器通过其强大的快速处理海量数据的计算性能,

    2024年02月10日
    浏览(66)
  • Windows WSL2 安装Nvidia-Docker GPU 驱动Paddlepaddle

    😊查看自己电脑显卡型号nvidia上去下载 参考内容: 舊版WSL 的手動安裝步驟 下載: Linux 內核更新包 选择子系统, 推介: Ubuntu 20.04 LTS 下载后双击点击安装 根据nvidia-smi, 选择 CUDA版本 这里选择11.7.0 进入选择Linux - x86_64 - WSL-Ubuntu - 2.0 - runfile(local) https://hub.docker.com/r/nvidia/cuda 上去找

    2024年02月02日
    浏览(97)
  • NVIDIA GPU驱动和CUDA工具包 Linux CentOS 7 在线安装指南

    挑选指定系统和对应的GPU型号下载驱动和CUDA工具包: Linux CentOS安装NVIDIA GPU驱动程序和NVIDIA CUDA工具包_centos安装显卡驱动和cuda_Entropy-Go的博客-CSDN博客 相比之下,本文是在线安装NVIDIA GPU驱动和CUDA工具包方式,省去挑选对应正确安装包的烦恼。 Nvidia官网指导: NVIDIA CUDA Insta

    2024年02月04日
    浏览(54)
  • ubuntu 安装 nvidia 驱动

    本篇文章将介绍ubuntu 安装 nvidia 驱动 希望能写一些简单的教程和案例分享给需要的人 系统:ubuntu 设备:Nvidia GeForce RTX 4090 因为不同的显卡型号可能需要不同版本的驱动。先用命令 lspci | grep -i nvidia 来查看显卡信息。 我们可以看到上图输出的是: root@System-Product-Name:~# lspci

    2024年02月13日
    浏览(62)
  • Ubuntu20.04下安装nvidia驱动

    会显示你的电脑上可用的nvidia驱动。只需要安装推荐的版本即可(后面有recommend字样) 打开电脑里的软件和更新app(这里建议换提前换源,阿里源或者清华源) 来到附加驱动这个页面,选择你刚刚看到的recommand的驱动,点击应用更改,等待安装完成。 然后重启电脑,打开终

    2024年02月13日
    浏览(58)
  • ubuntu22.04手动安装nvidia驱动

    借鉴大佬博客: https://blog.csdn.net/weixin_44123583/article/details/115613758 https://blog.csdn.net/zhangzeyuan56/article/details/122624768 (25条消息) Nvidia 显卡 Failed to initialize NVML Driver/library version mismatch 错误解决方案_苍蓝儿的博客-CSDN博客_failed to initialize nvml: driver/library version 查看合适显卡型号:在

    2024年02月04日
    浏览(58)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包