Ubuntu 13.10 laptop bluetooth não está funcionando corretamente [fechado]

6

Eu tenho um problema com o bluetooth no Ubuntu 13.10 e não tenho idéia de onde começar a procurar. Eu finalmente dei um cat /var/log/syslog | grep -i bluetooth e é isso que eu consegui (depois de sudo service bluetooth restart ):

Oct 25 19:30:02 razvan-asus bluetoothd[764]: Terminating
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Endpoint unregistered: sender=:1.58 path=/MediaEndpoint/A2DPSink
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Endpoint unregistered: sender=:1.58 path=/MediaEndpoint/A2DPSource
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Endpoint unregistered: sender=:1.58 path=/MediaEndpoint/HFPAG
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Endpoint unregistered: sender=:1.58 path=/MediaEndpoint/HFPHS
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Stopping SDP server
Oct 25 19:30:02 razvan-asus bluetoothd[764]: Exit
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Bluetooth daemon 4.101
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Starting SDP server
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: DIS cannot start: GATT is disabled
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init deviceinfo plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init proximity plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init time plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init alert plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init thermometer plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Failed to init gatt_example plugin
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Bluetooth Management interface initialized
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: input-headset driver probe failed for device 7C:61:93:D4:A5:8F
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Adapter /org/bluez/3231/hci0 has been enabled
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Unknown command complete for opcode 19
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: hci0: Get Connections (0x0015) failed: Not Powered (0x0f)
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Endpoint registered: sender=:1.58 path=/MediaEndpoint/HFPAG
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Endpoint registered: sender=:1.58 path=/MediaEndpoint/HFPHS
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Endpoint registered: sender=:1.58 path=/MediaEndpoint/A2DPSource
Oct 25 19:30:02 razvan-asus bluetoothd[3231]: Endpoint registered: sender=:1.58 path=/MediaEndpoint/A2DPSink

Como nunca trabalhei com o bluetooth antes (agora tenho alguns alto-falantes sem fio), não sei como diagnosticar o problema. Algum de vocês já encontrou isso? ou é só eu?

EDITAR:

Devo acrescentar que o laptop que estou usando é o ASUS U31S

EDIT2:

Hoje eu tentei procurar um novo dispositivo (um mouse) com o bluetooth "set up new device" e funcionou. E depois do emparelhamento eu também podia acessar os alto-falantes. Antes disso, hcitool dev não daria nada agora:

Devices:
        hci0    74:2F:68:69:BD:AD

Então ... até onde eu posso detectar, antes do emparelhamento o hci0 estava inativo e depois da busca e do emparelhamento bem-sucedido o dispositivo ligou e agora as outras conexões também funcionam ... Alguma idéia? Obrigado.

    
por razvanc 25.10.2013 / 20:37

1 resposta

0

Talvez isso ajude:

Eu suspeito que seu bluetooth não está funcionando no 13.10 pode ser atribuído a um bug no kernel mais recente.

Pode ser corrigido instalando um fork do bazar abaixo:

link

As instruções de instalação podem ser encontradas em:

Como faço para instalar um garfo bazar em 13.10

O resumo dos comandos a serem usados:

sudo apt-get install bzr build-essential 
sudo apt-get build-dep indicator-bluetooth  
bzr branch lp:~robert-ancell/indicator-bluetooth/dont-hide-on-rfkill  
cd dont-hide-on-rfkill  
dpkg-buildpackage  
cd ..
sudo dpkg -i indicator-bluetooth_0.0.6daily13.02.19-0ubuntu1_amd64.deb

Reinicie o sistema.

Os detalhes estão em indicador de Bluetooth ausente

    
por charlie 03.11.2013 / 11:14