This problem is caused sometimes when the permissions of the file, /usr/bin/sudo get set to 777. If you do something like chmod -R 777 /usr/
, you can do this. It effectively ruins sudo. Here is the solution if this is your problem, and the accepted answer doesn't work:
To fix:
Restart pc, press shift at boot menu.
This should bring up GNU GRUB (ie recovery mode) menu.
- If this doesn't work, just restart mid boot and choose recovery mode when prompted on next launch.
Select the line which starts with Advanced options
Select the topmost version of the OS ending with ("recovery mode")
Press enter
In the following menu, go down to "Drop to root shell prompt"
Type the following:
mount -o remount,rw /
mount --all
chown root:root /usr/bin/sudo
chmod 4755 /usr/bin/sudo
restart
This should restore sudo privellages.