como iniciar o Bluez no Lubuntu

1

Tentando lançar um adaptador / gerenciador BT (padrão instalado no Lubu), uma pequena janela me informa que não é possível porque não há nenhum Bluez lançado.

No terminal: sudo apt install bluez , ele responde: Bluez já é a nova versão (5.46-0ubuntu3) Em seguida, me convida para remover alguns pacotes obsoletos.

Então, onde o Bluez Daemon será lançado?

Escrita: systemctl status bluetooth.service ; hcitool dev

Resposta:

bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
   Active: inactive (dead)
     Docs: man:bluetoothd(8)

Comando: lspci -k | grep -A3 -i "wireless\|network\|bluetooth" Resposta: 04:00.0 Ethernet controller: Qualcomm Atheros AR242x / AR542x Wireless Network Adapter (PCI-Express) (rev 01) Subsystem: Quanta Microsystems, Inc AR242x / AR542x Wireless Network Adapter (PCI-Express) Kernel driver in use: ath5k Kernel modules: ath5k 0f:06.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller oem@oem-Extensa-5220:~$

    
por Vallu 12.04.2018 / 13:30

1 resposta

0

Determinar o status do subsistema Bluetooth você pode fazer o seguinte

  1. Instale o componente necessário bluez :

    sudo apt install bluez 
    
  2. Verifique se o seu hardware tem funcionalidade Bluetooth (em PCI e USB), encontre a serial do adaptador:

    lspci -k | grep -A3 -i "wireless\|network\|bluetooth"
    lsusb | grep -i "bluetooth\|radio"
    hcitool dev
    
  3. Verifique se o adaptador não está bloqueado pelo rfkill e, em seguida, desbloqueie-o:

    sudo rfkill list all
    sudo rfkill unblock all
    
  4. Verifique o status do serviço systemd correspondente:

    systemctl status bluetooth.service
    

E é claro que você pode determinar o modelo do seu dispositivo (por exemplo, laptop) e verificar a existência do Bluetooth aqui.

    
por N0rbert 13.04.2018 / 13:25