Bluetooth no laptop não funciona. Ubuntu 15.04

0

Não consigo que meu novo fone de ouvido sem fio funcione com meu laptop instalado no Ubuntu 15.

Eu tentei instalar o que eu acho que são os drivers corretos para minha placa WiFi. Eu tenho um fluxo hp 11. que tem um cartão combinado wifi / bluetooth. que é um modelo: BCM43142 802.11b / g / n

Mas quando eu insiro o comando:

$ bluetoothd -d -n
bluetoothd[7094]: Bluetooth daemon 5.35
bluetoothd[7094]: src/main.c:parse_config() parsing main.conf
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'DiscoverableTimeout' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'PairableTimeout' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'AutoConnectTimeout' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'Name' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'Class' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'DeviceID' in group 'General'
bluetoothd[7094]: src/main.c:parse_config() Key file does not have key 'ReverseServiceDiscovery' in group 'General'
D-Bus setup failed: Name already in use
bluetoothd[7094]: Unable to get on D-Bus

edit: também isso pode ser útil

 WARNING: you should run this program as super-user.
*-network               
   description: Wireless interface
   product: BCM43142 802.11b/g/n
   vendor: Broadcom Corporation
   physical id: 0
   bus info: pci@0000:01:00.0
   logical name: wlp1s0
   version: 01
   serial: d8:5d:e2:d9:34:a3
   width: 64 bits
   clock: 33MHz
   capabilities: bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=wl0 driverversion=6.30.223.248 (r487574) ip=192.168.0.3 latency=0 multicast=yes wireless=IEEE 802.11abg
   resources: irq:16 memory:90400000-90407fff
    
por GameHog 05.01.2016 / 05:27

2 respostas

0

Você precisa instalar o Bluetooth.

sudo apt-get install linux-headers-generic build-essential
wget https://www.dropbox.com/s/3jqigkapf383tod/bluetooth-15.04.tar.gz
wget https://www.dropbox.com/s/qgcu075lvvzq690/BCM20702A0-413c-8143.hcd
sudo cp BCM20702A0-413c-8143.hcd /lib/firmware/brcm/
tar -zxf bluetooth-15.04.tar.gz
cd bluetooth
cp /boot/config-$(uname -r) .config
cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
make -C /lib/modules/$(uname -r)/build M=$PWD modules
sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/
sudo modprobe btusb

Em seguida, verifique se o firmware carregou dmesg | tail , poste-o em um comentário ou edite sua pergunta para incluir

echo btusb | sudo tee -a /etc/modules

Quando o seu kernel é atualizado, o bluetooth irá falhar até você

cd bluetooth
make -C /lib/modules/$(uname -r)/build M=$PWD clean
cp /boot/config-$(uname -r) .config
cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
make -C /lib/modules/$(uname -r)/build M=$PWD modules
sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/
sudo modprobe -r btusb
sudo modprobe btusb
Fonte: Ubuntu 15.04 - Bluetooth - Não adaptadores encontrados - Dell Precision M4800     
por Olimjon 05.01.2016 / 06:08
0

Não se sinta mal, eu tenho tentado fazer com que o blue tooth funcione em 14.04 LTS sem uma resposta real para o fato de sua falha ...

Mesma máquina e configuração, mas com o Windows meu fone de ouvido bluetooth funciona bem com o linux eu prefiro configurar o QEMU no lugar da caixa virtual para descobrir o que há de errado entre o pulso de áudio e o dente azul ...

Na verdade eu configurei configurar o QEMU mais facilmente do que minhas éguas noturnas de dentes azuis.

Bh -proht fone de ouvido Ubuntu 14.04LTS Bluetooth Issues- 1/05/2016! Ainda não está funcionando!

    
por Loren Tedford KC9ZHV 06.01.2016 / 00:48