/
Quote:
How to create a Directory with permission of drwxrwxrwt
|
HOW to create?
Do this:
user@host--$: mkdir ./myfolder [this is safer than the faster switching umask]
user@host--$: chmod 777 -R ./myfolder
user@host--$: chmod o+t -R ./myfolder
user@host--$: ls -l myfolder
drwxrwxrwt 2 user group 4096 2009-11-21 17:01 myfolder
Hope it works in your system.
Good luck.