美文网首页
linux新增用户并授权(转载)

linux新增用户并授权(转载)

作者: 幻影翔 | 来源:发表于2020-01-01 09:31 被阅读0次

    新增用户

    [root@localhost ~]# adduser test
    

    设置密码

    为这个用户初始化密码,linux会判断密码复杂度,不过可以强行忽略:
    
    [root@localhost ~]# passwd test
    更改用户 test的密码 。
    新的 密码:
    无效的密码: 密码未通过字典检查 - 过于简单化/系统化
    重新输入新的 密码:
    passwd:所有的身份验证令牌已经成功更新。
    

    授权sudo

    [root@localhost ~]# whereis sudoers
    sudoers: /etc/sudoers /etc/sudoers.d /usr/libexec/sudoers.so /usr/share/man/man5/sudoers.5.gz
    找到这个文件位置之后再查看权限:
    
    [root@localhost ~]# ls -l /etc/sudoers
    -r--r----- 1 root root 4251 9月  25 15:08 /etc/sudoers
    是的,只有只读的权限,如果想要修改的话,需要先添加w权限:
    
    [root@localhost ~]# chmod -v u+w /etc/sudoers
    mode of "/etc/sudoers" changed from 0440 (r--r-----) to 0640 (rw-r-----)
    然后就可以添加内容了,在下面的一行下追加新增的用户:
    
    [root@localhost ~]# vim /etc/sudoers
    
    
    ## Allow root to run any commands anywher  
    root    ALL=(ALL)       ALL  
    linuxidc  ALL=(ALL)       ALL  #这个是新增的用户
    wq保存退出,这时候要记得将写权限收回:
    
    [root@localhost ~]# chmod -v u-w /etc/sudoers
    mode of "/etc/sudoers" changed from 0640 (rw-r-----) to 0440 (r--r-----)
    这时候使用新用户登录,使用sudo:
    
    [linuxidc@localhost ~]$ sudo cat /etc/passwd
    [sudo] password for test: 
    
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these three things:
    
        #1) Respect the privacy of others.
        #2) Think before you type.
        #3) With great power comes great responsibility.
    第一次使用会提示你,你已经化身超人,身负责任。而且需要输入密码才可以下一步。
    如果不想需要输入密码怎么办,将最后一个ALL修改成NOPASSWD: ALL。
    

    原文地址

    相关文章

      网友评论

          本文标题:linux新增用户并授权(转载)

          本文链接:https://www.haomeiwen.com/subject/nqywoctx.html