下面这些都是这两天试用阿里主机时操作所用的!当然是为了熟悉linux的服务配置
CentOS服务构建
http://www.centospub.com/
关闭防火墙: service iptables stop, 查看: chkconfig iptables off
打开sshd: service sshd start
centos 更新密码:passwd root
开机启动服务列表:chkconfig --list
chkconfig --level 235 httpd on
chkcofig iptables off
==============用户组============================
用户列表文件:/etc/passwd
用户组列表文件:/etc/group
添加用户组 groupadd [用户组名称]
删除用户组 groupdel [用户组名称]
更改用户组 groupmod [-n 新用户组名称] [旧用户组名称]
查看用户...