step1、lspci -vt|grep -i net 找出pci网卡所在的pci总线domain、bus、slot,
step2、cat /proc/net/dev找出有多少网络接口,以及网络接口的名字。
例如此处我们找到em4
step3、cd /sys/bus/pci/device/xxxxxx/ 此处xxxx为step1中找到网卡的pci信息。
ls 看到有net信息,表明找对了地方。
step4、cat net 查看是否是em4
如果是表明我们找对了设备。如果不是,就再次进行step3.