新用户赋root 权限设置: 1、打开超级终端,输入指令sudo gedit /etc/passwd ,回车;
2、找到我们用户名所在的那一行,将里面的当前用户的ID值进行修改。譬如我的当前用户是test。 3、则找到了 test:x:1000:1000:test:/home/linuxidc:/bin/bash 将两个1000改成0即可。 4、退出保存后重启。 修改后,不能远程登录问题 : 1、修改 vi /etc/ssh/sshd_config 2、注释PermitRootLogin without-password 3、添加PermitRootLogin yes ,保存退出。 4、重启ssh 如 service ssh restart
|