Linux 查看物理地址:一步一步指南(linux查看物理地址)

Linux操作系统内在广泛得到使用,在某些场景下需要查看计算机的物理地址,下文将详细介绍如何在Linux系统查看物理地址。

若要查看物理地址,我们可以考虑两个步骤:

第一步:查看网卡MAC地址

在shell中输入以下代码

“`shell

ifconfig -a

就可以查看网卡的MAC地址:

eth0 Link encap:Ethernet HWaddr 00:50:56:3F:6C:FC

inet addr:192.168.37.130 Bcast:192.168.37.255 Mask:255.255.255.0

inet6 addr: fe80::250:56ff:fe3f:6cfc/64 Scope:Link

UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1

RX packets:8 errors:0 dropped:0 overruns:0 frame:0

TX packets:52 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:648 (648.0 b) TX bytes:7076 (6.9 KiB)

Interrupt:16

“`

然后我们就可以看见该网卡的MAC地址,它就是我们要查找的物理地址。

第二步:查看PCI设备

若想更深入地查看PCI设备,可以使用lspci命令:

“`shell

lspci

该命令用于查看PCI设备的详细信息,如:

00:00.0 PCI bridge: Intel Corporation Device 1909

00:01.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 21)

00:03.0 PCI bridge: Intel Corporation Sky Lake PCIe Controller (x4 mode, rev 06)

00:04.0 PCI bridge: Intel Corporation Sky Lake PCIe Controller (x16 mode, rev 06)


最后可以使用lspci命令查看PCI设备的物理地址:
```shell
lspci -D

以上操作可以查看PCI设备的详细信息,包括其物理地址:

00:00.0 00:09.0: PCI bridge: Intel Corporation Device 1909
00:01.0 00:19.0: PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 21)
00:03.0 00:29.0: PCI bridge: Intel Corporation Sky Lake PCIe Controller (x4 mode, rev 06)
00:04.0 00:39.0: PCI bridge: Intel Corporation Sky Lake PCIe Controller (x16 mode, rev 06)

以上就是查看Linux系统中物理地址的方法,其中使用ifconfig和lspci命令比较方便地查看物理地址,利用前面介绍的步骤可以轻松地查看Linux系统物理地址。


数据运维技术 » Linux 查看物理地址:一步一步指南(linux查看物理地址)