How can I make directory writable? [closed]
Solution 1:
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
Solution 2:
chmod +w <directory>
Solution 3:
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.