설치된 Wi-Fi 드라이버를 찾는 방법은 무엇입니까?


22

에 대해 알고 lsmod있지만 어떤 드라이버가 무엇을하는지 어떻게 알 수 있습니까?

답변:


28
$ readlink /sys/class/net/wlan0/device/driver
../../../../bus/pci/drivers/ath5k

즉, /sys장치 의 계층 구조 ( /sys/class/net/$interface/device)에는 /sys드라이버 의 계층 구조에 대한 심볼릭 링크가 포함 됩니다. /sys해당되는 경우 모듈 의 계층 구조에 대한 심볼릭 링크도 있습니다 . 이것은 무선 인터페이스뿐만 아니라 대부분의 장치에 적용됩니다.


4
또는 basename $( readlink /sys/class/net/eth0/device/driver ).
mattdm

14

더 좋은 방법이있을 수 있지만 lshw -class network( 루트로 )를 사용하여 다음과 같은 결과를 얻습니다.

  *-network               
       description: Ethernet interface
       product: 82566MM Gigabit Network Connection
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       logical name: eth0
       version: 03
       serial: 00:a0:d1:a3:87:c8
       size: 1GB/s
       capacity: 1GB/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=1.0.2-k2 duplex=full firmware=0.3-0 ip=192.168.2.206 latency=0 link=yes multicast=yes port=twisted pair speed=1GB/s
       resources: irq:29 memory:fc300000-fc31ffff memory:fc325000-fc325fff ioport:1840(size=32)
  *-network
       description: Wireless interface
       product: PRO/Wireless 4965 AG or AGN [Kedron] Network Connection
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:06:00.0
       logical name: wlan0
       version: 61
       serial: 00:1d:e0:69:28:07
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlagn ip=192.168.0.104 latency=0 multicast=yes wireless=IEEE 802.11abgn
       resources: irq:31 memory:c8000000-c8001fff
  *-network DISABLED
       description: Ethernet interface
       physical id: 3
       logical name: vboxnet0
       serial: 0a:00:27:00:00:00
       capabilities: ethernet physical
       configuration: broadcast=yes multicast=yes

driver그 출력에서 grep 할 수 있습니다 . 내 경우에는lsmod | grep iwlagn 을 제공합니다.

iwlagn                 63559  0 
iwlcore                67702  1 iwlagn
mac80211              123574  2 iwlagn,iwlcore
cfg80211               87657  3 iwlagn,iwlcore,mac80211

각각의 의미가 무엇인지 묻지 마십시오. :)


감사. 을 사용해 보았지만 lshw다른 모든 구성에서 드라이버가 손실되었습니다. :)
apoorv020

1
추신 : 4 번째 열은 종속성 열이고 3 번째 열은 이러한 종속성의 합입니다. 하나의 드라이버는 일반적으로 해당을 가지고 각각의 여러 가지 .ko 파일로 구성되어 있습니다 lsmod.
apoorv020

3

USB 기반 WiFi 장치에 관심이 있다면 다음 lsusb명령 을 사용하여 드라이버 이름을 볼 수 있습니다 .

lsusb -t
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.