红联Linux门户
Linux帮助

Ubuntu下误修改用户组导致sudo命令无效

发布时间:2015-12-18 15:21:41来源:linux网站作者:Kevin-Kong

1.手贱地修改了当前用户的权限组,导致sudo命令无法使用,且root用户的密码尚未修改,登陆不了root用户.


2.切换到recoverymode ,使用root用户登陆


3.执行mount -o rw,remount /命令可以修改文件系统为读写


4.然后使用passwd 命令修改root用户密码,重启


5.su - 命令切换到root 用户


6.修改/etc/sudoers文件把当前用户添加到root (ALL:ALL)=ALL行下

kevin     (ALL:ALL)=ALL


Linux su和sudo命令的区别:http://www.linuxdiyf.com/linux/12353.html

Linux基础知识:“su & sudo”命令使用举例:http://www.linuxdiyf.com/linux/7583.html

su与sudo的区别:http://www.linuxdiyf.com/linux/2235.html

sudo命令的用法:http://www.linuxdiyf.com/linux/12129.html

Ubuntu /etc/sudoers权限被误改为777后导致sudo命令不能使用:http://www.linuxdiyf.com/linux/15506.html