답변:
그냥 사용하십시오 /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
다른 가상 드라이버 도 찾을 수있는 솔루션을 찾고 싶습니다 . IMHO의 유일한 해결책은 ethtool
또는 을 사용하는 것 lshw
입니다.
sysfs를 명확하게 사용하고 sysfs 내부에서 보이는 모든 명령을 처리하고 싶지 않은 경우 다음과 같은 방법을 사용하십시오.
eth6의 모듈 / 드라이버 란 무엇입니까? "sfc"입니다
# 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
이 lsmod
명령을 사용 하여 Linux 커널에서로드 된 모듈 / 장치 드라이버의 상태를 얻을 수 있습니다 .
특정 장치의 dmesg |grep <device-name>
경우 세부 정보도 얻을 수 있습니다 .
lspci -v
자체적으로 수행합니다.