How to check that my python script is running under Administrator rights (sudo) under BSD-like OS? Need to display user-friendly warning in order it is executed without admin rights.

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

How about this? Check if uid == 0 :

[kbrandt@kbrandt-admin: ~] python -c 'import os; print os.getuid()'

196677

[kbrandt@kbrandt-admin: ~] sudo python -c 'import os; print os.getuid()'

0

link|improve this answer
I have never seen an UID higher than ~25500 O_o – grawity Jun 1 '09 at 13:28
I actually shortened it :-) . I use likewise open for Linux authentication, which creates a large UID by hashing the Windows SID. – Kyle Brandt Jun 1 '09 at 13:32
feedback

In Unix-like OSes, the only "Administrator" is the root user with uid=0. (There may be more users with the same uid, and they all will have the same privileges.)

So probably the best way is:

import os
if os.getuid() == 0:
    print("r00tness!")
else:
    print("I cannot run as a mortal. Sorry.")
link|improve this answer
feedback

How about that one:

import os
username=os.system("whoami")
if username is not "root":
    print "You aren't root"
else:
    print "Hello, "+username
link|improve this answer
feedback

Don't be tempted to match a username against the string "root".

Generally you will either have to provide less efficient callouts to obtain the textual representation of the UID or you will be relying on environment variables which may not be so trustworthy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.