O Bluetooth do Dell Laptop não é detectado pelo Ubuntu

1

Tenho o Dell vostro 3500 Laptop. Eu instalei o Ubuntu 12.04. Não detecta meu bluetooth. abaixo está minha informação.

lsusb | grep Bluetooth
Bus 001 Device 003: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)


lsmod | grep bluetooth
bluetooth             158438  10 bnep,rfcomm


rfkill list
0: brcmwl-0: Wireless LAN
Soft blocked: yes
Hard blocked: no
1: dell-wifi: Wireless LAN
Soft blocked: yes
Hard blocked: no

(wi-fi funcionando bem. Eu desativei usando o menu de rede. Então, tudo bem)

dmesg | grep Bluetooth
[   21.981835] Bluetooth: Core ver 2.16
[   21.981872] Bluetooth: HCI device and connection manager initialized
[   21.981877] Bluetooth: HCI socket layer initialized
[   21.981881] Bluetooth: L2CAP socket layer initialized
[   21.981891] Bluetooth: SCO socket layer initialized
[   21.986047] Bluetooth: RFCOMM TTY layer initialized
[   21.986059] Bluetooth: RFCOMM socket layer initialized
[   21.986065] Bluetooth: RFCOMM ver 1.11
[   22.361783] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   22.361791] Bluetooth: BNEP filters: protocol multicast

Então, como posso consertar isso?

eu vi outro lugar (não me lembro qual site) Eles disseram, algumas vezes, quando no windows, se bluetooth desativado pelo driver do windows, ele não pode ser ativado pelo linux. Então, eu devo instalar o windows e ativar o blueethooth a partir do windows e depois instalar novamente o linux. Isso é impossível para mim, porque não tenho mídia de instalação do Windows.

Mas eu tentei isso, que é o Windows XP instalado na caixa virtual. Vbox me mostrou os dispositivos USB desconhecidos. Eu conectei-os e instalei drivers do windows bluethooth para o xp. Mas também não detectou o Bluethooth. Além disso, quando eu defino o modo no switch de hardware, esses dispositivos desconhecidos desaparecem do menu de seleção do dispositivo USB Vbox. Então, eles definitivamente têm algo a ver com wifi ou bluethooth.

Por favor me ajude ..

    
por vishwaje 05.09.2012 / 20:50

2 respostas

2

Primeiro, verifique se ele não está bloqueado, conforme mostrado na resposta do rmaultz, ou seja, lembre-se de ativar o bluetooth no comutador de rádio e no miniaplicativo bluetooth. Então corra isto

modprobe btusb

execute

lsmod | grep btusb

para confirmar que o módulo btusb está carregado. Então corra

lsusb

Você deve receber algo como

Bus 003 Device 005: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth) 

Em seguida, execute este

sudo sh -c "echo 0xY 0xZ > /sys/bus/usb/drivers/btusb/new_id"

substitua Y e Z do resultado lsusb por exemplo

sudo sh -c "echo 0x0a5c 0x4500 > /sys/bus/usb/drivers/btusb/new_id"

Deixe-me saber se isso funcionou.

    
por Zeiss 17.02.2013 / 01:02
0
rfkill list 
0: brcmwl-0: Wireless LAN  
Soft blocked: yes < --- Software  is Blocking the  blue tooth from being  Enabled  
Hard blocked: no  
1: dell-wifi: Wireless LAN  
Soft blocked: yes  < --- Software  is Blocking the  blue tooth from being  Enabled   
Hard blocked: no  

Para continuar desbloqueando após a reinicialização, adicione a opção ao seguinte arquivo do tipo de terminal sudo gedit /etc/rc.local

adicione rfkill unblock all

Revise, salve e feche o Gedit. Aproveite!

    
por rmaultz 07.09.2012 / 23:34