Retrieval Practice Quiz · Fill in the Blank
Red Hat System Administration I · Mesa Community College
Question 1 of 10
The top-level directory of the entire Linux filesystem is called the directory and is represented by a single character:
/
Question 2 of 10
Configuration files for system services and applications are stored in the directory.
/etc
Question 3 of 10
A path that always begins at the root of the filesystem and starts with /
is called a(n) path.
A path expressed relative to your current location is called a(n)
path.
Question 4 of 10
The command prints the full absolute path of your current working directory.
pwd — Print Working Directory
Question 5 of 10
In a path, a single dot . refers to the
directory,
and double dot .. refers to the
directory.
. = current directory ·
.. = parent directory
Question 6 of 10
Log files generated by the system and running services are stored under
/var/log
Question 7 of 10
On RHEL 9 and later, /bin is not a real directory —
it is a
that points to
ls -la / and look at how /bin is listed./usr/bin
Question 8 of 10
Typing cd with no arguments takes you to your
directory.
The shortcut character for this location is
~ (tilde)
Question 9 of 10
The directory contains virtual files that represent running processes and kernel information. Its contents are generated at runtime and are never written to disk.
/proc
Question 10 of 10
A new admin needs a location to store a file that will only be needed until the next reboot. The appropriate directory is , because its contents are not guaranteed to persist across reboots.
/tmp — world-writable, cleared on reboot
Bonus Extra credit
The home directory for the root superuser account is — which is different from the root of the filesystem.
/root (not the same as /)
Answer Key — Q1 to Q5
//etcpwdAnswer Key — Q6 to Bonus
/var/log/usr/bin~/proc/tmp/rootCIS126RH Ch. 6 — Mesa Community College