Ubuntu 14.04 problemas com Bluetooth [105b: e065] no laptop Lenovo

1

Eu tenho o Ubuntu 14.04 no meu Lenovo G500. Não sei porque, mas quando eu ativo o bluetooth no painel de controle ou no blueman nada acontece. Me ajude por favor, TY!

Sry para uma pergunta duplicada, sou novato em "Linux World" e não consigo entender o que devo fazer ...

Mb pode ajudar

dmesg | grep Bluetooth
[    5.408892] Bluetooth: Core ver 2.20
[    5.408913] Bluetooth: HCI device and connection manager initialized
[    5.408916] Bluetooth: HCI socket layer initialized
[    5.408920] Bluetooth: L2CAP socket layer initialized
[    5.408927] Bluetooth: SCO socket layer initialized
[    5.414020] Bluetooth: RFCOMM TTY layer initialized
[    5.414027] Bluetooth: RFCOMM socket layer initialized
[    5.414031] Bluetooth: RFCOMM ver 1.11
[    5.418647] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.418650] Bluetooth: BNEP filters: protocol multicast
[    5.418654] Bluetooth: BNEP socket layer initialized

e

lsmod | grep bluetooth
bluetooth             491520  11 bnep,btusb,rfcomm

e mb que

uname -a; lsusb
Linux inyellowbus-laptop 3.19.0-39-generic #44~14.04.1-Ubuntu SMP Wed Dec 2 10:00:35 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
Bus 004 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 005: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 003 Device 007: ID 105b:e065  
Bus 003 Device 003: ID 12d1:1051 Huawei Technologies Co., Ltd. 
Bus 003 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 0bda:5728 Realtek Semiconductor Corp. 
Bus 001 Device 003: ID 09da:3010 A4 Tech Co., Ltd 
Bus 001 Device 005: ID 1a2c:0c23 China Resource Semico Co., Ltd 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    
por Roman Nguyen 08.12.2015 / 21:20

1 resposta

0

Este adaptador ainda não é suportado pelo kernel do Ubuntu. Ele será suportado em novos kernels, mas eu construo um módulo dkms para o kernel 4.2. Eu sugiro fazer o seguinte:

  1. Instale o kernel 4.2 executando:

    sudo apt-get install linux-generic-lts-wily
    

e reinicie.

  1. Instale o módulo btusb :

    wget https://launchpad.net/~hanipouspilot/+archive/ubuntu/bluetooth/+files/btusb-bcm105b-dkms_0.1_all.deb
    sudo dpkg -i btusb-bcm105b-dkms_0.1_all.deb
    
  2. Converta e instale o firmware usando esta resposta .

Para o kernel 4.2, provavelmente você precisará renomear o arquivo para BCM.hcd .

  1. Reinicie e teste o bluetooth.
por Pilot6 08.12.2015 / 21:45