2023-01-06 20:11:44 +00:00
|
|
|
---
|
|
|
|
title: "Aeroplane Mode in Void"
|
2025-02-11 19:47:50 +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
|
|
|
|
|
|
|
Find your device's name with `ip a`.
|
|
|
|
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
|
|
|
|
```
|