- 论坛徽章:
- 0
|
一般来说写到/etc/resolv.conf中的:
nameserver xxx.xxx.xxx.xxx
字段是可以保存的,可以有些人的却好像被什么文件覆盖了,在/etc/resolv.conf里面有下面一段:
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
下边的方法是参照:http://ubuntuforums.org/archive/index.php/t-6704.html
原文给出的:
I have a nice bodgy solution which seems to stick :)
The file /etc/resolvconf/resolv.conf.d/base contains entries which will
always be added, regardless of what resolv.conf also adds. It's empty
by default. If you edit it:
sudo gedit /etc/resolvconf/resolv.conf.d/base
And add lines for your nameserver(s):
nameserver xxx.xxx.xxx.xxx
nameserver xxx.xxx.xxx.xxx
Then when resolvconf runs on startup, it will produce a resolv.conf file something like this:
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver xxx.xxx.xxx.xxx
nameserver xxx.xxx.xxx.xxx
nameserver 127.0.0.1
nameserver yyy.yyy.yyy.yyy
...and that works.
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/21355/showart_150915.html |
|