Redhat enterprise linux5常用配置

在安装Redhat Enterprise linux 5的朋友们,为了以后做服务配置的方便,请在安装redhat时把开发软件支持都点了。
 
 
 
 
帮助 xx  --help    或man  xx       //xx代表命令
linux的关机 shutdown -h 0 0 或shutdown now
 
修改ip、网关
 
vi  /etc/sysconfig/network-scripts/ifcfg-eth0
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=00:0C:29:8F:93:79
ONBOOT=yes
~                                                                               
改为
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
DEVICE=eth0
BOOTPROTO=static
IPADDR=192.168.1.13
NTEMASK=255.255.255.0
GATWAY=192.168.1.1
HWADDR=00:0C:29:8F:93:79
ONBOOT=yes
[root@localhost network-scripts]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:8F:93:79 
          inet addr:192.168.1.108  Bcast:255.255.255.255  Mask:255.255.255.0
        
 
[root@localhost network-scripts]# service network restart
 
 [root@localhost network-scripts]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:8F:93:79 
          inet addr:192.168.1.13  Bcast:192.168.1.255  Mask:255.255.255.0
         
 
更改启动级别
 
默认的运行级别可以通过修改 /etc/inittab 文件来改变,该文件在接近开头的地方有一行与下面相似:
vim /etc/inittab
# Default runlevel. The runlevels used by RHS are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:   // 数字 3 就是开机启动的默认级别
 
# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit
 
l0:0:wait:/etc/rc.d/rc 0
 
 
find
fnd /etc  -name sshd_config
fnd /etc  -name ‘shd*’  查找以 shd 开头的文件
使用管道 |
grep   字符查找
 
chkconfig 检查设置系统各种服务
[root@localhost home]# ls /etc/rc.d/
K----kill   
S   允许
 
开启不同级别的服务 chkconfig
[root@localhost network-scripts]# chkconfig --add nfs --level 5 on
[root@localhost network-scripts]# chkconfig --list
netconsole      0:off   1:off   2:off   3:off   4:off   5:off   6:off
netfs           0:off   1:off   2:off   3:on    4:on    5:on    6:off
netplugd        0:off   1:off   2:off   3:off   4:off   5:off   6:off
network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
nfs             0:off   1:off   2:off   3:off   4:off   5:on    6:off
nfslock         0:off   1:off   2:off   3:on    4:on    5:on    6:off
nscd            0:off   1:off   2:off   3:off   4:off   5:off   6:off
ntpd            0:off
 
 
任务管理器 top
时间设置
date �Cs ‘20091031 10:10:00’
clock �Cw 将时间写入 bios
 
日历   cal
[root@localhost]# cal
    October 2009   
Su Mo Tu We Th Fr Sa
             1  2  3
 4  5  6  7  8  9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
 
 
 
更改文件归属用户 chmod
[root@localhost home]# ls �Cl
r 读的权限     4
w 写的权限     2
x 执行的权限   1
-rw-r--r-- 1 root root    0 Oct 10 15:14 ji
rw- 当前用户权限   u   
r― 同组用户权限   g
r― 其他用户权限   o
chmod  u+w ji  当前用户增加 w 的权限
chmod  644 ji
chown �CR  用户:组   文件 递归继承
 
文件目录的创建删除
touch 文件的创建
mkdir 新建目录
rm 删除目录
rm �Crf  直接删除文件所有的东西(目录不为空可以删除)
rmdir 删除目录
cp 源目录   目标目录
mv 源目录 /etc  目标目录 /ettt
 
 

你可能感兴趣的:(linux,职场,休闲,常用配置)