VPN Paris on Linux

The official command-line client: free trial, connection and subscription — everything happens in the terminal.

1

Download the client

Compatible with Debian, Ubuntu, Linux Mint, MX Linux and derivatives.

Then install it by double-clicking the file, or in a terminal:

sudo apt install ~/Downloads/vpnparis.deb

You can also do everything from the command line, without a browser:

wget https://vpnparis.com/vpnparis.deb
sudo apt install ./vpnparis.deb

Dependencies (WireGuard, DNS) are installed automatically.

2

Create your free access

A single command, with your e-mail address. 3 days free, no credit card — your encrypted tunnel is created and configured automatically:

sudo vpnparis signup you@email.com

Already have an account (trial or subscription)? Fetch your configuration with:

sudo vpnparis login you@email.com

The free trial is limited to one per person (address, machine or connection).

3

Connect

# turn the VPN on
sudo vpnparis up

# check status: tunnel, remaining trial, public IP
sudo vpnparis status

# turn the VPN off
sudo vpnparis down

Once connected, status shows your public IP followed by “(France ✓)”: all your traffic leaves encrypted through our Paris server.

To start the VPN automatically at every boot:

sudo systemctl enable wg-quick@vpnparis
4

Subscribe after the trial

When the 3 days are up, pick a plan on the pricing page: €2.99/month or €24.99/year. Payment is secure (bank card, via Stripe) and uses the same e-mail address as your trial.

Once the payment is confirmed, simply fetch your new access — nothing to reinstall:

sudo vpnparis login you@email.com
sudo vpnparis up

Unsubscribing or switching machines? sudo vpnparis logout removes the account from this computer.

⚠️ Another VPN already installed?

Two VPNs cannot run at the same time: the second one takes over the network and the DNS servers, which makes it look like “nothing works any more”.

If you use Tailscale, ZeroTier, OpenVPN or any other VPN, stop it before connecting:

sudo systemctl stop tailscaled     # example with Tailscale

The VPN connects but no website opens?

It is DNS. The package normally installs openresolv by itself; check with sudo apt install openresolv, then run sudo vpnparis down and sudo vpnparis up again.

✓ Check that you are protected

Once connected, open api.ipify.org (or look at the “Public IP” line of vpnparis status): the address must start with 217.182. — our server in France.

← Back to the home page