mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
29 lines
466 B
Markdown
29 lines
466 B
Markdown
# rfkill
|
|
|
|
1. [TL;DR](#tldr)
|
|
2. [Sources](#sources)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# List devices.
|
|
rfkill list
|
|
|
|
# Block a device.
|
|
rfkill block 'wifi'
|
|
rfkill block 'id'
|
|
|
|
# Unblock a device.
|
|
rfkill unblock 'bluetooth'
|
|
rfkill unblock 'id'
|
|
```
|
|
|
|
## Sources
|
|
|
|
- [How to disable your Raspberry Pi's Wi-Fi]
|
|
|
|
<!-- project's references -->
|
|
<!-- internal references -->
|
|
<!-- external references -->
|
|
[how to disable your raspberry pi's wi-fi]: https://pimylifeup.com/raspberry-pi-disable-wifi/
|