Problema de firmware Bluetooth no Ubuntu 13.04 [duplicado]

3

Eu tenho um laptop [Dell Inspiron] [1] 15R 5520. Bluetooth não está funcionando de todo.

rfkill list all

0: hci0: Bluetooth

    Soft blocked: no
    Hard blocked: no

1: phy0: Wireless LAN

    Soft blocked: no
    Hard blocked: no

2: brcmwl-0: Wireless LAN

    Soft blocked: no
    Hard blocked: no

dmesg|grep -i bluetooth

[   13.644428] Bluetooth: Core ver 2.16
[   13.644445] Bluetooth: HCI device and connection manager initialized
[   13.644453] Bluetooth: HCI socket layer initialized
[   13.644455] Bluetooth: L2CAP socket layer initialized
[   13.644461] Bluetooth: SCO socket layer initialized
[   15.861363] Bluetooth: hci0 command 0x1003 tx timeout
[   15.903443] Bluetooth: can't load firmware, may not work correctly
[   17.332535] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   17.332538] Bluetooth: BNEP filters: protocol multicast
[   17.332544] Bluetooth: BNEP socket layer initialized
[   17.393768] Bluetooth: RFCOMM TTY layer initialized
[   17.393781] Bluetooth: RFCOMM socket layer initialized
[   17.393783] Bluetooth: RFCOMM ver 1.11

hciconfig dá

hci0:   Type: BR/EDR  Bus: USB
    BD Address: E0:06:E6:D5:DB:46  ACL MTU: 1021:8  SCO MTU: 64:1
    UP RUNNING PSCAN ISCAN 
    RX bytes:687 acl:0 sco:0 events:56 errors:0
    TX bytes:2024 acl:0 sco:0 commands:52 errors:0

Eu visitei o site link e de acordo com ele

lspci -vnn -d 14e4 : dá

08:00.0 Network controller [0280]: Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365]
 (rev 01)
    Subsystem: Dell Wireless 1704 802.11n + BT 4.0 [1028:0016]
    Flags: bus master, fast devsel, latency 0, IRQ 17
    Memory at c1500000 (64-bit, non-prefetchable) [size=32K]
    Capabilities: <access denied>    
    Kernel driver in use: wl

Então eu tenho o meu PCI-ID como 14e4: 4365 que diz que não é suportado. A alternativa é wl.

O que devo fazer?

Meu Wi-Fi está funcionando normalmente sem problemas, mas o Bluetooth não está funcionando.

sudo dpkg -i wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb gives following error 
(Reading database ... 208543 files and directories currently installed.)
Unpacking wireless-bcm43142-dkms (from wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb) ...
Setting up wireless-bcm43142-dkms (6.20.55.19-1) ...
Loading new wireless-bcm43142-6.20.55.19 DKMS files...
Building only for 3.8.0-23-generic
Building initial module for 3.8.0-23-generic
Traceback (most recent call last):
  File "/usr/share/apport/package-hooks/dkms_packages.py", line 22, in <module>
    import apport
ImportError: No module named apport
Error! Bad return status for module build on kernel: 3.8.0-23-generic (x86_64)
Consult /var/lib/dkms/wireless-bcm43142/6.20.55.19/build/make.log for more information.
    
por chanzerre 03.06.2013 / 17:34

4 respostas

0

Pode ser que o dispositivo bluetooth do seu laptop esteja conectado ao USB, não ao barramento PCI? Experimente lsusb e veja se surge. Por exemplo. (na minha máquina):

$ lsusb
...
Bus 001 Device 005: ID 0a5c:21e6 Broadcom Corp. BCM20702 Bluetooth 4.0 [ThinkPad]
...

Você também deve atualizar o BIOS primeiro, se tiver algum problema de detecção de hardware.

Isso provavelmente será um assunto fora do assunto, mas vou descrever resumidamente como consegui atualizar o BIOS em um laptop Dell:

  • faça download da imagem ISO pré-construída do FreeDOS e use-a para criar uma unidade USB inicializável;
  • faça o download da atualização do BIOS no site de suporte da Dell, certifique-se de obter a versão que será executada no DOS
  • inicialize no FreeDOS e execute a atualização do BIOS.
por Peter and the wolf 05.01.2014 / 15:38
0

Este chip bluetooth não é suportado pelos drivers do kernel. Para dar certo. é melhor relatar um bug no launchpad. Ele precisa ser adicionado ao driver btusb e você também precisará converter e adicionar firmware para isso. De qualquer forma, não pode ser resolvido aqui.

    
por Pilot6 11.05.2015 / 19:05
0

Você já tentou isso e digite no terminal:

 sudo apt-get install dkms
 sudo apt-get install blueman
 sudo dpkg-reconfigure Bluetooth

e pode funcionar bem assim.

    
por Michael 29.08.2015 / 18:06
-1

Para uma instalação do Ubuntu 64-bit , você pode [1] :

  • Faça o download do arquivo link

  • Problema sudo apt-get install linux-headers-generic build-essential dkms

  • Problema sudo dpkg -i wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb

Ainda mais respostas estão na pergunta Ask Ubuntu Lost WiFi após a atualização 12.10 .

1. A partir do fórum oficial do Ubuntu, Driver Broadcom BCM43142 Ubuntu 12.10 64 Bit .

    
por labsin 03.06.2013 / 18:23