http://blog.igevin.info/posts/ubuntu-1404-ip-dns/
先安装vim,然后按a启动编辑,两次按大写的Z结束编辑并保存。
修改/etc/network/interfaces
设置静态IP
sudo vi /etc/network/interfaces
用下面的代码替换有关eth0的内容:
# The primary network interface
auto eth0 #表示让网卡开机自动挂载eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
重启网络使上面的配置生效:
sudo /etc/init.d/networking restart
如果上面命令无法令ubuntu重启网络,则使用下面命令:
sudo ifdown eth0 && sudo ifup eth0
为Ubuntu14.04设置固定DNS
通过/etc/network/interfaces
,在它的最后增加一句:
dns-nameservers 8.8.8.8# 如果多个dns:
# dns-nameservers X.X.X.X Y.Y.Y.Y Z.Z.Z.Z