LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   run program as root / password prompt (https://www.linuxquestions.org/questions/linux-software-2/run-program-as-root-password-prompt-301810/)

acidjuice 03-15-2005 06:49 AM

run program as root / password prompt
 
dear all,

i have developed a small application that needs to be run as root.

now, if i set the 'execute' permissions to this file to root, if i run it as normal user i get an error, of course, since i do not have the permissions to do so.

what i'd like to do is that a box appears to enter the root password, so that then it's the root which is running the program. this is done in many apps such as package installers, updaters, desktop preferences setups, etc.

anyone knows how can i do this also for my tiny app?

thanks,

aj.

EDIT: i've seen that the files such as some package managers point to /usr/bin/consolehelper as link, but this starts console. or maybe SUDO? anyone?

p8080 03-15-2005 08:00 AM

you can use sudo. If you specify PASSWD in /etc/sudoers then the user will be prompted for the root password.
an entry in the /etc/sudoers such as:
%groupname ALL=PASSWD:ALL
should do it simply
regards

acidjuice 03-15-2005 08:08 AM

thank you p8080,

however i was looking for something a little more complex.

found this which is exactly what i was looking for, i guess this might be of some use to other forum members.

thank you,

aj.

zeropash 03-15-2005 08:18 AM

kdesu -u root -c command ?

jonaskoelker 03-15-2005 01:16 PM

`gksu ~/hanoi.sh', for those who don't use KDE.

elias5000 03-15-2005 01:51 PM

Quote:

Originally posted by zeropash
kdesu -u root -c command ?
what's kdesu? something like su for X?

i would use:

su - root -c <path>/<to>/<program>

or executing the prog with sudoers.
you can configure it so, that you can execute this certain prog as a certain user even without havong to give a password.

zeropash 03-15-2005 10:33 PM

kdesu comes with kde packge. it will ask for the password and after auth will run the program


All times are GMT -5. The time now is 11:02 PM.