Ubuntu下如何将普通用户提升到root权限

时间:2022-05-20 05:57:47

提升的方法如下:在shell里面输入  sudo gedit /etc/passwd   将里面的当前用户的ID值进行修改。譬如我的当前用户是hellopython

则找到了   hellopython:x:1000:1000:hellopython:/home/hellopython:/bin/bash   将两个1000改成0即可

即最后改完的结果为:

hellopython:x:0:0:hellopython:/home/hellopython:/bin/bash 

最后将Ubuntu系统进行注销,然后在登陆的用户名里输入 你自己的用户名和密码,这样登陆上来就是root权限了。这是因为root的ID值为0。