一、为用户增加root权限
1. 增加普通用户
useradd -D -b /home/ #将/home/ 设为homedir
useradd -m test #增加用户test,并创建test的目录
passwd test #为test设置密码
2. 增加root权限
vim /etc/sudoers 或 visudo
找到## Allow root to run any commands anywhere
在root ALL=(ALL) ALL下面增加
test ALL=(ALL) ALL
3. 以root权限登录
sudo su -
二、为root组增加root权限
1. 将test加入到root组
usermod -g root test
2. 增加root权限
vim /etc/sudoers 或 visudo
找到## Allows people in group wheel to run all commands
增加如下
%whell ALL=(ALL) ALL
3. 以root权限登录
sudo su -
阅读(2003) | 评论(0) | 转发(0) |