![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| 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 |
| Inherit Group File Permission | april | UNIX for Dummies Questions & Answers | 1 | 04-28-2008 03:13 AM |
| permission, owner and group | pascalbout | Shell Programming and Scripting | 2 | 01-14-2006 08:47 AM |
| group permission | thumper | UNIX for Dummies Questions & Answers | 6 | 02-17-2005 01:03 PM |
| Group permission not working | bbauerle | AIX | 13 | 05-10-2004 05:41 AM |
| how to define permission of unix group | mncapara | UNIX for Dummies Questions & Answers | 3 | 10-16-2002 06:00 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
how to add permission of directory to a group
Hi,
A simple and silly question on Unix. I have a directory named "a" and I would like to grant permission to group name "text" to access, read and execute my directory. Could anyone help me? Thanks. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Try chmod command
Quote:
|
|
#3
|
|||
|
|||
|
Case 1) If the owner of directory a is in group "text" then
chmod -R g+rx a Case 2) If the owner of directory a is not in group "text" then chmod -R o+rx a |
|||
| Google The UNIX and Linux Forums |