错误 /etc/resolv.conf isn't a symlink, not doing anything. 【解决办法】

配置interfaces文件后用/etc/init.d/networking restart命令重启网络配置出现以下错误

* Running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces
* Reconfiguring network interfaces...
resolvconf: Error: /etc/resolv.conf isn‘t a symlink, not doing anything.
RTNETLINK answers: File exists
Failed to bring up eth0.
resolvconf: Error: /etc/resolv.conf isn‘t a symlink, not doing anything.
* Setting up iSCSI targets
   ...done.
ssh stop/waiting
ssh start/running, process 15220
   ...done.

解决办法:

sudo dpkg-reconfigure resolvconf

附上我完整的interfaces文件:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.1.188    //IP
netmask 255.255.255.0    //子网掩码
gateway 192.168.1.1    //网关
#Broadcast 192.168.1.255
#dns-nameservers 192.168.1.1

错误 /etc/resolv.conf isn't a symlink, not doing anything. 【解决办法】

时间: 2024-11-10 14:08:02

错误 /etc/resolv.conf isn't a symlink, not doing anything. 【解决办法】的相关文章

Android系统编译错误Note: Some input files use or override a deprecated API. 解决办法

进入系统framework层修改了下MediaPlayer.java的源码,就添加了个方法,结果重新编译系统报下面错误: .................. Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. 6 warnings 再进入MediaPlayer.java把修改的复原,结果编译就通过,关键是我需要那个方法... 最

java 错误:找不到或无法加载主类的解决办法

此类错误的常见解决办法: 1.是因为.java文件不在项目的src路径内,也就是说源代码未被eclipse编译,字节码不存在无法运行了在项目名上右键 -> Builder Path -> Configure Build Path -> 选择Source面板 再点Add Folder, 把源代码所在的包路径的上层目录加进来,而且如果你是把两个类写在一个文件里的话,你在右键选择Run As Java Appication 的时候,要把光标至于包括main方法的类上 2.最快捷的解决办法是,打

Apache Permission denied (httpd.conf配置和目录权限无问题)解决办法

今天在CentOS5.9中配置zabbix时出现错误:Apache 403 error, (13)Permission denied: access to / denied 检查了一圈httpd.conf和目录权限,均没有发现问题. 最后,看了这篇文章,发现是因为系统启动了SELINUX导致的. http://stackoverflow.com/questions/8816836/apache-403-error-13permission-denied-access-to-denied-fedo

jenkins===当postman出现错误403 No valid crumb was included in the request的解决办法

问题描述:当使用postman获取jenkins的json数据的时候,会返回标题中描述的错误 如下图: 将圈中的框,取消勾选! 再次运行正常! 这时候修改jenkins如下:

MySQL启动错误ERROR! MySQL server PID file could not be found的解决办法

/etc/init.d/mysql start无法启动mysql错误信息如下: ERROR! MySQL server PID file could not be found! Starting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/var/AYXXXXXXXXXXX.pid). 完整日志信息如下: 140902 18:11:33 mysqld_safe Starting mysqld

【转】IIS8.5关于“ 配置错误 不能在此路径中使用此配置节”的解决办法

今天刚安装好IIS8.5, 我的系统是win8.1 enterprise版本. 建了一个简单的页面准备调试,却发现了这个错误: 详细错误信息模块 IIS Web Core 通知 BeginRequest 处理程序 尚未确定 错误代码 0x80070021 配置错误 不能在此路径中使用此配置节.如果在父级别上锁定了该节,便会出现这种情况.锁定是默认设置的(overrideModeDefault="Deny"),或者是通过包含 overrideMode="Deny"或旧

错误ValueError: malformed SHA512 hash (checksum must be exactly 86 chars)解决办法

这个报错多半是ORM建立数据表的时候,密码列给的长度不足导致的. 比如把 password_hash = db.Column(db.String(64)) 改为 password_hash = db.Column(db.String(120) 然后重新建立表即可. 原因: 表没有足够空间放置加密后的数据,sha512_crypt需要至少120字节.(86 char hash + additional metadata the SHA512 algorithm stores)

PHP 编译错误及解决办法

./configure的时候出现如下错误: configure: error: xslt-confignot found. Please reinstall the libxslt >= 1.1.0 distribution   解决方法: yum install libxslt-devel* -y 错误 1   checking for xml2-config path...  configure: error: xml2-config not found.Please check your 

IOS 开发中 Whose view is not in the window hierarchy 错误的解决办法

在 IOS 开发当中经常碰到 whose view is not in the window hierarchy 的错误,该错误简单的说,是由于 "ViewController" 还没有被夹在,就调用该 ViewController 或者 ViewController 内的方法时,就会报这个错误. 在不同地方调用 ViewController,解决的方法也不太一样. 1. 在 一个 ViewController 里面调用另外一个 ViewController 是出现这个错误: 该错误一