Centos增加用户并授权

编程

  1. 增加用户adduser test
                    passwd  test
  2. 授权  chmod -v u+w /etc/sudoers

    vi /etc/sudoers

    ## Allow root to run any commands anywher

    root ALL=(ALL) ALL

    admin ALL=(ALL) ALL

  3. chmod

     

    -v u-w /etc/sudoers

  4. su test

以上是 Centos增加用户并授权 的全部内容, 来源链接: utcz.com/z/514686.html

回到顶部