blob: 4d18fbbad566139fe52e61b9bc14d59f577ca41a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
title: "Using NordVPN on ArchLinux"
date: 2020-12-03T13:43:00
lastmod: 2021-01-20T16:40:00
tags: ["Linux", "Networks", "Snippets", "Software"]
---
I found myself with access to a NordVPN account a while back, and while VPN's have many, **many** downsides and the advertising of them is even worse, there is still a place for them.
The CLI client is available in the AUR, so it can be installed via:
```
yay -S nordvpn-bin
```
Once installed, you'll want to add your username to the nordvpn group using:
```
sudo gpasswd -a $(whoami) nordvpn
```
Logout and log back in for the above to take effect. You can manually start the daemon as root:
```
sudo nordvpnd
```
With the daemon started, you can login to your account, list available coutries to connect to and connect via:
```
nordvpn account
nordvpn countries
nordvpn connect Iceland
```
Once you've finished your nefarious activities, you can disconnect logically using:
```
nordvpn disconnect
```
**Edit 2021-01-20:** Addded group membership command
|