码迷,mamicode.com
首页 > 系统相关 > 详细

Linux常用命令小结2

时间:2015-01-24 15:49:36      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

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分别代表写,读和执行的权限

  

 

  

Linux常用命令小结2

标签:

原文地址:http://www.cnblogs.com/ayy2014/p/4245895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!