![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| htable + verification | kamel.seg | High Level Programming | 0 | 06-17-2008 07:02 AM |
| Possible to give sudo access to subdirectories? | LordJezo | UNIX for Dummies Questions & Answers | 3 | 03-26-2008 03:47 PM |
| secure access using sudo | melanie_pfefer | SUN Solaris | 0 | 03-12-2008 04:11 AM |
| SSH login verification | sriram003 | Shell Programming and Scripting | 4 | 03-26-2007 01:27 AM |
| verification? | sheranjem | UNIX for Dummies Questions & Answers | 3 | 06-06-2005 02:08 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
sudo access verification
Hi All,
I got lots of request with sudo, a manager request, verbal command, do this and do that. The problem with this kind of request is when I added that script and that. It will not be perfect, it's because I can't verify the userid sudo access, I can't reset their password as well, I can't "sudo -l" when I "su - userid" to them. Is there a file that I could see all these new sudo access list? Thanks for any comment you may add. |
|
|||||
|
You should be able to run: Code:
$ sudo -l having previously run: Code:
# su - userid Check that /etc/sudoers has the correct ownership and permissions, mine is owned by root:root is set to r--r-----. Check that if the line in the sudoers(5) file you are allowing them to run something with starts with a group (e.g. line starts with: %groupname ) then the user is actually in that group, if you are specifying a particular user (e.g. line starts with userid ) then ensure that it has been entered correctly, for instance by running: Code:
# getent passwd userid and ensuring that you get a response. Apart from that it would be a case of checking the syntax of the suoders line but visduo(8) does that for you? |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|