lubuntu12.04设置静态IP

前端之家收集整理的这篇文章主要介绍了lubuntu12.04设置静态IP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近得到一台三星X05-05U2笔记本电脑。 256+1g内存、40G硬盘、奔腾M单核处理器1.4GHZ。 十三年前买的,现在竟然还能跑。质量真是不错,准备拿到公司当服务器用。

安装的时候走了点弯路。这么老的处理器不支持pae内存扩展管理,只能安装lubuntu12.04以下的老系统。


安装完了设置静态IP

1. sudo vim /etc/network/interfaces

auto   lo
iface  lo inet loopback


#todo: add static ip
auto  eth0

iface  eth0  inet static
address   9.0.0.100
netmask  255.255.255.0
gateway  9.0.0.1

#endif

2. sudo vim /etc/resolvconf/resolv.conf.d/base

#todo: add  dns server
nameserver  9.0.0.1
#endif

3.重启网络管理器

sudo /etc/init.d/networking restart

原文链接:https://www.f2er.com/ubuntu/354208.html

猜你在找的Ubuntu相关文章