A conexão Bluetooth falha ao conectar ao mouse Logitech MX Master S2

0

Estou usando o Linux Mint 18.2 Sonja e quero conectar meu novo mouse Logitech MX Master S2 sem usar o dongle bluetooth, mas diretamente com o módulo bluetooth embutido do meu notebook. Isso funciona até agora com o meu PC depois de executar os comandos:

~$ sudo hciconfig hci0 sspmode 1
~$ sudo hciconfig hci0 down
~$ sudo hciconfig hci0 up

No entanto, digitando sudo hciconfig hci0 sspmode 1 , recebo a seguinte mensagem de erro no meu bloco de anotações:

Can't set Simple Pairing mode on hci0: Input/output error (5)

Depois de ler alguns artigos em diferentes comunidades, eles recomendaram fazer o seguinte:

alpha@Pavilion ~ $ bluetoothctl 
[NEW] Controller B0:35:9F:0E:4F:3D Pavilion [default]
[NEW] Device C5:E2:3F:77:5C:3D MX Master 2S
[NEW] Device DD:6A:F3:5A:A2:A2 MI Band 2
[NEW] Device C5:E2:3F:77:5C:3B MX Master 2S
[NEW] Device 00:02:3C:51:C6:12 Creative T50 Wireless
[bluetooth]# power on
Changing power on succeeded
[bluetooth]# agent on
Agent registered
[bluetooth]# default-agent 
Default agent request successful
[bluetooth]# scan on
Discovery started
[CHG] Device C5:E2:3F:77:5C:3D RSSI: -15
[bluetooth]# scan off
Discovery stopped
[CHG] Device C5:E2:3F:77:5C:3D RSSI: -4
[bluetooth]# trust C5:E2:3F:77:5C:3D
Changing C5:E2:3F:77:5C:3D trust succeeded
[bluetooth]# pair C5:E2:3F:77:5C:3D
Attempting to pair with C5:E2:3F:77:5C:3D
[CHG] Device C5:E2:3F:77:5C:3D Connected: yes
Failed to pair: org.bluez.Error.AuthenticationTimeout
[CHG] Device C5:E2:3F:77:5C:3D Connected: no
[bluetooth]# connect C5:E2:3F:77:5C:3D
Attempting to connect to C5:E2:3F:77:5C:3D
Failed to connect: org.bluez.Error.Failed
[bluetooth]# version
Version 5.37
[bluetooth]# exit
Agent unregistered
[DEL] Controller B0:35:9F:0E:4F:3D Pavilion [default]
alpha@Pavilion ~ $ 

Como você pode ver, ao tentar emparelhar o mouse, ele é brevemente conectado e seguido pelo erro: Failed to pair: org.bluez.Error.AuthenticationTimeout
Alguém tem uma ideia?

Obrigado antecipadamente!

    
por PatrickSteiner 14.03.2018 / 16:13

1 resposta

2

Pelo menos eu encontrei uma maneira de resolver o problema:
Eu instalei o Bluetooth Manager chamado blueman:

~$ sudo apt install blueman

Na interface gráfica há um botão que se parece com uma calculadora, chamado "Criar emparelhamento com o dispositivo" quando você passa o mouse sobre ele. Enquanto clica com o botão direito nem os botões "par" nem "Setup / par dispositivo" funcionam, o botão mencionado acima fez o trabalho!

    
por 14.03.2018 / 16:55