---
title: Bluetooth Operations Manual
url: https://doc.liz6.com/en/devops/bluetooth-ops
locale: en
area: devops
tags:
- devops
date: 2026-06-30
modified: 2026-07-16
description: Bluetooth Operations Manual View Operations Troubleshooting
---

# Bluetooth Operations Manual

## View

```bash
bluetoothctl devices              # Paired devices
bluetoothctl show                 # Local Bluetooth information
bluetoothctl info XX:XX:XX:XX:XX:XX  # Device details
```

## Operations

```bash
bluetoothctl                      # Enter interactive mode
  scan on                         # Scan for devices
  pair XX:XX:XX:XX:XX:XX          # Pair
  trust XX:XX:XX:XX:XX:XX         # Trust (auto-reconnect)
  connect XX:XX:XX:XX:XX:XX       # Connect
  disconnect XX:XX:XX:XX:XX:XX    # Disconnect
  remove XX:XX:XX:XX:XX:XX        # Remove device

# One-line command operations
bluetoothctl connect XX:XX:XX:XX:XX:XX
bluetoothctl disconnect XX:XX:XX:XX:XX:XX
bluetoothctl power on / off
```

## Troubleshooting

```bash
systemctl status bluetooth
dmesg | grep -i bluetooth         # Firmware loading errors
rfkill list                        # Check if blocked by software/hardware
rfkill unblock bluetooth
```
