Pass the RedHat RHCT RH202 Questions and answers with CertsForce

Viewing page 5 out of 5 pages
Viewing questions 41-50 out of questions
Questions # 41:

Create the directory /storage and group owner should be the sysusers group.

Answer and Explanation:

1.chgrp sysusers /storage

2.Verify using ls -ld /storage command. You should get like

drwxr-x--- 2 root sysusers 4096 Mar 16 17:59 /storage

chgrp command is used to change the group ownership of particular files or directory.

Another way you can use the chown command.

chown root:sysusers /storage


Expert Solution
Questions # 42:

Create the directory /data and group owner should be the sysadmin group.

Answer and Explanation:

1.chgrp sysadmin /data

2.Verify using ls -ld /data command. You should get like

drwxr-x--- 2 root sysadmin 4096 Mar 16 17:59 /data

chgrp command is used to change the group ownership of particular files or directory.

Another way you can use the chown command.

chown root:sysadmin /data


Expert Solution
Viewing page 5 out of 5 pages
Viewing questions 41-50 out of questions