# Dev Tips!
### No permissions to write to file
* Inspect local permissions via: `ls -la`
* To change the permissions of a directory to allow for read, write and execute, run the command: `chmod u=rwx,g=rwx,o=rwx my_dir`
* Can also use octal notation
* See more [here](https://phoenixnap.com/kb/linux-file-permissions)``