Answers for "linux give full permission to directory"

3

linux give full permission to directory

# Change permissions for the root file/dir only
chmod 777 path/to/directory/
# Or
chmod 777 path/to/file
# Change permission for root dir and all files/dirs within
chmod -R 777 path/to/directory/
Posted by: Guest on April-06-2020

Code answers related to "linux give full permission to directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language