Não é possível usar o bluetooth no meu dispositivo

0

Problema

Não consigo usar o bluetooth. Durante a inicialização, recebo este erro:

usb 1-1.1: firmware: failed to load ar3k/AthrBT_0x01020200.dfu (-2)
Bluetooth: Loading patch file failed

Laptop: Asus x201e SO: Debian 9.2.1 Mate

O que eu tentei

link

echo "blacklist ath3k" | sudo tee /etc/modrobe.d/ath3k.conf

obtenha isso

debian@debian:~$ echo "blacklist ath3k" | sudo tee /etc/modrobe.d/ath3k.conf
tee: /etc/modrobe.d/ath3k.conf: No such file or directory
blacklist ath3k

Eu também tentei isso:

sudo apt install firmware-atheros

saída:

E: Não é possível localizar o firmware do pacote - atheros

Eu também tentei essas instruções para construir o firmware link

29 de dezembro de 2017 Edit: Ainda tenho esse problema não resolvido.

    
por M. Cal 07.12.2017 / 08:01

2 respostas

1

E: Unable to locate package firmware-atheros

O firmware-atheros é um software não-livre, você deve ter o componente non-free para o seu sources.list .

Edite seu sources.list (como root):

apt edit-sources

Este é um exemplo sources.list ( debian wiki: SourcesList ):

deb  http://deb.debian.org/debian stretch main contrib non-free
deb-src  http://deb.debian.org/debian stretch main contrib non-free

deb  http://deb.debian.org/debian stretch-updates main contrib non-free
deb-src  http://deb.debian.org/debian stretch-updates main contrib non-free

deb http://security.debian.org/ stretch/updates main contrib non-free
deb-src http://security.debian.org/ stretch/updates main contrib non-free

Salve e execute:

apt update
apt install firmware-atheros

O pacote firmware-atheros fornece o driver ath3k como a descrição diz:

This package contains the binary firmware for USB wireless network and Bluetooth cards supported by the ar5523, ath3k, ath6kl_sdio, ath6kl_usb, ath9k_htc or ath10k drivers.

Para carregar o driver:

modprobe -v ath3k
    
por 29.12.2017 / 20:43
0

Estou tendo o mesmo problema em um Asus X200CA. Isso é o que eu tive que fazer para que funcionasse.

Instale firmware-atheros a partir do repo não-livre e do GNOME Blueman - o Bluetooth Manager do KDE está quebrado e não consegue adicionar dispositivos. apt install firmware-atheros blueman

Se você não tem um não-livre, adicione-o ao /etc/apt/sources.list deb link alongar principal contribuição não-livre deb link expande / atualiza contribuição principal não-livre deb link stretch-updates principal contrib não-livre

Lista negra ath3k temporariamente %código% lista negra ath3k

Remover o módulo ath3k touch /etc/modprobe.d/ath3k.conf

Adicione rmmod ath3k a /etc/bluetooth/main.conf

Reinicializar - o BlueTooth não funcionará nessa reinicialização

Remover a lista negra temporária do módulo rm /etc/modprobe.d/ath3k.conf

Carregue o módulo ath3k modprobe ath3k

reboot - o bluetooth deve funcionar

InitiallyPowered=true - deve dizer "Não" "Não"

Se não for executado: rfkill list

rfkill 1 unblock - deve dizer "em execução"

se não for executado: hciconfig

    
por 19.08.2018 / 05:29