提权
1. 编辑 /etc/passwd
sudo vim /etc/passwd
2. 找到要提权的用户,用户名以 test 为例
test:x:1000:1000::/home/test
3. 改掉1000为0,两个都改
test:x:0:0::/home/test
4. 保存,重启
usermod -g root username ,执行完后username即归属于root组了
解除openssh限制root用户ssh
1. 编辑 /etc/ssh/sshd_config
2. 找到 PermitRootLogin without-password
3. 改成 PermitRootLogin yes
4. 重启ssh服务
sudo /etc/init.d/ssh restart