Toshiba Satellite c55-896 노트북에 내장된 Bluetooth 어댑터를 찾는 방법

Toshiba Satellite c55-896 노트북에 내장된 Bluetooth 어댑터를 찾는 방법

저는 Ubuntu를 1년 넘게 사용해왔는데, 최근에 다시 오래된 문제에 직면했습니다.

Ubuntu를 처음 설치했을 때 Bluetooth 섹션에 '어댑터를 찾을 수 없습니다'라고 표시되었습니다. 무선 마우스를 사고 싶은데, 이 문제를 해결할 수 있는 방법이 없습니다. 포트를 외부 블루투스용으로 사용하거나 새 노트북을 구입할 수 있습니다.

내 블루투스가 인식되지 않는 이유를 알아내도록 누군가 도와줄 수 있나요?

결과는 lspci -nnk | grep -iA2 net; lsusb 다음과 같습니다.

07:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
    Subsystem: XAVi Technologies Corp. Device [1b9a:28a2]
    Kernel driver in use: ath9k
08:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c)
    Subsystem: Toshiba America Info Systems Device [1179:f920]
    Kernel driver in use: r8169
Bus 001 Device 002: ID 8087:8000 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 003: ID 04f2:b446 Chicony Electronics Co., Ltd 
Bus 002 Device 002: ID 0930:0227 Toshiba Corp. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

런치패드의 버그 신고

의 결과 uname -r는 다음과 같습니다.3.16.0-44-generic

rfkill 목록의 결과는 다음과 같습니다.

 0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

결과는 dmesg | grep -i blue다음과 같습니다:

[   16.841906] toshiba_bluetooth: Detected Toshiba ACPI Bluetooth device - installing RFKill handler
[   16.841925] toshiba_bluetooth: Re-enabling Toshiba Bluetooth
[   16.972752] Bluetooth: Core ver 2.19
[   16.972802] Bluetooth: HCI device and connection manager initialized
[   16.972810] Bluetooth: HCI socket layer initialized
[   16.972813] Bluetooth: L2CAP socket layer initialized
[   16.972821] Bluetooth: SCO socket layer initialized
[   17.103743] Bluetooth: Patch file not found ar3k/AthrBT_0x31010100.dfu
[   17.103747] Bluetooth: Loading patch file failed
[   19.390808] Bluetooth: RFCOMM TTY layer initialized
[   19.390819] Bluetooth: RFCOMM socket layer initialized
[   19.390824] Bluetooth: RFCOMM ver 1.11
[   19.412213] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   19.412216] Bluetooth: BNEP filters: protocol multicast
[   19.412223] Bluetooth: BNEP socket layer initialized
[ 2101.801424] toshiba_bluetooth: Re-enabling Toshiba Bluetooth

답변1

문제는 linux-firmware패키지에 이 모듈에 필요한 펌웨어가 포함되어 있지 않다는 것입니다. 로 표시됩니다 Patch file not found ar3k/AthrBT_0x31010100.dfu.

linux-firmware펌웨어가 포함된 패키지를 설치하면 이 문제를 해결할 수 있습니다 . 터미널에서 실행

wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/rtlwifi/+files/linux-firmware_1.144%2Bar3012_all.deb
sudo dpkg -i linux-firmware*.deb

재부팅 후 블루투스가 작동해야 합니다.

업데이트이 펌웨어를 관리자에게 보냈고 linux-firmware추가되었습니다. 조만간 우분투 저장소에 들어갈 것입니다.

관련 정보