I want a user called bob and a group called library, to be able to access this folder on any PC in my network.
I made a user called bob.
I made a group called library.
I set the folder Library/ to be owned by bob and the group called library.
Code: Select all
chown -R bob:library Library/Code: Select all
chmod -R ug+rwx Library/Code: Select all
chmod -R a+rwx Library/EDIT:
For some magical reason I tried
Code: Select all
chmod -R ug+rwx Library/EDIT2:
If I remove owner permissions, but keep group permissions (bob is a part of library, which owns the Library/ directory), why cant I continue to access my files?
