Answers:
只需使用/sys
。
例。我想找到我的以太网卡的驱动程序:
$ sudo lspci
...
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
$ find /sys | grep drivers.*02:00
/sys/bus/pci/drivers/r8169/0000:02:00.0
那是r8169
。
首先,我需要使用来查找设备的坐标lspci
;然后我找到用于具有这些坐标的设备的驱动程序。
lspci -nk
将向您显示附加的驱动程序。通常,sysfs是正确的搜索位置。
vendorID:productID
?另外,如果它不是PCI设备,而您仅看到它lsusb
呢?
#!/bin/bash
for f in /sys/class/net/*; do
dev=$(basename $f)
driver=$(readlink $f/device/driver/module)
if [ $driver ]; then
driver=$(basename $driver)
fi
addr=$(cat $f/address)
operstate=$(cat $f/operstate)
printf "%10s [%s]: %10s (%s)\n" "$dev" "$addr" "$driver" "$operstate"
done
样本输出:
$ ~/what_eth_drivers.sh
eth0 [52:54:00:aa:bb:cc]: virtio_net (up)
eth1 [52:54:00:dd:ee:ff]: virtio_net (up)
eth2 [52:54:00:99:88:77]: virtio_net (up)
lo [00:00:00:00:00:00]: (unknown)
veth
其他虚拟驱动程序的解决方案。恕我直言,唯一的解决方案是使用ethtool
或lshw
。
如果您只是想简单地使用sysfs,并且不想处理所有这些最终会在sysfs内部查找的命令,请按照以下步骤操作:
例如,eth6的模块/驱动程序是什么?“证监会”是
# ls -l /sys/class/net/eth6/device/driver
lrwxrwxrwx 1 root root 0 Jan 22 12:30 /sys/class/net/eth6/device/driver ->
../../../../bus/pci/drivers/sfc
或更好的..让readlink为您解决路径。
# readlink -f /sys/class/net/eth6/device/driver
/sys/bus/pci/drivers/sfc
所以...找出所有网络接口的驱动程序是什么:
# ls -1 /sys/class/net/ | grep -v lo | xargs -n1 -I{} bash -c 'echo -n {} :" " ; basename `readlink -f /sys/class/net/{}/device/driver`'
eth0 : tg3
eth1 : tg3
eth10 : mlx4_core
eth11 : mlx4_core
eth2 : tg3
eth3 : tg3
eth4 : mlx4_core
eth5 : mlx4_core
eth6 : sfc
eth7 : sfc
eth8 : sfc
eth9 : sfc
lspci -v
自己做。