1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pt_BR/linux/bluetoothctl.md
2022-10-21 09:45:07 +05:30

36 lines
680 B
Markdown

# bluetoothctl
> Gerencia dispositivos Bluetooth a partir da linha de comando.
> Mais informações: <https://bitbucket.org/serkanp/bluetoothctl>.
- Inicia o shell `bluetoothctl`:
`bluetoothctl`
- Lista todos os dispositivos conhecidos:
`bluetoothctl devices`
- Liga ou desliga o controlador Bluetooth:
`bluetoothctl power {{on|off}}`
- Emparelha com um dispositivo:
`bluetoothctl pair {{endereço_mac}}`
- Remove um dispositivo:
`bluetoothctl remove {{endereço_mac}}`
- Conecta a um dispositivo pareado:
`bluetoothctl connect {{endereço_mac}}`
- Desconecta um dispositivo pareado:
`bluetoothctl disconnect {{endereço_mac}}`
- Exibe ajuda:
`bluetoothctl help`