![]() |
|
|
|
|
|||||||
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Permission 711---RWX---X---X | bobo | UNIX for Dummies Questions & Answers | 6 | 03-29-2006 08:50 AM |
| Permission? | rahulrathod | UNIX for Dummies Questions & Answers | 1 | 02-13-2006 08:31 AM |
| permission help | eloquent99 | UNIX for Dummies Questions & Answers | 2 | 02-12-2003 12:30 AM |
| su permission | siavoush | UNIX for Dummies Questions & Answers | 12 | 06-15-2002 08:56 PM |
| Ftp permission 644 | cagnod | UNIX for Advanced & Expert Users | 4 | 04-10-2002 03:42 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
permission
Is it possible to set owner to a group? I need to have a group own a process, because there will be 3 diffrent persons that will start and stop this process. They can not use the same users cause och back logging. we need to know who end when a certian user start/stops processes.
|
| Forum Sponsor | ||
|
|
|
|||
|
Set the group of the file that needs to be executed to the group used by the three users, and chmod the file to... 770.
example: -wrxwrx--- root jgroup /usr/bin/tail in /etc/group (your milage may vary) be sure john, brad and dave are in group jgroup. Change as needed. `ps` will show which user has executed the file, but only root and those in the group will be able to use the file. Cheers, -Seg ps: to log who used it create a script file to echo $user $tty `date` to a file then execute the process... Quote:
|
|||
| Google UNIX.COM |