我是 ubuntu 新手,遇到了各种各样的问题,
我的 wifi 连接非常慢而且断断续续,有时会随机断开连接,所以我想知道如何更新适配器的驱动程序?
此外,它在传输数据时一直闪烁,我觉得非常烦人,我已经阅读并尝试了关于编辑的不同解决方案无线网络配置文件文件并添加选项 iwlwifi led_mode=1但它对我来说不起作用,我猜这与驱动程序有关,我觉得我错过了一行或使用了英特尔适配器而不是 Atheros 的设置。
我在 HP Pavilion DV7-1245dx 中使用 Ubuntu 14.04 64 位。
*-network
description: Wireless interface
product: AR242x / AR542x Wireless Network Adapter (PCI-Express)
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:09:00.0
logical name: wlan0
version: 01
serial: 00:24:2b:21:93:d7
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath5k driverversion=3.13.0-29-generic firmware=N/A ip=192.168.2.7 latency=0 link=yes multicast=yes wireless=IEEE 802.11bg
答案1
我在 Ubuntu 14.04 上通过运行命令暂时解决了这个问题:
sudo iwconfig wlan0 rate 54M
答案2
安装编译驱动程序所需的依赖项:
sudo apt-get install --reinstall linux-headers-generic linux-headers-$(uname -r) build-essential dkms
去这里并将最新的驱动程序下载到您的计算机,然后将文件放在您的桌面上并右键单击并在此处提取。
然后按照以下说明编译驱动程序。
cd ~/Desktop/backports-3.15-rc1-1
make defconfig-ath5k
make
sudo make install
sudo modprobe -rv ath5k
sudo modprobe -v ath5k
当您升级内核时,您需要执行以下操作:
cd ~/Desktop/backports-3.15-rc1-1
make clean
make defconfig-ath5k
make
sudo make install
sudo modprobe -rv ath5k
sudo modprobe -v ath5k