Files
cheatsheet-tldr/tldr/linux/rfkill
2025-03-29 00:18:23 +00:00

30 lines
495 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 (e.g. bluetooth, wlan):
`rfkill block {{bluetooth}}`
- Unblock devices by type (e.g. bluetooth, wlan):
`rfkill unblock {{wlan}}`
- Output in JSON format:
`rfkill {{[-J|--json]}}`