Bluetooth não detecta dispositivos no lenovo com 12.04

5

Eu sou novo no Ubuntu e não sou bom nisso, mas eu fiz uma instalação limpa no meu Lenovo Z5070 com Ubuntu 12.04 e 3.13 kernel sozinho.

Meu bluetooth não detecta dispositivos, também testei blueman , mas não funcionou.

Então meus resultados de lsusb etc. são:

Bus 001 Device 002: ID 8087:8000 Intel Corp.     
Bus 002 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver   
Bus 002 Device 007: ID 045e:0039 Microsoft Corp. IntelliMouse Optical   
Bus 002 Device 003: ID 0bda:0129 Realtek Semiconductor Corp.    
Bus 002 Device 004: ID 174f:14b2 Syntek   
Bus 002 Device 005: ID 0bda:b728 Realtek Semiconductor Corp.   
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub  

[    0.174128] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored  
[    4.554899] rtl8723be: Using firmware rtlwifi/rtl8723befw.bin  
[    4.978542] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x594f03)   
[    6.117875] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS   
[    6.608236] r8169 0000:01:00.0: Direct firmware load failed with error -2   
[    6.610477] r8169 0000:01:00.0 eth0: unable to load firmware patch rtl_nic/rtl8168g-3.fw (-2)    

0: hci0: Bluetooth    
    Soft blocked: no  
    Hard blocked: no  
1: ideapad_wlan: Wireless LAN  
    Soft blocked: no  
    Hard blocked: no  
2: ideapad_bluetooth: Bluetooth  
    Soft blocked: no  
    Hard blocked: no  
3: phy0: Wireless LAN  
    Soft blocked: no  
    Hard blocked: no  

[    2.250559] usb 2-7: Product: Bluetooth Radio   
[    4.109311] Bluetooth: Core ver 2.17  
[    4.109334] Bluetooth: HCI device and connection manager initialized  
[    4.109340] Bluetooth: HCI socket layer initialized  
[    4.109341] Bluetooth: L2CAP socket layer initialized  
[    4.109353] Bluetooth: SCO socket layer initialized  
[    6.178347] Bluetooth: BNEP (Ethernet Emulation) ver 1.3  
[    6.178349] Bluetooth: BNEP filters: protocol multicast  
[    6.178356] Bluetooth: BNEP socket layer initialized  
[    6.184069] Bluetooth: RFCOMM TTY layer initialized  
[    6.184079] Bluetooth: RFCOMM socket layer initialized  
[    6.184084] Bluetooth: RFCOMM ver 1.11  

Linux maria-Lenovo-Z50-70 3.13.0-51-generic #84~precise1-Ubuntu SMP Wed   Apr 15 21:45:46 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux  

bluetooth             411194  14 rfcomm,bnep,btusb

Eu não consigo entender o que estou lendo nelas.

    
por Maria 02.05.2015 / 13:08

2 respostas

4

Digite os seguintes comandos no terminal:

sudo apt-get install build-essential linux-headers generic
wget https://github.com/lwfinger/rtl8723au_bt/archive/troy.zip
unzip troy.zip
cd rtl8723au_bt-troy
make
sudo make install

Reinicialize e veja se funciona, pois ainda pode haver uma segunda parte para que funcione.

Eu achei que os drivers wifi do lwfinger precisavam ser usados para

sudo apt-get install git
git clone https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
make
sudo make install

Reinicie e veja se está corrigido

Se você receber um novo kernel por meio de atualizações, o bluetooth falhará até que um kernel seja feito com suporte para o bluetooth realtek, até então você precisará

cd rtl8723au_bt-troy
make clean
make
sudo make install
cd ~/rtlwifi_new
make clean
make
sudo make install

Então você deve poder reiniciar e ter o bluetooth funcional novamente

    
por Jeremy31 02.05.2015 / 14:23
0

Eu adicionei este driver a um ppa. A ramificação "kernel" deve ser usada para novos kernels.

sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtl8723au-bt-dkms

A vantagem de instalar desta forma é que o driver ficará após as atualizações do kernel.

    
por Pilot6 02.06.2015 / 12:42