Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 71 pages
Exam (elaborations)

ITT-221 Linux Users Groups and Permissions Step by Step Commands Directories chmod chgrp User Management 2026 Updated with complete solutions | 160 Questions and Answers with Detailed Rationales | 2026 Update | 100% Correct

Document preview thumbnail
Preview 4 out of 71 pages

Ace Your ITT-221 Linux Users, Groups & Permissions Exam on Your First Try! This comprehensive study bundle has everything you need to crush the ITT-221 Linux Users, Groups & Permissions course. I created this guide to help you master the material and walk into your exam feeling completely prepared. What's Inside: - 160 questions with detailed rationales - Linux File System Hierarchy and Directory Structure - User Account Management (useradd, usermod, userdel) - Group Management (groupadd, groupmod, groupdel) - File and Directory Permissions (Read, Write, Execute) - chmod Command (Symbolic and Octal Modes) - chown and chgrp Commands - Setuid, Setgid, and Sticky Bits - ACLs and umask - Works on phone, tablet, or computer What You'll Actually Learn: - Linux file permissions and ownership - User and group creation and management - chmod, chown, and chgrp command syntax - Setuid, setgid, and sticky bit functionality - umask and default permissions - Access Control Lists (ACLs) - Directory inheritance with setgid - User account locking and expiration - Password aging and management - Permission troubleshooting Why This Guide Works: - Every single question includes a clear, detailed rationale explaining the correct answer - Understand the "why" behind each concept, not just the correct letter - Learn Linux administration reasoning so you can apply it to any question on your actual exam - Covers the most current exam content and testing strategies Who This Is For: - You, if you're taking ITT-221 Linux Users, Groups & Permissions - You, if you're a Graduate Level student - You, if you have an exam coming up - You, if you want to study smarter, not harder Stop stressing. Start passing. Download this now and walk into your exam actually prepared.

Content preview

ITT-221 LINUX USERS, GROUPS AND PERMISSIONS |
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

Document information

Uploaded on
August 21, 2026
Number of pages
71
Written in
2026/2027
Type
Exam (elaborations)
Contains
Questions & answers
$21.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
GlobalExamBank
4.7
(3)
Sold
13
Followers
1
Items
515
Last sold
1 month ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions