ZebMcKayhan
Very Senior Member
if you are indeed on 386.4 or later it should be there.I just bought mine and I have been trying to figure this out as well. I went modprobing a couple of times and I am not finding it inside my list of modules.
Code::/tmp/home/root# modprobe -l | grep wg.ko
cannot seem to lsmod it either
Code:/tmp/home/root# lsmod -l | grep wg
Try any of:
Code:
find / -name wireguard.ko
modprobe --show-depends wireguard
should be located here:
Code:
/lib/modules/4.1.52/kernel/net/wireguard/wireguard.ko
load it with:
Code:
modprobe wireguard
or
Code:
insmod /lib/modules/4.1.52/kernel/net/wireguard/wireguard.ko
check so that it has loaded with:
Code:
lsmod -l | grep wireguard
wireguard 108484 0
Wireguard manager loads the built in module for you, so you don't have to bother.
//Zeb
Last edited: