giving read and write access to group and folder

21,343
chgrp -R mygroup /var/www
chmod -R g+rwxs /var/www

CAUTION: This will overwrite your group ownership and permissions of all files under /var/www.

The 'g' will cause newly-created files or directories to take the same group as the directory they are created in. This is needed to preserve the ownership of newly-created files and directories.

Share:
21,343
EquinoX
Author by

EquinoX

A college student trying to master concepts of web development and ASP.NET

Updated on September 18, 2022

Comments

  • EquinoX
    EquinoX over 1 year

    Say I have a group called mygroup and I want it to have a permission of rwx (777) to the folder /var/www . How do I do this? What is the appropriate command to do this in ubuntu?