lk/distros/void/aeroplanes.md

25 lines
413 B
Markdown
Raw Normal View History

2023-01-06 20:11:44 +00:00
---
title: "Aeroplane Mode in Void"
2025-02-24 08:19:15 +00:00
tags: [ "void" ]
2023-01-06 20:11:44 +00:00
---
Put your device in 'aeroplane' mode (e.g. where no trace of signal leaves it) by turning off Wi-Fi and blue-tooth.
2025-02-12 14:01:15 +00:00
```sh
su root
sv stop wpa_supplicant bluetoothd
```
2023-01-06 20:11:44 +00:00
2025-02-19 14:11:37 +00:00
Find your device's name with `ip -color addr`.
2023-01-06 20:11:44 +00:00
If unsure, try this:
2025-02-12 14:01:15 +00:00
```sh
name=$(ip a | grep -Eo 'wlp\w{3}')
echo $name
```
2023-01-06 20:11:44 +00:00
Then set that device down:
2025-02-12 14:01:15 +00:00
```sh
ip link set $name down
```