码迷,mamicode.com
首页 > 其他好文 > 详细

Centos7 添加用户及设置权限

时间:2020-01-28 17:27:28      阅读:931      评论:0      收藏:0      [点我收藏+]

标签:pre   and   切换   detail   com   chmod   date   local   chm   

一、添加用户

  • 1、登录root 用户

[gau@localhost /]$ su
Password:   # 输入密码
[root@localhost /]# 
  • 2、添加用户
[root@localhost /]# useradd testuser
[root@localhost /]#
  • 3、设置用户密码
[root@localhost /]# passwd testuser
Changing password for user testuser.
New password:
BAD PASSWORD: The password is a palindrome
Retype new password:
passwd: all authentication tokens updated successfully.
[root@localhost /]#

二、给该用户添加root权限

  • 1、切换到root(#su)
  • 2、#chmod -v u+w /etc/sudoers 为sudoers添加可写权限
  • 3、输入vi sudoers,进入命令模式,按Insert,进入编辑模式

  • 4、在 sudoers 文件添加新用户信息到 ## Allow root to run any commands anywhere 下,修改后的效果为

????? ## Allow root to run any commands anywher
????? root ? ALL=(ALL) ?? ALL
????? xxx??? ALL=(ALL) ?? ALL #xxx为新增用户

  • 5、保存:按Esc 后 输入 :wq 保存并退出

  • 6、取消 sudoers 文件可写权限???? # chmod -v u-w /etc/sudoers

三、测试

1、普通用户进入

2、#sudo mkdir test(创建的文件夹名)

3、#ls 查看目录

4、#sudo rm -r test ( 删除文件夹)
————————————————
版权声明:本文为CSDN博主「喜欢海呀」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_25046261/article/details/78182536

Centos7 添加用户及设置权限

标签:pre   and   切换   detail   com   chmod   date   local   chm   

原文地址:https://www.cnblogs.com/geoffreygao/p/12238231.html

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