Ubuntu newbie here, with Ubuntu 22.04.2 LTS.
My employer uses Wireguard and they sent me the .conf file. The file name is sp.conf, and they clearly told me not to modify it at all. This means I can skip the server configuration.
So I installed it on my Ubuntu pc:
sudo apt-get install wireguard
The sp.conf is in my home directory, so I ran this:
sudo wg-quick up sp
And it returned:
[#] ip link add sp type wireguard
[#] wg setconf sp /dev/fd/63
[#] ip -4 address add 10.140.0.11/32 dev sp
[#] ip link set mtu 1420 up dev sp
[#] resolvconf -a sp -m 0 -x
/usr/bin/wg-quick: line 32: resolvconf: command not found
[#] ip link delete dev sp
I'm completely lost here. Any help will be very much appreciated. Thank you.