Guest User

Untitled

a guest
Mar 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. groupadd www-pub
  2. usermod -a -G www-pub usera # must use -a to append to existing groups
  3. usermod -a -G www-pub userb
  4. groups usera ## display groups for user
  5.  
  6. chown -R root:www-pub /var/www # -R for recursive
  7.  
  8. chmod 2775 /var/www
  9.  
  10. find /var/www -type d -exec chmod 2775 {} +
  11.  
  12. find /var/www -type f -exec chmod 0664 {} +
Add Comment
Please, Sign In to add comment