Answers for "command to give full permission to a folder in linux"

22

linux give permission to folder

sudo chmod -R a+rwx /path/to/folder
Posted by: Guest on June-08-2020
5

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 "command to give full permission to a folder in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language