Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Why does gnome desktop apps want a different password from the one i set for desktop user account "desktop"?
answering why is simple. installing applications is system wide operation. desktop user is just a user and owner of his desktop only, unlike root who is system master.
asking user for his password in the middle of his working session never made any sense security wise to me. any application run by desktop user also gets all privileges with that
there is always option to go with sudo solution but you basically lost most security as nothing stops anything to simply call "sudo something". then again, i never liked sudo, so i might be missing some fine grain tuning that can solve those and this might be in fact just my personal lack of knowing sudo.
and then there is also much simpler option to set same password for user and root which is probably what you want. open terminal and execute
su -
passwd
[enter old password]
[enter new password] 2x
I can install packages from cli as expected. I can add sources to sources.list using nano from cli as expected. i.e i have a working password.
Going to desktop > Activities > Applications > Add/Remove Software > selecting/deselecting any package > Apply > enter password >Authenticate gives "Sorry that did not work. Please try again"
How to troubleshoot fix?
Also you should not be using sudo for graphical apps, but install and use gksudo instead.
I am not using sudo. "Authentication is required to add or remove packages" Administrator password is required for authenitication.
Capiche?
not every application goes trough sudo execute_something
add/remove uses PackageKit API which is framework for Package management and it probably works differently
and you being sudo privileged user doesn't mean you'll work without password everywhere. i still say sudo is BAD KARMA though, do you remember "with power also comes responsibility" and sudo is power i really don't want. su - is not only more convenient, it's also more selective and secure
wow
holy moly
Are you jesting? stop it
Why is aptitude gui not accepting password?
Are you saying because i set sudo password i can not use aptitude gui because i have greater responsibility so just use cli?
still rfloling
if its asking for a password without you running sudo or gksudo, then its asking for the root password and not the account password.
Describe difference between root, user account and Administrator password. I think they all the same password in this case/example.
The default behaviour in ubuntu is for graphical apps to use a gksudo like interface to request sudo priviledges ( as the root account is disabled ). In debian, it prompts instead for the root password as disabling the root account is optional.