Change the user group of folder linux Code Example
change the user group of folder linux
# You might need to use sudo with this command
# Change group
chgrp [USER] [FILE]
chgrp -R [USER] [FOLDER]
# Change owner
chown [USER] [FILE]
chown -R [USER] [FOLDER]