blog.minskio.co.uk

Content and theme behind minskio.co.uk
Log | Files | Refs

commit c37059c7b78c615d1b75ded58a985cef19a23330
parent 74c1c785a3072ad90f7ebadf1b61bb2883dcabf6
Author: breadcat <peter@minskio.co.uk>
Date:   Mon,  1 Feb 2021 20:07:18 +0000

Update post

Diffstat:
Mcontent/posts/using-nordvpn-on-arch.md | 13++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)

diff --git 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