CentOS学习笔记
作者:admin 日期:2012-10-30
2012/10/30
永久开启服务
chkconfig iptables on/off
chkconfig iptables reset
暂时性的开启服务,重启后关闭
service iptables start
service iptables stop/restart
防火墙,文件
/etc/sysconfig/iptables
用户管理【linux下添加,删除,修改,查看用户和用户组】
#adduser test1
#passwd test1 123123
用户列表/etc/passwd
$whoami显示用户名
$id 显示用户的id以及uid等信息
who查看当前登录的用户
系统查看
查看CentOS版本
cat /etc/redhat-release
用户登录时自动执行的文件
用户登录时,bash首先自动执行系统管理员建立的全局登录script :/ect/profile。然后bash在用户起始目录下按顺序查找三个特殊文件中的一个:/.bash_profile、/.bash_login、/.profile,但只执行最先找到的 一个。
因此,只需根据实际需要在上述文件中加入命令就可以实现用户登录时自动运行某些程序(类似于DOS下的 Autoexec.bat)。
评论: 0 | 查看次数: 6607