当前位置: 首页>>技术教程>>正文


如何通过终端检查蓝牙状态

, ,

问题描述

我正在寻找一种方法来通过终端检查笔记本电脑上的蓝牙是启用还是禁用。有没有我可以用来查找此信息的命令

最佳方法

除了检查服务之外,您还可以使用以下命令

hcitool dev

这将返回所有打开的设备。

次佳方法

有关 hciconfig -a 的更多信息

hciconfig -a 提供了更多信息,包括蓝牙版本。

$ hciconfig -a
hci0:   Type: Primary  Bus: USB
    BD Address: 00:1A:7D:DC:70:13  ACL MTU: 310:10  SCO MTU: 64:8
    UP RUNNING PSCAN 
    RX bytes:1013 acl:0 sco:0 events:60 errors:0
    TX bytes:4890 acl:0 sco:0 commands:60 errors:0
    Features: 0xff 0xff 0x8f 0xfe 0xdb 0xff 0x5b 0x87
    Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 
    Link policy: RSWITCH HOLD SNIFF PARK 
    Link mode: SLAVE ACCEPT 
    Name: 'hostname'
    Class: 0x1c0104
    Service Classes: Rendering, Capturing, Object Transfer
    Device Class: Computer, Desktop workstation
    HCI Version: 4.0 (0x6)  Revision: 0x22bb
    LMP Version: 4.0 (0x6)  Subversion: 0x22bb
    Manufacturer: Cambridge Silicon Radio (10)

第三种方法

只需按键盘上的 Ctrl + Alt + T 打开终端。当它打开时,您可以运行此命令来查看蓝牙的状态

sudo service bluetooth status

输入密码后,您应该会看到类似

蓝牙正在运行

第四种方法

另一种方法是使用命令 hciconfig 。它会清楚地列出接口,您会通过标记 “RUNNING” 或 “DOWN” 看到它们的当前状态。

第五种方法

rfkill 将显示网络设备列表以及它们是打开还是关闭。

第六种方法

使用 BlueZ :使用 bluetoothctl(交互式蓝牙控制工具),它为您提供了一个带有 show 和这些其他命令的终端:

[bluetooth]# help
Menu main:
Available commands:
-------------------
advertise                        Advertise Options Submenu
scan                             Scan Options Submenu
gatt                             Generic Attribute Submenu
list                             List available controllers
show [ctrl]                      Controller information
select <ctrl>                    Select default controller
devices                          List available devices
paired-devices                   List paired devices
system-alias <name>              Set controller alias
reset-alias                      Reset controller alias
power <on/off>                   Set controller power
pairable <on/off>                Set controller pairable mode
discoverable <on/off>            Set controller discoverable mode
discoverable-timeout [value]     Set discoverable timeout
agent <on/off/capability>        Enable/disable agent with given capability
default-agent                    Set agent as the default one
advertise <on/off/type>          Enable/disable advertising with given type
set-alias <alias>                Set device alias
scan <on/off>                    Scan for devices
info [dev]                       Device information
pair [dev]                       Pair with device
trust [dev]                      Trust device
untrust [dev]                    Untrust device
block [dev]                      Block device
unblock [dev]                    Unblock device
remove <dev>                     Remove device
connect <dev>                    Connect device
disconnect [dev]                 Disconnect device
menu <name>                      Select submenu
version                          Display version
quit                             Quit program
exit                             Quit program
help                             Display help about this program
export                           Print environment variables

bluez-tools : bt-* ( apropos bt- ) 类似 bt-device ,一个蓝牙设备管理器。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/13543.html,未经允许,请勿转载。