83

Error Message:

/usr/bin/wg-quick: line 31: resolvconf: command not found

The issue:

I am not fully certain, I do have openresolv installed rn and have tried it and got the same response when resolvconf is installed.

Either way, I cannot connect to my VPN.

Jimmy32
  • 831

6 Answers6

95

Modern Linux distributions use systemd, which comes with its own flavor of resolvconf as part of the resolvectl command. See manpage. A symlink called resolvconf can be created somewhere in $PATH.

  • On Arch linux there's the systemd-resolvconf package that does this for you.
  • On Debian (and Ubuntu?) you must do this manually. Using /usr/local to prevent possible package conflicts:
    ln -s /usr/bin/resolvectl /usr/local/bin/resolvconf
    

With the symlink in place, wg-quick works fine for me.

Edit: There is a Debian bug report requesting the symlink

Stefan
  • 103
Tim
  • 1,343
50

Had the same problem, found on this page: https://github.com/StreisandEffect/streisand/issues/1434

sudo apt install openresolv

Resolved it for me.

11

just install it with apt-get install resolvconf and reboot, or comment out all DNS fields in configuration file

Iceberg
  • 241
  • 2
  • 3
6

Seems like resolvconf command is missing in your system or it isn't installed, try this:

sudo apt install resolvconf
XandrOSS
  • 141
5

It’s not the solution, but if you comment out the DNS in the wg0 conf file it will work. wg-quick does a bunch of things behind the scenes, one of them is adjusting the nameserver, typically to use your vpn providers. Set your /etc/resolv.conf to use Cloudflare (1.1.1.1), then try again. It should connect without the resolvconf dependency.

BrodyBuster
  • 71
  • 1
  • 4
3

Try using systemctl instead:

systemctl start wg-quick@<vpn-name>

Or if you wish to start the VPN every time you start your machine use:

systemctl enable wg-quick@<vpn-name>

curiouser
  • 103
John53
  • 79