我正在使用装有 Ubuntu Linux 18.04 的 Dell Inspiron 台式机。我的台式机的无线速度太慢。以下是详细信息:
description: Wireless interface
product: QCA9565 / AR9565 Wireless Network Adapter
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlp3s0
version: 01
serial: 9c:30:5b:e6:d8:71
width: 64 bits
clock: 33MHz
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 001 Device 004: ID 413c:2113 Dell Computer Corp.
Bus 001 Device 003: ID 413c:301a Dell Computer Corp.
Bus 001 Device 006: ID 0cf3:e005 Atheros Communications, Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
答案1
我在笔记本电脑(Lenovo)上安装 ubuntu 18.04 后修复了这个问题 - 原来是 11n 和 iwlwifi Intel 芯片出了问题。解决方法是关闭它。首先使用以下命令检查它是否正常工作:
sudo modprobe -r iwlwifi
sudo modprobe iwlwifi 11n_disable=1
使用此命令使其永久生效:
echo "options iwlwifi 11n_disable=1" | sudo tee /etc/modprobe.d/iwlwifi.conf
我这样做了之后我的 wifi 速度立即恢复正常。