Skip to content

Commit 63e8632

Browse files
authored
docs: Add zerotier setup (#244)
1 parent 1c6ff41 commit 63e8632

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ nav:
144144
- "Reporting Bugs": General/reporting_bugs.md
145145
- "Desktop Environment Tweaks": General/Desktop_Environment_Tweaks.md
146146
- "VPN Setup": General/VPN.md
147+
- "ZeroTier Setup": General/zerotier.md
147148
- "Community Resources": General/community-links.md
148149
- "Uninstalling Bazzite": General/uninstalling-bazzite.md
149150
- "Repository Information (External)":

src/General/zerotier.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: "ZeroTier setup"
3+
authors:
4+
- "@Zeglius"
5+
---
6+
7+
!!! warning
8+
Setup requires **layering** and is [not recommended](/Installing_and_Managing_Software/rpm-ostree/#major-caveats-using-rpm-ostree).
9+
10+
## Installing
11+
12+
Select, copy and paste the following to the terminal (pasting is <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>)
13+
14+
```sh
15+
sudo tee >/dev/null /etc/yum.repos.d/zerotier.repo <<'EOF'
16+
[zerotier]
17+
name=ZeroTier, Inc. RPM Release Repository
18+
baseurl=https://repo.zerotier.com/yum/$basearch/
19+
enabled=1
20+
gpgcheck=1
21+
gpgkey=https://download.zerotier.com/contact@zerotier.com.gpg
22+
EOF
23+
```
24+
25+
Reboot, and run this at the terminal:
26+
27+
```sh
28+
systemctl enable zerotier-one.service
29+
```
30+
31+
## Uninstalling
32+
33+
Select, copy and paste the following to the terminal (pasting is <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>)
34+
35+
```sh
36+
sudo systemctl disable zerotier-one.service
37+
sudo rpm-ostree uninstall zerotier-one
38+
```
39+
40+
Reboot, and run this at the terminal:
41+
42+
```sh
43+
sudo rm -fv /etc/yum.repos.d/zerotier.repo
44+
```

0 commit comments

Comments
 (0)