how can i allow a power user 2 shutdown linux boz from console
Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
you can change the permission of shutdown
so that other users can also shutdown , without elevating their
previlages (and hope you dont need to create a user just for
shutdown :-) ).
what I do is create a 'shutdown' group, then modify /sbin/shutdown so that its group owner (set to 'shutdown') has executable permission, chmod /sbin/shutdown to suid ('chmod 4550 /sbin/shutdown') and add the desired user to the 'shutdown' group.
heh, i also configured sudo for it, i did it differently though, as i have only the root account and my own.
i just added this to the command alias thingie:
Code:
#Command Alias section
[your_username] ALL=NOPASSWD:/sbin/shutdown
Well if you just do what jpbarto said then you can do it right now, easy as, you dont need any additional software or anything. Looks like it would work, jpbarto says it does anyway.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.