Valid EX200 Dumps shared by EduDump.com for Helping Passing EX200 Exam! EduDump.com now offer the newest EX200 exam dumps, the EduDump.com EX200 exam questions have been updated and answers have been corrected get the newest EduDump.com EX200 dumps with Test Engine here:
16. Create a shared directory Create a shared directory with the following characteristics: * The group owner of /home/test is admins. * Members of the admins group can read, write, and access this directory. Other users (except root) do not have these permissions. * Files created inside this directory automatically have their group ownership set to the admins group.
Correct Answer:
Solution: Create the group: [root@node1 ~]# groupadd admins Create the directory: [root@node1 ~]# mkdir /home/test Set the group ownership: [root@node1 ~]# chgrp admins /home/test Set the permissions: [root@node1 ~]# chmod 2770 /home/test Verify: [root@node1 ~]# ls -ld /home/test drwxrws--- root admins /home/test