BIP KB Tag: Permissions
An Introduction To Linux Permissions
This tutorial is part 3 of 4 in the series: Getting Started with Linux
Introduction Linux Permissions
Linux is a multi-user OS that is based on the Unix concepts of file ownership and permissions to provide security, at the file system level. If you are planning on improving your Linux skills, it is essential that have a decent understanding of how Linux ownership and Linux permissions work. There are many intricacies when dealing w...
By frank, January 23, 2015
How To Change Permissions For Files And Directories
chmod
This command changes the permission of a file. To change the permissions of all files and directories in the public_html/ folder use the following command:
cd /home/username/public_html ; find . -type f | xargs chmod 644 ; find . -type d | xargs chmod 755
For more information about chmod command use man chmod....
By jason, April 6, 2015