![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | 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 |
| Newbie, Directories permissions | sypherz | Linux | 3 | 04-22-2008 11:14 AM |
| Backup Directories and SubDirectories with log using DOS | osramos | Windows & DOS: Issues & Discussions | 1 | 11-14-2007 02:10 PM |
| Compare/Diff between directories and subdirectories? | andylee80 | UNIX for Dummies Questions & Answers | 5 | 07-12-2007 06:45 AM |
| Display only subdirectories from given directories | HAA | Shell Programming and Scripting | 8 | 04-25-2007 02:36 AM |
| How to Remove Ctrl M characters in files from directories and its subdirectories | skdp | Shell Programming and Scripting | 7 | 07-29-2006 08:53 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Permissions for Directories and Subdirectories
Is it possible to have a directory owned (by root) with permissions drwx------
and then have a sub directory of rwxrwxrwx. I know that this may be soo simple but I had no luck googling it. Thanks for your help |
| Forum Sponsor | ||
|
|
|
|||
|
It's very possible to have directories setup like this.
Code:
[root@localhost ~]# ls -ld junk/ drwx------ 3 root root 4096 Aug 7 17:37 junk/ [root@localhost ~]# ls -l junk/ total 4 drwxrwxrwx 2 root root 4096 Aug 7 17:37 junk1 [root@localhost ~]# |
|||
| Google UNIX.COM |