美文网首页
Linux权限基础

Linux权限基础

作者: CHUNG_BIN | 来源:发表于2019-11-20 16:53 被阅读0次

    添加用户

    adduser chung
    password xxx
    

    开放Sudo

    [root@VM_0_6_centos ~]# whereis sudoers
    sudoers: /etc/sudoers /etc/sudoers.d /usr/libexec/sudoers.so /usr/share/man/man5/sudoers.5.gz
    [root@VM_0_6_centos ~]# ls -l /etc/sudoers
    -r--r----- 1 root root 3907 Jun 23  2017 /etc/sudoers
    [root@VM_0_6_centos ~]# chmod -v u+w /etc/sudoers
    mode of ‘/etc/sudoers’ changed from 0440 (r--r-----) to 0640 (rw-r-----)
    

    给用户设置组

     groupadd developers
     1. 用户存在的情况下
     usermod -a -G developers chung
     -a = append , 只有-G的话 就直接覆盖了除用户主要组以外的所有组
     
     2. 用户不存在的情况下
     useradd -G developers chung
     
     3. 修改用户的主要组
     usermod -g backend chung
     chung : backend developer
     
     4. 查看用户所有组
     groups chung
    
    

    相关文章

      网友评论

          本文标题:Linux权限基础

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