Answers for "give full permissions 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
0

how to give full permission to another user linux

give full permssion to ext hard
sudo chown username: /media/EXT1_MALATYA
Posted by: Guest on September-17-2021

Code answers related to "give full permissions to a folder in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language