У нас вы можете посмотреть бесплатно 03 RHCSA9 | EX200 Exam | Users and Groups или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Question 03 Perform following task on both "node01" as "rhcsa9" user Create the following users, groups and group memberships: Create group named "empgrp", "hrgrp" and "fingrp" with group id 3001, 3002 and 3003 respectively Create user "monica" with user id 4001 who belongs to "empgrp" as a secondary group and "hrgrp" as primary group Create user "toby" with user id 4002 who also belongs to "empgrp" as a secondary group and "fingrp" as primary group Create user "websa" with user id 4003 who does not have access to an interactive shell on the system and who is not a member of "empgrp", "hrgrp" and "fingrp" group. Set the password for "monica", "toby" and "websa" to "welcome#" Solution 03 Open a terminal or command prompt on your system. Create group named "empgrp", "hrgrp" and "fingrp" with group id 3001, 3002 and 3003 respectively sudo groupadd -g 3001 empgrp sudo groupadd -g 3002 hrgrp sudo groupadd -g 3003 fingrp -- Create user "monica" with user id 4001 who belongs to "empgrp" as a secondary group and "hrgrp" as primary group sudo useradd -u 4001 -g hrgrp -G empgrp monica -- Create user "toby" with user id 4002 who also belongs to "empgrp" as a secondary group and "fingrp" as primary group sudo useradd -u 4002 -g fingrp -G empgrp toby -- Create user "websa" with user id 4003 who does not have access to an interactive shell on the system and who is not a member of "empgrp", "hrgrp" and "fingrp" group. sudo useradd -u 4003 -s /sbin/nologin websa Set the password for each user ("monica", "toby", and "websa") to "welcome#" using the following command: sudo passwd monica sudo passwd toby sudo passwd websa You will be prompted to enter the password "welcome#" for each user. Reference Document https://www.redhat.com/sysadmin/user-... https://www.redhat.com/sysadmin/linux...