-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yannis Frangos
committed
Dec 6, 2022
1 parent
8b0ccde
commit 0d55fbe
Showing
4 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.idea | ||
*.iml | ||
*.swp | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Disable radios | ||
|
||
You might want to disable totally the radios from your raspeberry (wifi, bluetooth), to reduce consumption and possible interference. | ||
|
||
## Using rfkill | ||
|
||
sudo rfkill block wifi | ||
|
||
## Modifying boot | ||
|
||
Edit `/boot/config.txt`, and in `[all]' add the following: | ||
|
||
dtoverlay=disable-wifi | ||
dtoverlay=disable-bt | ||
|
||
## Resource | ||
|
||
* https://pimylifeup.com/raspberry-pi-disable-wifi/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ERX | ||
|
||
## Update `config.boot` manually | ||
|
||
1. Copy `/config/config.boot` to e.g. `/config/updated.config.boot` | ||
2. Perform any changes you might want to `/config/updated.config.boot` | ||
3. Load, review and persist the updated configuration like so: | ||
1. `load updated.config.boot` | ||
2. `compare` | ||
3. `commit` | ||
4. `save` | ||
5. `exit` | ||
|
||
## Wireguard and firmware upgrades | ||
|
||
When EdgeOS updates its firmware it loses the wireguard installation and any wireguard configuration that might be `disabled`. Thus, before updating, ensure all wireguard configuration is enabled, or else you will have to restore it manually from previous backups. | ||
|
||
|
||
|