summaryrefslogtreecommitdiffstats
path: root/content/posts
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts')
-rw-r--r--content/posts/using-nordvpn-on-arch.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/content/posts/using-nordvpn-on-arch.md b/content/posts/using-nordvpn-on-arch.md
index fa6e1d6..4d18fbb 100644
--- a/content/posts/using-nordvpn-on-arch.md
+++ b/content/posts/using-nordvpn-on-arch.md
@@ -1,6 +1,7 @@
---
title: "Using NordVPN on ArchLinux"
date: 2020-12-03T13:43:00
+lastmod: 2021-01-20T16:40:00
tags: ["Linux", "Networks", "Snippets", "Software"]
---
@@ -11,7 +12,12 @@ The CLI client is available in the AUR, so it can be installed via:
yay -S nordvpn-bin
```
-Once installed, you can manually start the daemon as root:
+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
```
@@ -26,4 +32,6 @@ nordvpn connect Iceland
Once you've finished your nefarious activities, you can disconnect logically using:
```
nordvpn disconnect
-``` \ No newline at end of file
+```
+
+**Edit 2021-01-20:** Addded group membership command