如何获取 Linux 上的连接端口类型列表
例如,1 x HDMI 4 x USB 1x DVI
答案1
安装dmidecode
软件包。然后以 root 身份运行dmidecode --type 8
。您将看到主板识别的每个连接器的输出块。例如,这是我的主板的一个 SATA 端口:
Handle 0x0021, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA1
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
您还可以执行类似操作
sudo dmidecode | grep "Port Type" | sort | uniq -c | cut -b 1-9,20-60
示例输出:
9 Audio Port
3 Firewire (IEEE P1394)
1 Keyboard Port
1 Mouse Port
1 Network Port
4 Other
8 SATA
1 Serial Port 16550A Compatible
6 USB
4 个“其他”端口是内部风扇连接器。