Chinaunix首页 | 论坛 | 博客
  • 博客访问: 43742
  • 博文数量: 24
  • 博客积分: 920
  • 博客等级: 准尉
  • 技术积分: 235
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-05 11:10
文章分类
文章存档

2011年(1)

2010年(3)

2009年(20)

我的朋友
最近访客

分类: LINUX

2009-09-05 18:04:09

装好了系统,我们就要对源进行更新,还要安装好多应用软件,这就要用到网络。所以我们耀县配置好网络。
(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) |
给主人留下些什么吧!~~