码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 中/etc/resolv.conf 文件修改丢失的解决方案

时间:2017-12-07 13:36:02      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:int   names   conf   server   ##   restart   ace   ####   res   

方法一

1.需要创建一个文件/etc/resolvconf/resolv.conf.d/tail

sudo vi /etc/resolvconf/resolv.conf.d/tail

2.在该文件中写入自己需要的dns服务器,格式与/etc/resolv.conf相同

nameserver 8.8.8.8  

3.重启下resolvconf程序

sudo /etc/init.d/resolvconf restart 

再去看看/etc/resolv.conf文件,可以看到自己添加的dns服务器已经加到该文件中

方法二

在/etc/network/interfaces中

  1. ###interfaces中#######     
  2. auto eth0     
  3. iface eth0 inet static     
  4. address 192.168.3.250     
  5. netmask 255.255.255.0                  #子网掩码     
  6. gateway 192.168.3.1                      #网关     
  7. dns-nameservers 8.8.8.8 8.8.4.4    #设置dns服务器

Ubuntu 中/etc/resolv.conf 文件修改丢失的解决方案

标签:int   names   conf   server   ##   restart   ace   ####   res   

原文地址:http://www.cnblogs.com/austinspark-jessylu/p/7998389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!