![]() |
|
|
|
|
|||||||
| 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 |
| chown issue | praveenkumar_l | UNIX for Advanced & Expert Users | 9 | 09-02-2007 02:27 PM |
| chown | ariec | AIX | 2 | 08-14-2007 01:24 PM |
| chown doesn't work | shriashishpatil | UNIX for Advanced & Expert Users | 10 | 03-07-2006 11:12 AM |
| chown | BG_JrAdmin | UNIX for Dummies Questions & Answers | 1 | 05-31-2005 10:47 AM |
| chown and NIS | Jody | UNIX for Dummies Questions & Answers | 2 | 07-01-2003 11:57 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
chown and permissions
how i could give to user permission(delete,execute and so on) and ownership to files?
Thanks |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
# chown user:group filename
Where 'use'r is who you want to give priveleges to, and 'group' is their user group. This would make 'filename' owned by them. # chown user:group -R dirname Would give 'user' ownership of 'dirname' and go recursively through it giving them ownership to all the files within it. The command chmod is used for changing r/w/x permissions, see 'man chmod'. |
|||
| Google The UNIX and Linux Forums |