linux:增加用户,赋予权限

时间:2022-04-07 08:54:03
  1. 添加用户
    adduser test //添加一个test用户
    passwd test //修改密码

  2. 赋予root权限
    方法一:修改 /etc/sudoers 文件,取消以下注释
    Allows people in group wheel to run all commands配置项:
    %wheel ALL=(ALL) ALL
    然后修改用户,使其属于root组(wheel):
    usermod -g root test
    方法二:修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
    Allow root to run any commands anywhere配置项:
    root ALL=(ALL) ALL
    test ALL=(ALL) ALL

附:root与用户环境变量相关修改文件:
http://blog.csdn.net/s332755645/article/details/76376978