Question: 95 Add 3 users: harry, natasha, tom. The requirements: The Additional group of the two users: harry, Natasha is the admin group. The user: tom’s login shell should be non-interactive. A. Answer see in the explanation. A
# useradd -G admin harry # useradd -G admin natasha # useradd -s /sbin/nologin tom # id harry;id Natasha (Show additional group) # cat /etc/passwd (Show the login shell) OR # system-config-users Question: 96 Create a catalog under /home named admins. Its respective group is requested to be the admin group. The group users could read and write, while other users are not allowed to access it. The files created by users from the same group should also be the admin group. A. Answer see in the explanation. A
# cd /home/ # mkdir admins / # chown .admin admins/ # chmod 770 admins/ # chmod g+s admins/