How to get Unrestricted Access in Linux
UAC is one of the most annoying and least used features ever invented for an operating system. We hate it on Windows Vista, we hate it on Windows 7. Linux has an account restriction which prompts for passwords for all silly tasks like update. We equally hate this on Linux as well.

In fact, on Linux, we have to enter the root password, even if we have root privileges to perform a root level operation.
Disabling the regular password prompt on Linux is quick and easy. Though there is no GUI for doing this at present, we hope one will be introduced someday. But for now, you can do this to disable the password prompt on Ubuntu Linux.
- Open up the terminal. Enter
gksudo gedit /etc/sudoers. This brings up the file /etc/sudoers opened in Gedit. - Look for the line
%admin ALL=(ALL) ALL. - Change it to
%admin ALL=(ALL) NOPASSWD: ALL. All set, save and close.
Now you are free of all annoying password prompts for package installations, updates and all applications.
Comment Using Facebook
One Response to this Article | Share your Opinions/Comments
We moderate comments to prevent spam. Moderation is done within few hours. Please try and stay on topic and refrain from using abusive language. If you think there is a problem with this post, please email the post author or send us an email at tips@techie-buzz.com with the URL and the problem you see and we will rectify it as soon as we can.


1. Editing the sudoers file should be done with “visudo”, which does some syntax checking and updates other files afterwards.
2. Don’t ever ___EVER___ grant full root privileges to yourself. It’s never required unless you’re doing system level tasks, or installing software to protected folders.
If you are too pissed with having to enter a password, run “sudo su” in a terminal to open a root console, and use that – don’t make your gdm run as another user, it’s dangerous and outright stupid.