Meu bluetooth está desabilitado no Ubuntu 14.10

1

Eu instalei recentemente o ubuntu 14.10 e encontrei ambos wifi e bluetooth não está funcionando. Consegui recuperar meu wifi e o bluetooth ainda está desativado. Por favor, precisa de ajuda. Tenho visto muitas postagens e não encontrei nada que possa resolver meu problema.

hcitool dev - output Dispositivos:

    
por Deepika Sathineni 08.03.2015 / 21:56

3 respostas

0

O dispositivo precisa de firmware para funcionar

wget https://www.dropbox.com/s/bor5hy8djhztpsf/fw-04ca_200b.hcd
sudo cp fw-04ca_200b.hcd /lib/firmware
sudo cp fw-04ca_200b.hcd /lib/firmware/brcm

Reinicie e tente

Editar: wget https://www.dropbox.com/s/dnlvxmw5l7mwn2d/bluetooth.tar.gz

tar -zxvf bluetooth.tar.gz

Ele deve criar uma pasta chamada bluetooth para sua pasta pessoal e, em seguida, cd bluetooth E então precisamos obter alguns arquivos baixados sudo apt-get install linux-headers-generic build-essential

Agora copiamos os arquivos da sua configuração atual

cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers

cp /boot/config-$(uname -r) .config

Agora podemos criar os módulos com

make -C /lib/modules/$(uname -r)/build M=$PWD modules

Agora nós descarregamos o módulo atual

sudo modprobe -r btusb e copie no novo com

sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/

E é hora de testar e inserir o módulo sudo modprobe btusb e, com alguma sorte, o seu bluetooth funciona bem, caso não seja necessário reiniciar o computador.

Se você atualizar e encontrar o bluetooth não funcionar após a reinicialização, então cd bluetooth

make -C /lib/modules/$(uname -r)/build M=$PWD clean
cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
cp /boot/config-$(uname -r) .config
make -C /lib/modules/$(uname -r)/build M=$PWD modules
sudo modprobe -r btusb
sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/
sudo modprobe btusb
    
por Jeremy31 09.03.2015 / 10:40
0

iam usando o lenovo u430. Abaixo está a saída de cada comando.

lspci -nnk | grep -iA2 net 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 10) Subsystem: Lenovo Device [17aa:3801] Kernel driver in use: r8169 02:00.0 Network controller [0280]: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter [14e4:43b1] (rev 03) Subsystem: Lenovo Device [17aa:062e] Kernel driver in use: wl

lsusb

Barramento 001 Dispositivo 002: ID 8087: 8000 Intel Corp. Barramento 001 Dispositivo 001: ID 1d6b: 0002 hub raiz do Linux Foundation 2.0 Barramento 003 Dispositivo 001: ID 1d6b: 0003 hub raiz do Linux Foundation 3.0 Barramento 002 Dispositivo 004: ID 04ca: 200b Lite-On Technology Corp. Ônibus 002 Dispositivo 003: ID 5986: 0538 Acer, Inc Barramento 002 Dispositivo 002: ID 04f3: 0060 Elan Microelectronics Corp. Barramento 002 Dispositivo 001: ID 1d6b: 0002 hub raiz do Linux Foundation 2.0

rfkill listar todos

0: phy0: LAN sem fio     Soft bloqueado: não     Difícil bloqueado: não 1: brcmwl-0: LAN sem fio     Soft bloqueado: não     Difícil bloqueado: não 2: ideapad_wlan: LAN sem fio     Soft bloqueado: não     Difícil bloqueado: não 3: ideapad_bluetooth: Bluetooth     Soft bloqueado: não     Difícil bloqueado: não

    
por Deepika Sathineni 09.03.2015 / 05:32
0

dmesg | grep -i bluetooth [ 9.247823] Bluetooth: Core ver 2.19 [ 9.247843] Bluetooth: HCI device and connection manager initialized [ 9.247851] Bluetooth: HCI socket layer initialized [ 9.247853] Bluetooth: L2CAP socket layer initialized [ 9.247864] Bluetooth: SCO socket layer initialized [ 9.251480] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 9.251483] Bluetooth: BNEP filters: protocol multicast [ 9.251490] Bluetooth: BNEP socket layer initialized [ 9.251945] Bluetooth: RFCOMM TTY layer initialized [ 9.251953] Bluetooth: RFCOMM socket layer initialized [ 9.251958] Bluetooth: RFCOMM ver 1.11

dmesg | firmware grep -i [0.180970] [Bug de Firmware]: ACPI: Consulta BIOS _OSI (Linux) ignorada

    
por Deepika Sathineni 10.03.2015 / 00:40