Atheros Bluetooth não funciona no Ubuntu 14.10

1

CORRIGIDO , dê uma olhada no bug do Launchpad !

Eu tenho um problema muito peculiar no Ubuntu Gnome 14.10 x64. Meu adaptador WiFi / Bluetooth interno é detectado e o Wi-Fi funciona bem. Sua funcionalidade Bluetooth também é detectada, todos os comandos de linha de comando e de interface parecem funcionar normalmente (não retornam erros), mas nenhum outro dispositivo Bluetooth é detectado, nem outros dispositivos podem ver meu laptop. Eu suspeitava que fosse um problema de antena (os sintomas são idênticos), mas com o Windows 8.1 funciona perfeitamente.

Meu laptop é um Acer Aspire E3-111-C1LY

root@pantheratigris:~# hcitool dev
Devices:
    hci0    00:71:CC:60:XX:XX              // a full MAC was displayed
root@pantheratigris:~# time hcitool scan   // with nearby Bluetooth visible Android phone
Scanning ...

real    0m10.248s
user    0m0.001s
sys     0m0.005s
matega@pantheratigris:~$ lsusb
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 04f2:b47f Chicony Electronics Co., Ltd 
Bus 001 Device 004: ID 0489:e078 Foxconn / Hon Hai 
Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
matega@pantheratigris:~$ lsusb -t
/:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 5000M
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 480M
    |__ Port 2: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
        |__ Port 1: Dev 4, If 0, Class=Wireless, Driver=btusb, 12M
        |__ Port 1: Dev 4, If 1, Class=Wireless, Driver=btusb, 12M
    |__ Port 4: Dev 3, If 0, Class=Video, Driver=uvcvideo, 480M
    |__ Port 4: Dev 3, If 1, Class=Video, Driver=uvcvideo, 480M
matega@pantheratigris:~$ hciconfig --all
hci0:   Type: BR/EDR  Bus: USB
    BD Address: 00:71:CC:60:XX:XX  ACL MTU: 1022:8  SCO MTU: 183:5
    UP RUNNING PSCAN 
    RX bytes:1212 acl:0 sco:0 events:72 errors:0
    TX bytes:2050 acl:0 sco:0 commands:72 errors:0
    Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
    Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 
    Link policy: RSWITCH HOLD SNIFF 
    Link mode: SLAVE ACCEPT 
    Name: 'ubuntu-gnome-0'
    Class: 0x7c0100
    Service Classes: Rendering, Capturing, Object Transfer, Audio, Telephony
    Device Class: Computer, Uncategorized
    HCI Version: 4.0 (0x6)  Revision: 0x3101
    LMP Version: 4.0 (0x6)  Subversion: 0x1
    Manufacturer: Atheros Communications, Inc. (69)
matega@pantheratigris:~$ 
    
por matega 27.12.2014 / 10:40

2 respostas

6

Você pode postar os resultados de lsusb e hciconfig --all , pois há alguns chipsets que ainda não são suportados corretamente

Consegui consertar alguns módulos para que o seu bluetooth funcionasse em 14.10 com o kernel de 32 bits de 3.16.0-28, verifique com uname -a e ele mostrará x86_64 também

Novos módulos compactados podem ser encontrados link extraí-los para a área de trabalho e, em seguida, no terminal sudo mv /lib/modules/3.16.0-28-generic/kernel/drivers/bluetooth/ath3k.ko /lib/modules/3.16.0-28-generic/kernel/drivers/bluetooth/ath3k.ko.bak

sudo modprobe -r btusb

sudo mv /lib/modules/3.16.0-28-generic/kernel/drivers/bluetooth/btusb.ko /lib/modules/3.16.0-28-generic/kernel/drivers/bluetooth/btusb.ko.bak
cd Desktop
cd Ubuntu1410
sudo cp btusb.ko /lib/modules/3.16.0-28-generic/kernel/drivers/bluetooth/btusb.ko
sudo cp ath3k.ko /lib/modules/3.13.0-39-generic/kernel/drivers/bluetooth/ath3k.ko
sudo apt-get install linux-firmware
sudo modprobe ath3k
sudo modprobe btusb

Com alguma sorte, funcionará como eu não testemunhei a falha xhci com o carregamento do firmware em 14.10, como foi em 14.04

Nova edição em 1/1/2015, um método diferente com arquivos ath3k.c e btusb.c corrigidos Edit: baixe este link e extraia para / home para ter uma pasta chamada test em casa, depois no terminal

sudo apt-get install build-essential
cd test
cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
make all
sudo modprobe -r ath3k
sudo modprobe -r btusb
sudo mv /lib/modules/$(uname -r)/kernel/drivers/bluetooth/ath3k.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/ath3k.ko.bak
sudo mv /lib/modules/$(uname -r)/kernel/drivers/bluetooth/btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/btusb.ko.bak
sudo cp ath3k.ko  /lib/modules/$(uname -r)/kernel/drivers/bluetooth/
sudo cp btusb.ko  /lib/modules/$(uname -r)/kernel/drivers/bluetooth/

depois Reinicie.

    
por Jeremy31 27.12.2014 / 16:17
1

Tente com o comando abaixo e instale o genoma do bluetooth novamente e, em seguida, verifique se você consegue se conectar ao dispositivo Bluetooth,

sudo apt-get install bluetooth blueman bluez-hcidump bluewho python-bluez  bluez-tools

Espero que isso ajude.

    
por vembutech 27.12.2014 / 11:01