tags:

views:

397

answers:

3

How do I make a directory writable, from the Mac terminal?

+11  A: 
chmod +w <directory>
samoz
+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
Solved! Thanks.
+2  A: 
  • chmod +w <directory> or chmod a+w <directory> - Write permission for user, group and others

  • chmod u+w <directory> - Write permission for user

  • chmod g+w <directory> - Write permission for group

  • chmod o+w <directory> - Write permission for others

Alan Haggai Alavi