I given wrong permission to the /etc folder wrongly
chmod -R 777 /etc
While i want to login as root it gives me error and gives the following output.
How can i give the correct permission and fix this ?
system13@motpl:~$ sudo su
sudo: /etc/sudoers is mode 0777, should be 0440
sudo: no valid sudoers sources found, quitting
sudo: unable to initialize policy plugin
system13@motpl:~$ su root
Password:
su: Authentication failure
system13@motpl:~$
/etc
is only writeable by root as default. Did youchmod
initially as root? Can you just revert? – Sparhawk May 15 '14 at 06:32/etc
directory instead of just/etc/sudoers
. Also, @SulthanAllaudeen, for future reference,sudo chmod
is preferred, but if you really want to log in as root, usesudo -i
. – Sparhawk May 15 '14 at 07:05