How do I disable Ubuntu Authenticate popup that is used to elevate privileges?

2

2

How do I disable Ubuntu Authenticate popup that is used to elevate privileges?

Please do not put answers telling that this is a security issue, the purpose of this question is how and not why.

sorin

Posted 2011-02-09T17:18:07.343

Reputation: 9 439

Answers

3

Added to /etc/sudoers

yourusername ALL=NOPASSWD: ALL

Having been a Unix veteran for 20 years, long before the inception of Ubuntu, I too don't need another lecture about root access, to be found everywhere searching for simple information.

No matter what the docs say, even now with 11.10 the damn popup appears every few minutes when I have dozens of software-center installs queued. So much for trying to get that done overnight.

Another thing I often resort to is sudo -i to a root shell from the terminal to run software-center or other common gui apps (like gparted) that otherwise just love to popup modal password dialogs.

Marcos

Posted 2011-02-09T17:18:07.343

Reputation: 1 051

1

Strange question but here's two ideas:

a) enable root user assigning a password: sudo passwd root

b) log in as root

Another one would be tweak the sudoers file:

Open a terminal and digit:

sudo visudo

And move the big paragraph to the end , remove the # in front of sudo and add yourself to a sudo group

ps If you want to keep it simple add under:

root ALL=(ALL) ALL

yourusername ALL=(ALL) ALL

Pitto

Posted 2011-02-09T17:18:07.343

Reputation: 1 766

I'm really interested about b). Where is the big paragraph you are talking about? – sorin – 2011-02-09T17:26:53.577