ubuntu 22.04 硬件配置 查看 显卡

ubuntu 22.04 硬件配置 查看 显卡

1. 参考文档

ubuntu 安装 nvidia 驱动
https://blog.51cto.com/u_13628828/7056095

input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11

input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12

input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13

input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14

input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15

input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16

input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17

lspci

00:00.0 Host bridge: Intel Corporation Device a703 (rev 01)

00:01.0 PCI bridge: Intel Corporation Device a70d (rev 01)

00:02.0 Display controller: Intel Corporation Device a780 (rev 04)

00:04.0 Signal processing controller: Intel Corporation Device a71d (rev 01)

00:08.0 System peripheral: Intel Corporation Device a74f (rev 01)

00:14.0 USB controller: Intel Corporation Device 7ae0 (rev 11)

00:14.2 RAM memory: Intel Corporation Device 7aa7 (rev 11)

00:15.0 Serial bus controller: Intel Corporation Device 7acc (rev 11)

00:16.0 Communication controller: Intel Corporation Device 7ae8 (rev 11)

00:17.0 SATA controller: Intel Corporation Device 7ae2 (rev 11)

00:1b.0 PCI bridge: Intel Corporation Device 7ac4 (rev 11)

00:1c.0 PCI bridge: Intel Corporation Device 7ab9 (rev 11)

00:1f.0 ISA bridge: Intel Corporation Device 7a88 (rev 11)

00:1f.3 Audio device: Intel Corporation Device 7ad0 (rev 11)

00:1f.4 SMBus: Intel Corporation Device 7aa3 (rev 11)

00:1f.5 Serial bus controller: Intel Corporation Device 7aa4 (rev 11)

00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (17) I219-LM (rev 11)

01:00.0 VGA compatible controller: NVIDIA Corporation Device 2882 (rev a1)

01:00.1 Audio device: NVIDIA Corporation Device 22be (rev a1)

02:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd Device a80d

03:00.0 Unassigned class ff00: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)

Linux(Ubuntu)系统查看显卡型号

方法一、lspci | grep -i vga

01:00.0 VGA compatible controller: NVIDIA Corporation Device 2882 (rev a1)

又一番搜索,最终找到这个网站

The PCI ID Repository
https://admin.pci-ids.ucw.cz/mods/PC/10de/2882

可以按照十六进制数字代码找到相应的显卡型号。

Name: AD107 GeForce RTX 4060

Name: AD107 GeForce RTX 4060

品牌型号:英伟达 RTX4060

4060显存为8GB。

4060显卡使用Ada Lovelace架构,采用AD107核心,它是Ada Lovelace GPU中最小的一款。

4060显卡拥有3072个CUDA核心,配备8GB GDDR6显存,显存位宽为128bit,显存速率为18Gbps,

显存带宽为288GB/s,基础频率为1470MHz,满血功耗则在140w左右,支持DLSS3神经网络渲染、高帧率的第三代光线追踪等技术。

GeForce RTX 4060的功能特点:

1、8GB GDDR6显存:RTX 4060配备了8GB GDDR6显存,显存位宽为128位,带宽为256GB/s。

2、DLSS 3.0技术:RTX 4060支持NVIDIA DLSS 3.0技术,可以在游戏中实现更加逼真的图像效果。

3、光线追踪技术:RTX 4060支持光线追踪技术,可以在游戏中实现更加真实的光影效果。

4、NVIDIA Studio平台:RTX 4060支持NVIDIA Studio平台,可以加速创意工作流,提高效率。

5、低功耗设计:RTX 4060的功耗相对较低,可以在长时间游戏中保持稳定的性能表现。

6、适用于多种平台:RTX 4060支持多种平台,包括PC、笔记本电脑、游戏主机等。

<2> ubuntu下检查nvidia显卡驱动是否安装ok?---------感觉直接从这一步开始就可以了---------

使用 sudo lshw -c video 即可,如果在configuration这一行中有driver=nvidia的字符串,那么就说明nvidia的驱动安装ok。但是我的显示为 configuration: driver=nouveau latency=0,证明不ok。这说明安装Nvidia显卡的官⽅驱动和系统⾃带的nouveau驱动冲突,所以这时候要禁用nouveau并重启,输入 lsmod | grep nouveau

按照这篇教程一步步来:Ubuntu20.04 系统禁用自带的Nouveau驱动

c 复制代码
  *-display UNCLAIMED       
       description: VGA compatible controller
       product: NVIDIA Corporation
       vendor: NVIDIA Corporation
       physical id: 0
       bus info: pci@0000:01:00.0
       version: a1
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress vga_controller cap_list
       configuration: latency=0
       resources: iomemory:600-5ff iomemory:600-5ff memory:71000000-71ffffff memory:6000000000-600fffffff memory:6010000000-6011ffffff ioport:3000(size=128) memory:72080000-720fffff
  *-display UNCLAIMED
       description: Display controller
       product: Intel Corporation
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 04
       width: 64 bits
       clock: 33MHz
       capabilities: pciexpress msi pm bus_master cap_list
       configuration: latency=0
       resources: iomemory:600-5ff iomemory:400-3ff memory:6012000000-6012ffffff memory:4000000000-400fffffff ioport:4000(size=64) memory:4010000000-4016ffffff memory:4020000000-40ffffffff
  *-graphics
       product: EFI VGA
       physical id: 2
       logical name: /dev/fb0
       capabilities: fb
       configuration: depth=32 resolution=1920,1080
相关推荐
金士顿2 分钟前
System.Text.Json Source Generator 深度解析:为什么 Native AOT 不喜欢反射
linux·asp.net core·arm64·net·native aot
wdfk_prog1 小时前
ROS教程08:从 TransportTCP::connect() 追到 TCPROS Connection Header、序列化与 Socket 数据传输
运维·缓存·docker·容器·ros
做运维的阿瑞1 小时前
Python 标准库汇总:分类速览与常用模块清单
linux·运维·python
百万蹄蹄向前冲1 小时前
密码都对Node.js却连不上Linux数据库
linux·mysql
彧azz1 小时前
Linux 网络编程学习总结
linux·网络·笔记·学习·面试
日常筹谋记2 小时前
自动化仓储安全防护工况评估:明治传感器AS-33C技术适配性分析
大数据·运维·创业创新·业界资讯
susplus2 小时前
【ARM 裸机开发 (IMX6ULL-mini)】GNU工具、Makefile 工程构建、链接脚本详解|C 语言点灯 + 蜂鸣器驱动
linux·arm·makefile·imx6ull
Shadow(⊙o⊙)2 小时前
Linux进阶知识1.0
linux·运维·服务器
>Andre<3 小时前
UFS5.0标准中文全译·卷一:范围、术语与架构
android·linux·嵌入式硬件
用户0510122572963 小时前
Linux下有关QT显示环境变量设置
linux·嵌入式