mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
43 lines
701 B
Plaintext
43 lines
701 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# bluetoothctl
|
|
|
|
> Manage Bluetooth devices.
|
|
> See also: `bluetui`.
|
|
> More information: <https://manned.org/bluetoothctl>.
|
|
|
|
- Enter the `bluetoothctl` shell:
|
|
|
|
`bluetoothctl`
|
|
|
|
- List all known devices:
|
|
|
|
`bluetoothctl devices`
|
|
|
|
- Power the Bluetooth controller on or off:
|
|
|
|
`bluetoothctl power {{on|off}}`
|
|
|
|
- Pair with a device:
|
|
|
|
`bluetoothctl pair {{mac_address}}`
|
|
|
|
- Remove a device:
|
|
|
|
`bluetoothctl remove {{mac_address}}`
|
|
|
|
- Connect to a paired device:
|
|
|
|
`bluetoothctl connect {{mac_address}}`
|
|
|
|
- Disconnect from a paired device:
|
|
|
|
`bluetoothctl disconnect {{mac_address}}`
|
|
|
|
- Display help:
|
|
|
|
`bluetoothctl help`
|