Discontinue use of the WireGuard PPA (#1855)

* Discontinue use of the WireGuard PPA

* Add instructions to update the system

* Change reboot instruction
This commit is contained in:
David Myers
2020-08-06 19:09:15 +03:00
committed by GitHub
parent 5fc738ba8b
commit 8894dd0848
6 changed files with 9 additions and 37 deletions
+7 -5
View File
@@ -2,14 +2,16 @@
## Install WireGuard
To connect to your AlgoVPN using [WireGuard](https://www.wireguard.com) from Ubuntu, first install WireGuard:
To connect to your AlgoVPN using [WireGuard](https://www.wireguard.com) from Ubuntu, make sure your system is up-to-date then install WireGuard:
```shell
# Ubuntu 16.04 only: Add the WireGuard repository
sudo add-apt-repository ppa:wireguard/wireguard
sudo apt update
# Update your system:
sudo apt update && sudo apt upgrade
# Install the tools:
# If the file /var/run/reboot-required exists then reboot:
[ -e /var/run/reboot-required ] && sudo reboot
# Install WireGuard:
sudo apt install wireguard openresolv
```