mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
492 B
Plaintext
30 lines
492 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rfkill
|
|
|
|
> Enable and disable wireless devices.
|
|
> More information: <https://manned.org/rfkill>.
|
|
|
|
- List devices:
|
|
|
|
`rfkill`
|
|
|
|
- Filter by columns:
|
|
|
|
`rfkill {{[-o|--output]}} {{ID,TYPE,DEVICE,...}}`
|
|
|
|
- Block devices by type:
|
|
|
|
`rfkill block {{bluetooth|wifi|gps|nfc|...}}`
|
|
|
|
- Unblock devices by type:
|
|
|
|
`rfkill unblock {{bluetooth|wifi|gps|nfc|...}}`
|
|
|
|
- Output in JSON format:
|
|
|
|
`rfkill {{[-J|--json]}}`
|