Thought i would post a something fixed an issue for me for the following error, I believe its in reference to gluetun:
Code: Select all
Error response from daemon: error gathering device information while adding custom device "/dev/net/tun": no such file or directory`
Heres the fix:
Code: Select all
sudo mkdir -p /dev/net
sudo mknod /dev/net/tun c 10 200
sudo chmod 600 /dev/net/tun
However, when I reboot the serve I need to re-add it, could someone hint why?