web-dev-qa-db-fra.com

Ubuntu 15.04 Impossible d'apparier Apple clavier Bluetooth

Je ne parviens pas à associer mon clavier Bluetooth Apple à Ubuntu 15.04. Quelqu'un at-il une idée de comment résoudre ce problème?

user:~$ Sudo rfkill list
[Sudo] password for rufus: 
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: asus-wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: asus-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
3: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
4: brcmwl-0: Wireless LAN
    Soft blocked: no
    Hard blocked: no


~$ lsusb Bus 003 Device 003: ID 05b8:3166 Agiler, Inc. Bus 003 Device 002: ID 8087:8000 Intel Corp. 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:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 04ca:2006 Lite-On Technology Corp. Bus 001 Device 002: ID 0bda:57b5 Realtek Semiconductor Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


~$ dmesg | egrep -i 'blue|firm' [ 0.184510] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 1.750612] psmouse serio4: elantech: assuming hardware version 4 (with firmware version 0x381f00) [ 16.149672] Bluetooth: Core ver 2.20 [ 16.149694] Bluetooth: HCI device and connection manager initialized [ 16.149698] Bluetooth: HCI socket layer initialized [ 16.149701] Bluetooth: L2CAP socket layer initialized [ 16.149713] Bluetooth: SCO socket layer initialized [ 16.241157] bluetooth hci0: Direct firmware load for brcm/BCM43142A0-04ca-2006.hcd failed with error -2 [ 16.241162] Bluetooth: hci0: BCM: patch brcm/BCM43142A0-04ca-2006.hcd not found [ 31.184856] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 31.184859] Bluetooth: BNEP filters: protocol multicast [ 31.184864] Bluetooth: BNEP socket layer initialized [ 31.189160] Bluetooth: RFCOMM TTY layer initialized [ 31.189167] Bluetooth: RFCOMM socket layer initialized [ 31.189171] Bluetooth: RFCOMM ver 1.11 [ 33.525569] Bluetooth: hci0 command 0x1003 tx timeout
1
Brian Turner

Nous allons commencer par obtenir le firmware

wget https://www.dropbox.com/s/xbmm9vfg2fby2zn/fw-04ca_2006.hcd
Sudo cp fw-04ca_2006.hcd /lib/firmware/brcm/BCM43142A0-04ca-2006.hcd
Sudo modprobe -r btusb
Sudo modprobe btusb

Ensuite, voyez si vous pouvez jumeler, si elle ne couple pas la question de montage, à inclure dmesg | tail après la tentative de pairage.

2
Jeremy31

Cela peut être très frustrant. J'ai eu ce problème avec Ubuntu 16.04 et Apple Wireless Keyboard A1314 et je l’ai essayé en essayant avec bluetoothctl avec les instructions de ce rapport de bogue: https: //bugs.launchpad .net/ubuntu/+ source/bluez/+ bug/1490347 suivant: - agent on - default-agent - scan on // copy the device hardware address - pair <replace-with-hw-address> PIN code: #### <- type this on the Apple keyboard Enter PIN Code: #### <- type this on the Apple keyboard Pair successful..! quitter

Une fois le couplage réussi, vous devez appuyer sur Fn + F6 pour le désactiver.

1
mpdeveloper