Tags:
create new tag
view all tags
We can share files under /ubc/cs/research/condon/people/ or /ubc/cs/research/condon/share/projects/. You must follow a couple of steps to ensure the group has proper read/write and execute access.

Suppose you want to share the directory foo.

# recursively change group
find foo -name "*" -exec chgrp ac-group {} \;

# recursively change permission of files
find foo -type f -exec chmod g+rw {} \;

# recursively change permission of directories
find foo -type d -exec chmod 770 {} \;

NOTE: You must also make sure that the group has read and execute privileges for all parent directories containing foo.

-- Main.cthachuk - 04 Aug 2010

Edit | Attach | Watch | Print version | History: r2 < r1 | Backlinks | Raw View |  Raw edit | More topic actions
Topic revision: r2 - 2010-08-04 - jujubix
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback