我搞砸了/etc/network/interfaces
,在配置的某个阶段我意外地对它进行了编码,因此状态是只读的。从那时起我的系统就无法启动这个:
Starting configure network device [FAIL]
Starting configure network device [FAIL]
Starting configure virtual network device [FAIL]
我想用它来编辑文件nano
,但它显示 VimCrypt 中有一堆神秘的符号。
那么我应该删除接口并重新设置吗?
答案1
删除损坏的文件
sudo rm /etc/network/interfaces
创建新的
sudo nano /etc/network/interfaces
并添加以下几行
# interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback
更正权限
sudo chmod 644 /etc/network/interfaces