修改DNS配置文件/etc/resolv.conf 出现Operation not permitted解决方法

看有没有 i 属性

sudo lsattr /etc/resolv.conf 

假如有,去除i这个属性

sudo chattr -i /etc/resolv.conf

 然后再修改权限,就可以成功修改了

chmod +w /etc/resolv.conf

你可能感兴趣的:(Centos,服务器,linux,网络)