Linux常用命令小结2
Linux 中经常用到的命令小结2,书写格式请参看
http://www.cnblogs.com/ayy2014/p/4176880.html
1、 用户组操作
groupadd - create a new group #对应的文件位于/etc/group中
# 常用参数 -g 指定GID
groupadd -g 1002 group1002
groupdel - delete a group
# 不能删掉任何一个用户的primary group,需要手动检测,确保没有文件属于需要删除的组
groupdel group1002
2、 用户操作
useradd - create a new user or update default new user information
# 常用参数列表 -d 指定添加的用户默认home目录,如果指定的不存,系统不会创建 -p 指定添加用户密码 -u 指定用户密码 -g 指定用户组 -s 指定用户登陆shell nologin代表无shell
useradd -d /home/hello -p helloworld -u 1002 -g hello -s nologin hello
userdel - delete a user account and related files
# 常用参数列表 -f 删除用户,即使用户处于登陆状态 -r 删掉用户的主目录
userdel -f -r hello
chown - change file owner and group
# 常用参数列表 -R 递归地执行操作
chown username:usergroup /var/temp.log
chmod - change file mode bits
# 常见参数 -R 递归地执行操作
chmod o+x demo.sh #给shell脚本添加执行权限 其中前面的u g o 分别代表user、group、other +、- 代表添加添加和去掉w r x分别代表写,读和执行的权限
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。