Answers for "which command can be used to change ownership of a file in linux"

3

change owner of file in linux

chown USER:GROUP FILE
Posted by: Guest on July-22-2021
0

change ownership linux

<!-- 
This is to change permissions for a directory in linux : 
755 is better but for local operations you shoul be ok using 777
the -R is to apply to all containing folders. It stands for recursive.
-->
<!-- 755 is safer -->
chmod 755 -R folder-Name

<!-- 777 is mighty and powerful ;) -->
chmod 777 -R folder-Name
Posted by: Guest on September-09-2021

Code answers related to "which command can be used to change ownership of a file in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language