Ubuntu 18.04 使用蓝牙耳机时 Wi-Fi 连接速度较慢

Rod*_*ald 7 wireless bluetooth ath9k

我最近从 Windows 10 更改为 Ubuntu 18.04。

我正面临一些我不知道如何处理的奇怪问题。我的下载工作完美,直到我开始使用蓝牙耳机在 Spotify 上听到一些歌曲。当我点击播放时,我的下载速度立即变为零(或接近零)。我不知道如何解决这个连接缓慢的问题。
正常下载

在 Spotify 之后下载

rodrigo@RodrigoLAP:~$ lspci -knn | grep Net -A3; lsusb
03:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
    Subsystem: Lite-On Communications Inc QCA9565 / AR9565 Wireless Network Adapter [11ad:0803]
    Kernel driver in use: ath9k
    Kernel modules: ath9k
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader [10ec:5287] (rev 01)
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 04f2:b573 Chicony Electronics Co., Ltd 
Bus 001 Device 009: ID 04ca:3014 Lite-On Technology Corp. 
Bus 001 Device 003: ID 279e:024e  
Bus 001 Device 007: ID 04e8:6860 Samsung Electronics Co., Ltd Galaxy (MTP)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Run Code Online (Sandbox Code Playgroud)

Pil*_*ot6 7

问题在于蓝牙和 Wi-Fi 工作在相同的无线电频率上。

Atheros 适配器默认禁用共存技术,可能是因为很久以前它可能会导致某些旧设备出现一些问题。

你可以通过运行打开它

sudo tee /etc/modprobe.d/ath9k.conf <<< "options ath9k btcoex_enable=1"
Run Code Online (Sandbox Code Playgroud)

该设置将在重新启动后应用。

以防万一可以通过以下方式恢复设置

sudo rm /etc/modprobe.d/ath9k.conf
Run Code Online (Sandbox Code Playgroud)

  • 问题保持不变:打开蓝牙,wifi速度下降。 (3认同)
  • 以防万一有人需要它,我不得不用 `ath10k_pci` 替换 `ath9k`。用`lspci -knn | 验证你的内核模块名称。grep Net -A3; lsusb`。Wifi 现在工作正常。但是当设备距离笔记本电脑超过 1m 时,蓝牙仍然存在延迟/故障。 (2认同)