首页 > 系统相关 >Linux lspci查看pcie设备速度

Linux lspci查看pcie设备速度

时间:2024-11-25 17:55:28浏览次数:8  
标签:Show bus pcie only PCI Linux lspci ID

CUDA学习4——如何查看centos系统PCIe带宽(CSDN_0037_20231127)_如何查看服务器pcie带宽-CSDN博客

# 查看设备id
lspci -n
# 根据设备id查看
lspci -nn -s 设备id -vv | grep -i 'LnkSta:'
~ # lspci -h
lspci: invalid option -- 'h'
Usage: lspci [<switches>]

Basic display modes:
-mm             Produce machine-readable output (single -m for an obsolete format)
-t              Show bus tree

Display options:
-v              Be verbose (-vv or -vvv for higher verbosity)
-k              Show kernel drivers handling each device
-x              Show hex-dump of the standard part of the config space
-xxx            Show hex-dump of the whole config space (dangerous; root only)
-xxxx           Show hex-dump of the 4096-byte extended config space (root only)
-b              Bus-centric view (addresses and IRQ's as seen by the bus)
-D              Always show domain numbers
-P              Display bridge path in addition to bus and device number
-PP             Display bus path in addition to bus and device number

Resolving of device ID's to names:
-n              Show numeric ID's
-nn             Show both textual and numeric ID's (names & numbers)

Selection of devices:
-s [[[[<domain>]:]<bus>]:][<slot>][.[<func>]]   Show only devices in selected slots
-d [<vendor>]:[<device>][:<class>]              Show only devices with specified ID's

Other options:
-i <file>       Use specified ID database instead of /usr/share/pci.ids.gz
-p <file>       Look up kernel modules in a given file instead of default modules.pcimap
-M              Enable `bus mapping' mode (dangerous; root only)

PCI access options:
-A <method>     Use the specified PCI access method (see `-A help' for a list)
-O <par>=<val>  Set PCI access parameter (see `-O help' for a list)
-G              Enable PCI access debugging
-F <file>       Read PCI configuration dump from a given file
~ #
~ #

 

标签:Show,bus,pcie,only,PCI,Linux,lspci,ID
From: https://www.cnblogs.com/daizichuan/p/18568277

相关文章

  • 腾讯通RTX最佳迁移方案,支持移动端与Linux内核国产系统
    一、腾讯通RTX停更带来的核心问题腾讯通RTX停更并下架官网,用户已无法获得后续技术支持或资源下载,同时也迫使用户面临以下无法解决的问题:●无法兼容国产操作系统和移动端:腾讯通RTX的支持范围仅限于Windows和Mac平台,对于日益普及的Linux内核国产操作系统及移动端完全不兼容。●......
  • Linux之CPU缓存
    CPU缓存系统中最快的存储是处理器中的寄存器。但寄存器由于造价比较昂贵,提供的空间也非常有限。因此系统中必须使用存储量大但速度慢的主存(内存)。高速缓存的速度都比主存快。主存的访问时间是8纳秒以上,而缓存的访问时间只有几个CPU时钟周期。在标准的X86平台下,一般有L1L2L3......
  • Linux:fdisk指令
    学习自:fdisk命令详解-知乎Linuxfdisk命令详解:给硬盘分区_fdisk-l-CSDN博客初始化Linux数据盘(fdisk)|华为云_fdisk华为云初始化云盘-CSDN博客1、说明新添加硬盘之后,需要用fdisk指令来完成分区。不要在当前硬盘上使用fdisk,这会删除整个系统。2、用法输入fdisk分区,再输......
  • archlinux 触摸板手势配置
    目录libinput-gestures安装libinput-gestures加入input组创建配置文件可用手势启动libinput-gestures停止libinput-gestures自启动libinput-gesturesTouchpadSynapticssynaptics.4在/etc/X11/xorg.conf.d/目录下会有默认的触摸板配置文件,如果用的libinput,配置文......
  • No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-
    一、报错信息二、解决方法1、打开SDKManager,卸载本地NDK。2、然后点击Apply——>OK,重新启动Android工程,成功运行。思想成体系,培养成意识,自律成习惯。我强烈推荐4本可以改变命运的经典著作:《寿康宝鉴》在线阅读白话文《欲海回狂》在线阅读白话文《阴律无情》在线阅......
  • Linux下二维码识别库Zbar的安装与使用
    1.安装Zbarsudoapt-getinstalllibzbar-dev2.识别流程读取图像并转换为Zbar内建图像类型创建Zbar扫描器设置扫描参数扫描图像并获取结果#include<zbar.h>//仅能包含该头文件,其他头文件宏定义中写了不可用于使用#include<opencv2/opencv.hpp>usingnamespace......
  • 【北京迅为】itop-3562开发板在Linux系统中使用NPU
     3.1在Linux系统中使用NPU下载rknpu2并拷贝到虚拟机Ubuntu,如下图所示,RKNPU2提供了访问RK3562芯片NPU的高级接口。   下载地址为“iTOP-RK3562开发板\02_【iTOP-RK3562开发板】开发资料\12_NPU使用配套资料\01_rknpu2工具”对于RK3562来说,Linux平......
  • Linux常用命令之groupdel命令详解
    groupdel命令详解groupdel是一个用于删除用户组的命令行工具,常见于类Unix操作系统(如Linux和macOS)。通过groupdel命令,可以从系统中移除一个用户组。删除用户组时,需要注意一些重要的事项,以确保不会影响系统的正常运行。基本语法groupdel命令的基本语法如下:group......
  • Linux常用命令之chmod命令详解
    chmod命令详解chmod(changemode)是Unix和Linux操作系统中用于改变文件或目录的访问权限的命令。通过chmod,用户可以设置文件或目录的所有者、所属组以及其他用户(即非所有者且不属于文件所属组的用户)的读取、写入和执行权限。基本语法chmod命令的基本语法如下:chmod......
  • 【Linux定时自动备份脚本】
    流程清单创建备份用的用户back_up,只给需要被备份文件夹的读取权限,和备份存放目录的写权限创建备份脚本,创建清除备份的脚本使用back_up用户,赋予脚本权限,修改crontab定时任务创建备份用户分配权限创建用户sudoadduserback_uppasswdback_up分配只读文件和可读写文......