How do I make a directory writable, from the Mac terminal?
+1
A:
chmod 777[directory]
This will give you execute/read/write privileges. You can play with the numbers to finely tune your desired permissions.
Here is the wiki with great examples.
northpole
2009-07-01 16:56:43
Solved! Thanks.
2009-07-01 17:15:11
+2
A:
chmod +w <directory>
orchmod a+w <directory>
- Write permission for user, group and otherschmod u+w <directory>
- Write permission for userchmod g+w <directory>
- Write permission for groupchmod o+w <directory>
- Write permission for others
Alan Haggai Alavi
2009-07-01 17:18:40