web-dev-qa-db-ja.com

LubuntuでBluezを起動する方法

BTアダプター/マネージャー(デフォルトはLubuにインストールされています)を起動しようとすると、Bluezが起動していないために起動できないという小さなウィンドウが表示されます。

ターミナル:Sudo apt install bluezで、答えます:Bluezはすでに新しいバージョン(5.46-0ubuntu3)です。その後、いくつかの古いパッケージを削除するように勧められます。

Bluez Daemonはどこで起動するのでしょうか?

書く:systemctl status bluetooth.service ; hcitool dev

回答:

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

コマンド:lspci -k | grep -A3 -i "wireless\|network\|bluetooth"回答: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:~$

1
Vallu

次の操作を実行できるBluetoothサブシステムのステータスを決定します

  1. 必要なbluezコンポーネントをインストールします。

    Sudo apt install bluez 
    
  2. ハードウェアにBluetooth機能(PCIおよびUSB)があることを確認し、アダプターのシリアルを見つけます。

    lspci -k | grep -A3 -i "wireless\|network\|bluetooth"
    lsusb | grep -i "bluetooth\|radio"
    hcitool dev
    
  3. アダプタがrfkillによってブロックされていないことを確認してから、ブロックを解除します。

    Sudo rfkill list all
    Sudo rfkill unblock all
    
  4. 対応するsystemdサービスのステータスを確認します。

    systemctl status bluetooth.service
    

そしてもちろん、デバイス(ラップトップなど)のモデルを判別し、ここでBluetoothの存在を確認できます。

0
N0rbert