web-dev-qa-db-fra.com

Bluetooth ne détecte pas les appareils sur Lenovo avec 12.04

Je suis nouveau sur Ubuntu et je ne suis pas bon en la matière, mais j’ai effectué une nouvelle installation sur mon Lenovo Z507 avec buntu 12.04 et noyau 3.1 tout seul.

Mon bluetooth ne peut pas détecter les appareils, j'ai aussi essayé blueman mais cela n'a pas fonctionné.

Donc, mes résultats de lsusb etc. sont:

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

Je ne peux pas comprendre ce que je lis dans ces.

5
Maria

Tapez les commandes suivantes dans le 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

Redémarrez et voyez si cela fonctionne car il pourrait encore y avoir une deuxième partie pour le faire fonctionner.

Je pensais que les pilotes wifi de lwfinger devaient être utilisés de manière

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

Redémarrez et voyez s'il est corrigé

Si vous obtenez un nouveau noyau par le biais de mises à jour, bluetooth échouera jusqu'à ce qu'un noyau soit créé avec le support de realtek bluetooth. Dans ce cas, vous devrez

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

Ensuite, vous devriez pouvoir redémarrer et avoir de nouveau le bluetooth fonctionnel

4
Jeremy31

J'ai ajouté ce pilote à un ppa. La branche "kernel" devrait être utilisée pour les nouveaux noyaux.

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

L'avantage de cette façon d'installation est que le pilote restera après les mises à jour du noyau.

0
Pilot6