装好了系统,我们就要对源进行更新,还要安装好多应用软件,这就要用到网络。所以我们耀县配置好网络。
(1)首先我们要切换到root用户
用这个命令进行切换:sudo -s,会要求你输入密码。
guo@guo-desktop:~$ sudo -s
[sudo] password for guo:
(2)设置IP,子网掩码,网关
root@guo-desktop:~# gedit /etc/network/interfaces
在打开的文件中输入如下:
auto lo
iface lo inet loopback
iface eth0 inet static
address xxx.xxx.xxx.xxx
netmask 255.255.255.0
gateway xxx.xxx.xxx.xxx
auto eth0
保存退出。
(3)配置DNS服务器
root@guo-desktop:~# gedit /etc/resolv.conf
在打开的文件中哦个输入如下:
nameserver xxx.xxx.xxx.xxx
保存退出。
(4)启动网络
root@guo-desktop:~# /etc/init.d/networking restart
出现这样 * Reconfiguring network interfaces... [ OK ]
表示ok了,然后我们看能不能ping通。
阅读(547) | 评论(0) | 转发(0) |