{% extends 'pages/_install_base.html' %}
{% load i18n %}
{% load dltags %}
{% block pagetitle %}
{% trans "Install on Linux" %}
{% endblock %}
{% block wireguard_import %}
{% blocktrans trimmed %}
Place the configuration file in /etc/wireguard
.
{% endblocktrans %}
{% trans "Then, start it with the following command:" %}
sudo wg-quick ccvpn-fr up
{% endblock %}
{% block wireguard_activate %}
{% trans "You can check your IP address by refreshing this page (or opening it on the device) and looking at the bottom."%}
{% endblock %}
{% block openvpn_outer %}
OpenVPN {% blocktrans trimmed %} is an older VPN protocol and software, still considered secure and one of the best VPN protocols available. {% endblocktrans %} {% blocktrans trimmed %} This guide focuses on its integration with NetworkManager. If you are not using NetworkManager, skip to the next guide. {% endblocktrans %}
sudo apt-get install openvpn resolvconf network-manager-openvpn network-manager-openvpn-gnome
sudo yum install openvpn networkmanager-openvpn
sudo pacman -S openvpn networkmanager-openvpn
{{gw}}
for a random server.
{% endblocktrans %}
sudo apt-get install openvpn resolvconf
sudo yum install openvpn
sudo pacman -S openvpn openresolv
/etc/openvpn
with a .conf extension./etc/openvpn
folder,
and rename them to .conf.
{% endblocktrans %}
sudo systemctl start openvpn@ccrypto-fr.service
/etc/openvpn
containing your username and password on two lines as follows:
{% endblocktrans %}
Alice
p4ssw0rd
sudo chown root:root /path/to/the/file.txt
sudo chmod 600 /path/to/the/file.txt
auth-user-pass /path/to/the/file.txt
sudo systemctl enable openvpn@ccrypto-fr.service