STEP-BY-STEP COMMANDS, DIRECTORIES, CHMOD, CHGRP &
USER MANAGEMENT | 2026 UPDATED WITH COMPLETE
SOLUTIONS.
160 Questions with Answers and Detailed Rationales
100 PERCENT GUARANTEED PASS
INSTANT DOWNLOAD ANSWERS INCLUDED
IMPORTANCE OF THIS DOCUMENT
This comprehensive examination preparation guide has been meticulously developed to help you succeed in the
ITT-221 LINUX USERS, GROUPS AND PERMISSIONS | STEP-BY-STEP COMMANDS, DIRECTORIES,
CHMOD, CHGRP & USER MANAGEMENT | 2026 UPDATED WITH COMPLETE SOLUTIONS.. It contains 160
carefully selected questions that reflect the most current exam content and testing strategies. Each question is
accompanied by a correct answer and a detailed rationale that explains the underlying pathophysiology,
pharmacology, or clinical reasoning.
Self-Assessment – Test your knowledge and Exam Preparation – Familiarize yourself with the
identify areas requiring further question format and content
study areas
Concept Reinforcement – Deepen your Confidence Building – Develop test-taking
understanding through strategies and reduce
evidence-based exam anxiety
rationales
Time Management – Practice answering
questions under simulated
exam conditions
Review Summary 160 Questions
Foundations - Application - Itt-221 Linux Users Groups AND Permissions Step-by-step Commands
Directories Chmod Chgrp & USER Management 2026 Updated WITH Complete Solutions Linux System
Administration Graduate
All answers with rationales
,Table of Contents
Content Area Questions Key Topics
Linux FILE System Hierarchy 1-27 Group, Directory, Files, Command, Administrator
AND Directory Structure
USER Account Management 28-54 Directory, Group, Administrator, Files, Command
Useradd Usermod Userdel
Group Management 55-81 Group, Command, Directory, Administrator, Permissions
Groupadd Groupmod
Groupdel
FILE AND Directory 82-108 Group, Directory, Change, Password, Permissions
Permissions READ Write
Execute
Chmod Command AND 109-135 Group, Directory, Command, Alice, Permissions
Permission Modes Symbolic
AND Octal
Chown AND Chgrp 136-160 Group, Directory, Administrator, Effect, Permissions
Commands Changing
Ownership AND Group
TOTAL 160 All questions include answers and detailed rationales
,Section A - Linux FILE System Hierarchy AND Directory
Structure
Q1.
A user reports they cannot access a file, yet 'ls -l' shows they have read permission. The
file resides in /data/project, owned by root:root with mode 755. The user is a member of
the 'project' group. Which scenario explains the access denial?
A. The file's group ownership is not 'project', B. The user lacks execute (x) permission on
so group permissions do not apply. one of the parent directories.
C. The file has an ACL that overrides the D. The user's primary group differs from
group permissions. 'project', causing 'other' permissions to
apply.
Correct: B - The user lacks execute (x) permission on one of the parent directories.
Rationale:To access a file, the user must have execute permission on every directory in the
path. Even if the file itself grants read, a missing execute on /data or /data/project blocks
access. ACLs could override, but the question states mode 755 with no ACL mention. Group
ownership does not prevent access if 'other' permissions allow it. Primary group difference
doesn't matter if the user is in the group.
Q2.
An administrator sets the setgid bit on a shared directory. Which of the following best
describes its effect on new files created within?
A. New files inherit the directory's group and B. New files are owned by the directory's
are automatically writable by that group. group, but the setgid bit is cleared on
regular files.
C. New files inherit the directory's group, D. New files are owned by the creating
and any subdirectories also get the setgid user's primary group, but subdirectories
bit set. inherit the setgid bit.
Correct: C - New files inherit the directory's group, and any subdirectories also get the
setgid bit set.
Rationale:The setgid bit on a directory causes new files and subdirectories to inherit the
directory's group ID. For subdirectories, the setgid bit is also set, ensuring consistent group
ownership down the tree. On regular files, the setgid bit is not set (unless explicitly), but group
inheritance applies. Option A is wrong because it implies group write permission is
automatically granted, which is not the case. Option D is the opposite of the correct behavior.
Page 3
, Section A - Linux FILE System Hierarchy AND Directory Structure
Q3.
Given the command 'chmod 4755 script.sh', what is the complete symbolic representation
of the resulting permissions, including any special bits?
A. -rwsr-xr-x B. -rwsr-xr-t
C. -rwSr-xr-x D. -rwsr-sr-x
Correct: A - -rwsr-xr-x
Rationale:Octal 4755 sets setuid (4), owner rwx (7), group r-x (5), others r-x (5). The setuid
bit is represented by an 's' in the owner's execute position, and since the owner has execute,
it is lowercase 's'. Thus '-rwsr-xr-x'. Option B includes sticky bit (t) incorrectly, C shows
uppercase 'S' indicating no execute, and D adds setgid which is not set.
Q4.
A system administrator needs to ensure that all new files created in /srv/shared are
automatically owned by the 'developers' group, regardless of the creator's primary group.
Which command sequence accomplishes this?
A. chown :developers /srv/shared && chmod B. chgrp developers /srv/shared && chmod
2775 /srv/shared 1777 /srv/shared
C. chown developers: /srv/shared && chmod D. chmod g+s /srv/shared && chown
4775 /srv/shared :developers /srv/shared
Correct: A - chown :developers /srv/shared && chmod 2775 /srv/shared
Rationale:Setting the group ownership to 'developers' and then applying the setgid bit (2 in
octal, or g+s) ensures new files inherit the group. Option A does exactly that: chown
:developers sets group, chmod 2775 sets setgid and permissions. Option B sets sticky bit (1)
instead of setgid. Option C sets setuid (4) and changes owner, not group. Option D sets
setgid but then chown :developers may reset the setgid bit on some systems, so it's not
reliable.
Q5.
In a directory with the sticky bit set (/tmp), a file is owned by user 'alice' and group 'staff'.
Which users are permitted to delete or rename this file?
A. Only the owner of the file (alice) and the B. Any user with write and execute
superuser. permission on the directory.
C. Only the owner of the file, the owner of D. The file owner, the directory owner, and
the directory, and the superuser. any member of the 'staff' group.
Correct: C - Only the owner of the file, the owner of the directory, and the superuser.
Page 4