ubuntu22.04上永久设置dns服务器的方法
1.通过图形化界面配置每个网卡的dns服务器
2.修改/etc/resolv.conf软连接指向
原本链接到/run/systemd/resolve/stub-resolv.conf,但是发现里面的内容不是我想要的,感觉有点不太对。
所以将其链接到同级目录下的/run/systemd/resolve/resolv.conf
ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
lrwxrwxrwx 1 root root 32 Nov 15 14:37 /etc/resolv.conf -> /run/systemd/resolve/resolv.conf
参考:
https://www.cnblogs.com/safe-rabbit/p/17672093.html
https://github.com/flatcar/Flatcar/issues/285