当前位置: 首页>>技术教程>>正文


如何查看当前安装的WiFi驱动程序的信息?

, ,

问题描述

当我点击Ubuntu 12.04上的其他驱动程序时,我看不到任何驱动程序..如何检查在Ubuntu环境中为WiFi安装的驱动程序。

最佳解决方案

以下命令在终端中运行。用Ctrl + Alt + T打开一个。

要检查无线适配器当前使用的驱动程序,可以运行以下命令:

sudo lshw -C network
  • lshw列出了有关硬件的信息

  • -C network过滤输出仅显示网络类。

在输出中,查找带有description: Wireless interface的条目。

这是我的Ubuntu的输出:

alaa@aa-lu:~$ sudo lshw -C network
[sudo] password for alaa: 
  *-network               
       description: Wireless interface
       product: RTL8723AE PCIe Wireless Network Adapter
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:08:00.0
       logical name: wlan0
       version: 00
       serial: 24:ec:99:21:c9:29
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=rtl8723ae driverversion=3.8.0-27-generic firmware=N/A ip=192.168.1.74 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
       resources: irq:17 ioport:3000(size=256) memory:c3000000-c3003fff

configuration行(最后一行)中,您将看到我的卡当前正在使用的driver。我在输出中突出显示了它。

或者,您可以使用以下命令:

lspci -nnk | grep -A2 0280
  • lspci列出了有关PCI连接卡的信息

  • -nnk指示lspci输出有关这些卡的更多信息(包括正在使用的驱动程序)

  • |将输出传递给下一个命令

  • grep 0280过滤输出以显示包含0280的行,这是用于Ubuntu中无线PCI控制器的PCI class code

  • -A2显示另外两行信息。

这是我的Ubuntu的输出:

08:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723AE PCIe Wireless Network Adapter [10ec:8723]
    Subsystem: Realtek Semiconductor Co., Ltd. Device [10ec:0724]
    Kernel driver in use: rtl8723ae

确定正在使用的驱动程序后,可以使用以下命令显示有关它的更多信息:

modinfo <driver-name>

要检查您当前安装的无线驱动程序,但不一定被任何东西使用,您可以执行以下命令:

find /lib/modules/$(uname -r)/kernel/drivers/net/wireless -name '*.ko'

以上命令将列出您已安装的所有驱动程序。这可能是一个详尽的列表,因为这些是Ubuntu上预装的驱动程序,使人们可以在安装Ubuntu后立即使用他们的无线驱动程序。

次佳解决方案

以下方法包括安装其他软件,其名称为hardinfo。

您可以从USC搜索并安装hardinfo

要么

从终端(CTRL + ALT + T)应用以下命令

sudo apt-get install -y hardinfo 

如果您的无线适配器是集成PCI设备,请从Dash(通过编写:hardinfo)找到hardinfo,打开它并转到PCI设备。

wireless,drivers,ubuntu

内核模块旁边是指定无线适配器的当前加载驱动程序。示例图片为ath9k

如果您的无线适配器是USB设备,请转到设备下左侧列表中的相应条目。

第三种解决方案

你也可以尝试:

ethtool -i wlan0 | grep driver

这为你的wlan卡提供当前加载的驱动程序,输出如下:

uchiha@Hokage:~$ ethtool -i wlan0 | grep driver  
driver: brcmsmac 

这是我的wi-fi卡的驱动程序。如果您没有ethtool,可以通过以下方式安装:

sudo apt-get install ethtool

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/2059.html,未经允许,请勿转载。