Red_Hat
RH302 · Question #44
Make on /storage directory only the user owner and group owner member can fully access.
chmod 770 /storage Verify using: ls -ld /storage Preview should be like: drwxrwx--- 2 root sysusers 4096 Mar 16 18:08 /storage To change the permission on directory we use the chmod command. According to the question that only the owner user (root) and group member (sysusers)…
Security
Question
Make on /storage directory only the user owner and group owner member can fully access.
Explanation
chmod 770 /storage Verify using: ls -ld /storage Preview should be like: drwxrwx--- 2 root sysusers 4096 Mar 16 18:08 /storage To change the permission on directory we use the chmod command. According to the question that only the owner user (root) and group member (sysusers) can fully access the directory so: chmod 770 /storage
Topics
#file permissions#chmod#access control#directory permissions
Community Discussion
No community discussion yet for this question.