mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
33 lines
462 B
Markdown
33 lines
462 B
Markdown
# rfkill
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [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]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Others -->
|
|
[how to disable your raspberry pi's wi-fi]: https://pimylifeup.com/raspberry-pi-disable-wifi/
|