我如何删除我的设备驱动程序。
description: Wireless interface
product: AR242x / AR542x Wireless Network Adapter (PCI-Express) [168C:1C]
vendor: Atheros Communications Inc. [168C]
physical id: 0
bus info: pci@0000:02:00.0
logical name: wlan0
version: 01
serial: 00:24:d2:13:78:86
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath5k driverversion=3.2.0-38-generic-pae firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bg
答案1
驱动程序是内核模块ath5k
。
blacklist ath5k
你可以通过添加到 中的新文件来阻止它被加载/etc/modprobe.d
。在终端中,运行:
echo blacklist ath5k | sudo tee /etc/modprobe.d/blacklist-custom.conf
该驱动程序是标准 Ubuntu 内核的一部分,因此除非您编译自己的内核并将其排除在外,否则无法完全删除。