У нас вы можете посмотреть бесплатно 04 RHCSA9 | EX200 Exam | Controlling Access to Files and Directories или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Question 04 Perform following task on both "node01" as "rhcsa9" user Create collaborative directory /u01/project01 with the following characteristics: Group ownership of /u01/project01 should be empgrp. The directory should be readable, writable and accessible to member of empgrp but not to any other user. (It is understood that root has access to all files and directories on the system) Files created in /u01/project01 automatically have group ownership set to the empgrp group. Solution 04 Open a terminal or command prompt on your system. Create collaborative directory /u01/project01 sudo mkdir -p /u01/project01 The directory must have following characteristics: Group ownership of /u01/project01 should be empgrp. The directory should be readable, writable and accessible to member of empgrp but not to any other user. (It is understood that root has access to all files and directories on the system) sudo chown root:empgrp /u01/project01 sudo chmod 770 /u01/project01 ls -ld /u01/project01 Files created in /u01/project01 automatically have group ownership set to the empgrp group. sudo chmod g+s /u01/project01 Verify the permissions and ownership of the /u01/project01 directory using the following command: ls -ld /u01/project01 login as user "monica" and issue the following command touch /u01/project01/monica_hr01.txt touch /u01/project01/monica_hr02.txt touch /u01/project01/monica_hr03.txt logout from user "monica" and login as user "toby" and issue the following command touch /u01/project01/toby_fin01.txt touch /u01/project01/toby_fin02.txt touch /u01/project01/toby_fin03.txt logout as user "toby" -- Using "rhcsa9" check the permission on files created under "/u01/project01" directory ls -l /u01/project01 Reference documents https://www.redhat.com/sysadmin/suid-... https://www.redhat.com/sysadmin/linux... https://www.redhat.com/sysadmin/intro... https://www.redhat.com/sysadmin/manag... Thank you Enjoy !!