Setting File Permissions in Linux

In Linux, you can easily change the file permissions by right-clicking the file or folder and select “Properties”. There will be a Permission tab where you can change the file permissions. In the terminal, the command to use to change file permission is “chmod“. In short, “chmod 777” means making the file readable, writable and executable by everyone.

chmod 775 /path/to/file
Continue reading “Setting File Permissions in Linux”