I am running Fedora 17 KDE x64 and Qt 4.8.1.
In contrast with Ubuntu, Fedora doesn’t give the first created user sudo privileges and it doesn’t add the first created user to the /etc/sudoers file. Therefore when installing programs on Fedora 17 KDE (haven’t tested the Gnome and etc. spins) it requires root (not sudo) privileges. So, we have three levels of privileges (listed in descending order according to the level of privileges):
1) root 2) sudo 3) user
In Fedora 17 KDE if you have access to the root user account you can give sudo privileges to any other user you want simply by editing the /etc/sudoers file and adding the line:
user ALL = (ALL) ALL
… below the line:
root ALL = (ALL) ALL
Replace user with the name of the account you wish to give sudo access to.
But not every user has access to the root user’s account. That’s why the root user could give super-user (sudo) privileges to some user accounts.
What I want to to is to check if the current user running the application is registered as super-user. If so I will make the /usr/bin/kdesu tool use the /usr/bin/sudo tool which asks for sudo password.
If the user is not super-user I leave /usr/bin/kdesu behave as it does by default – it uses the /usr/bin/su tool that requires root password.
Currently, I am using getenv('USER') (“USERNAME” on Windows but I need this functionality on Linux only) to get the current user. The current user’s name could be acquired by traversing QProcess::systemEnvironment() where HOSTNAME and USER variables are listed.
Parsing the /etc/sudoers file is not an option since opening the file requires sudo or root privileges.

sudo -llists sudo rights of current user. If you run it, user has to type in his password. You could use something likeexpectto check if user has already typed the password before and is currently in a "sudo time window". – snies Jul 1 '12 at 11:54sudo -l. I have just checked it on an account with no privileges and the command did not ask for a password, but simply listed all allowed commands. – n.m. Jul 1 '12 at 12:04