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:
Part 1 (on Node1 Server) Task 4 [Controlling Access to Files] Create collaborative directory /mnt/shares with the following characteristics: Group ownership of /mnt/shares should be sharegrp. The directory should be readable, writable and accessible to member of sharegrp but not to any other user. (It is understood that root has access to all files and directories on the system) Files created in /mnt/shares automatically have group ownership set to the sharegrp group.
Correct Answer:
* [root@node1 ~]# mkdir -p /mnt/shares [root@node1 ~]# ls -lrt /mnt/ [root@node1 ~]# chgrp sharegrp /mnt/shares/ [root@node1 ~]# chmod 2770 /mnt/shares/ [root@node1 ~]# ls -lrt /mnt/ ### For Checking ### [root@node1 ~]# su - harry [harry@node1 ~]$ cd /mnt/shares/ [harry@node1 shares]$ touch harry [harry@node1 shares]$ logout [root@node1 ~]# su - natasha [natasha@node1 ~]$ cd /mnt/shares/ [natasha@node1 shares]$ touch natasha [natasha@node1 shares]$ ls -lrt -rw-rw-r--. 1 harry sharegrp 0 Mar 21 06:03 harry -rw-rw-r--. 1 natasha sharegrp 0 Mar 21 06:03 natasha