Create a directory called /documents and the user clado should be given permission to view the contents of /documents.The user student, visitor, redhat must be given permission to create files within /documents
Create a directory called /documents and the user clado should be given permission to view the contents of /documents.The user student, visitor, redhat must be given permission to create files within /documents
I'm new to Linux, but I may be able to help.
Go to the location you want to make the directory via "cd" and follow the terminal commands after "cd Desktop" - that's just an example. Replace "Desktop" with your own location.
mkdir = make directory
mode = permissions
(u)go = user, groups, other
(wx)r = write, execute, read
(-)+ = take away permissions or add permissions.
Taking away all permissions but the read permission for user, will leave all other users or groups etc... with all of the permissions, including read.
Steps: