Hi there. I have been getting on pretty well with Aritx since I installed it a few months ago, but I have a slight problem now that I would like some help with.
I want to run the program 'nordvpn-bin'. I know there are other alternatives but I like this program better, however I can't get it to run. The error I get it this:
nordvpn connect is
Whoops! Cannot reach User Daemon
To use this program requires two daemons to run 'nordvpnsd' and 'nordvpnud' These are provided in the install package and reside in /usr/bin. They are binaries not scripts so I can't read them.
What I have done so far:
Created 2 folders /etc/runit/sv/nordvpnsd and /etc/runit/sv/nordvpnud. In each of these folders I created a shell script with the title 'run' and containing the following:
cat /etc/runit/sv/nordvpnsd/run
#!/bin/bash
exec nordvpnsd 2&>1
cat /etc/runit/sv/nordvpnud/run
#!/bin/bash
exec nordvpnud 2&>1
and made these executable with 755 permissions.
I then symlinked these folders to /run/runit/service:
ls -l /run/runit/service/ | grep "nord*"
lrwxrwxrwx 1 root root 23 May 23 11:39 nordvpnsd -> /etc/runit/sv/nordvpnsd
lrwxrwxrwx 1 root root 23 May 23 11:39 nordvpnud -> /etc/runit/sv/nordvpnud
The services have both started:
sudo sv status nordvpnsd
run: nordvpnsd: (pid 6597) 734s
sudo sv status nordvpnud
run: nordvpnud: (pid 6714) 732s
But the error remains - can't reach user deamon.
Maybe this is a permission error or maybe I have missed some vital step out.
That is what I would like some help with, any ideas?