Centos增加用户并授权
- 增加用户adduser test
passwd test - 授权
chmod
-v u+w /etc/sudoers
vi /etc/sudoers
## Allow root to run any commands anywher
root ALL=(ALL) ALL
admin ALL=(ALL) ALL
chmod
-v u-w /etc/sudoers
su test
以上是 Centos增加用户并授权 的全部内容, 来源链接: utcz.com/z/514686.html