整理了RedHat AS5 Linux常用命令锦集(主机维护日常收集)
1、授权命令 chmod
chmod 权限 目录/文件 例 给test目录读的权限:chmod +r /etc/test
linux规定,目录的权限:666 文件的权限:777 每文件有读、写、可执行三种权 限。
2、添加用户 useradd
例:useradd test -p123456
与此对应的是passwd 命令,创建完用户后,使用passwd test进行修改密码
3、查找文件 find
例:全盘查找test文件名 find / -name test --print
4、chkconfig --list
查看系统服务的启动等级,redhat包括了7层level。
runlevel 0 = halt/关机
runlevel 1 = single user mode = linux single/单用户模式(通常维护用)
runlevel 2 = n/a or user - user defined/用户定义
runlevel 3 = text mode with 6 virtual consoles/带有6个虚拟终端的文本模式(服务器常用此模式)
runlevel 4 = n/a or user - user defined/用户定义
runlevel 5 = graphics mode or X/图形模式或者X-window
runlevel 6 = reboot/重启
可以使用 chkconfig --level 35 servername on来更改启动的服务。
例:vsftp的redhat中默认是关闭的,更改为随系统自动运行:
chkconfig --level 35 vsftp on
5、mount 挂载命令
格式:mount [-t vfstype] [-o options] device dir
挂载光驱:mount -t is09660 /dev/cdrom /mnt/cdrom
挂载ISO文件:loop:用来把一个文件当成硬盘分区挂接上系统
mount -o loop /home/rdas5.iso /media