Chinaunix首页 | 论坛 | 博客
  • 博客访问: 433893
  • 博文数量: 158
  • 博客积分: 1855
  • 博客等级: 上尉
  • 技术积分: 1888
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-18 14:19
文章分类

全部博文(158)

文章存档

2013年(4)

2012年(16)

2011年(10)

2010年(40)

2009年(61)

2008年(33)

分类:

2009-09-16 16:47:39

默认情况下,不允许root用户登录
以普通用户登录后,$sudo su - root或su - root修改root用户的密码,然后再切换到root身份.
 
1、设置固定ip

sudo gedit /etc/network/interfaces

在该文件中加入如下内容:

auto eth0
iface eth0 inet static

address xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx

输入完成后保存退出。
注:address为ip地址   netmask为子网掩码   gateway为网关

2、设置DNS服务器地址

sudo gedit /etc/resolv.conf

在该文件中加入如下内容:

nameserver xxx.xxx.xxx.xxx

录入完成后保存退出。
3、ifdown eth0
ifconfig eth0 hw ether 00:0c:29:53:02:b3
ifup eth0
4、重启网络,使设置生效
命令:sudo /etc/init.d/networking restart
阅读(1576) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~