-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unpack and actually commit only needed files
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 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
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 |
---|---|---|
@@ -1,13 +1,18 @@ | ||
## Add the Meshtastic Debian Repository | ||
|
||
Download the [public key](meshtastic-deb.gpg) and put it in | ||
`/etc/apt/keyrings/meshtastic-deb.gpg`. You can achieve this with: | ||
``` bash | ||
|
||
```bash | ||
wget -qO- {{ site.url }}/meshtastic-deb.asc | sudo tee /etc/apt/keyrings/meshtastic-deb.asc >/dev/null | ||
``` | ||
|
||
Next, create the source in `/etc/apt/sources.list.d/` | ||
``` bash | ||
|
||
```bash | ||
echo "deb [arch=all signed-by=/etc/apt/keyrings/meshtastic-deb.asc] {{ site.url }}/deb stable main" | sudo tee /etc/apt/sources.list.d/meshtastic-deb.list >/dev/null | ||
``` | ||
|
||
If you want to have the latest version of the software, you can replace `stable` with `unstable`. | ||
|
||
Then run `apt update && apt install -y meshtasticd`. |