What is a shell in the context of a Linux system? - correct answer A shell is a command line interpreter
that provides a user interface for interaction with the operating system.
In Linux, what is the process with PID 1? - correct answer The process with PID 1 is typically the init
process or systemd on newer systems. It is the first process that runs on the system and is responsible
for starting all other processes.
What is a daemon process in Linux? - correct answer A daemon process in Linux is a background process
that is not directly controlled by the user and typically provides a service such as handling requests for
network resources.
What command can be used to view the status of a unit in systemd? - correct answer The command
systemctl status can be used to view the status of a systemd unit.
Which service in Linux is primarily responsible for sorting and organizing syslog messages into /var/log? -
correct answer The rsyslog service is primarily responsible for this task.
Which syslog severity level is considered to have the highest priority? - correct answer The emerg
severity level is considered to have the highest priority.
Where does a Linux system initially retrieve its system time when it starts up? - correct answer Initially,
the system time is retrieved from the hardware clock on the system motherboard.
What command would you use in Red Hat Enterprise Linux 8 to set the local time zone? - correct answer
The timedatectl command is recommended for setting the local time zone.
How many bits are there in an IPv4 address? - correct answer There are 32 bits in an IPv4 address.
, What term determines how many leading bits in the IP address contribute to the network address? -
correct answer The term is called a netmask.
How many bits are there in an IPv6 address? - correct answer There are 128 bits in an IPv6 address.
What is the network address of 192.168.1.107/24? - correct answer The network address is 192.168.1.0.
What is the broadcast address of 10.1.1.18/8? - correct answer The broadcast address is
10.255.255.255.
Which device is used to connect networks to form the Internet? - correct answer Routers are used to
connect networks to form the Internet.
In yum, which module component allows you to work with different versions side by side? - correct
answer The application stream allows you to work with different versions side by side.
Does the yum command allow you to install, update, remove, and get information about software
packages and their dependencies? - correct answer True, the yum command allows all of these
operations.
What yum command would you use to install the GNU C Compiler (gcc) package? - correct answer The
command yum install gcc would install the gcc package.
Which yum command generates a list of available updates for all installed packages on a Linux system? -
correct answer The command yum list updates generates a list of available updates.
What tasks can be performed with Red Hat Subscription Management tools? - correct answer he tasks
that can be performed include system registration, system subscription, repository enabling, and
entitlement reviewing.
What does the tar command allow you to do? - correct answer rThe tar command allows you to create
archives, list the contents of archives, extract archives, and compress and uncompress archives.