方法四
写保护锁定 resolv.conf 文件
1. 删除 resolv.conf 文件
rm -f /etc/resolv.conf
Shell
复制
2. 创建并编辑 resolv.conf 文件
editor /etc/resolv.conf
Shell
复制
3. 填写上指定的 DNS 服务器
nameserver 1.0.0.1
nameserver 8.8.8.8
Text
复制
4. 设置写保护锁定 resolv.conf 文件
chattr +i /etc/resolv.conf
Shell
复制
此时 resolv.conf 文件会被锁定, 重启系统后不会被覆盖。
如果想要解锁可以运行:
chattr -i /etc/resolv.conf