Linux+ Chapter 09

25 July 2022
4.7 (114 reviews)
26 test answers

Unlock all answers in this set

Unlock answers (22)
question
T/F - Can the top command be used to change the priority of processes?
answer
False
question
A system process that is not associated with a terminal is called a(n) ____ process.
answer
Daemon
question
T/F - The killall command uses the PID to kill a process.
answer
False
question
The ____ option to the ps command displays all processes that do not run on terminals.
answer
X
question
T/F - The SIGINT kill signal is the default kill signal used by the kill command.
answer
False
question
To display an entire list of processes across all terminals and including daemons, you can add the ____ option to any ps command.
answer
-e
question
When killing a background job with the kill command, you must prefix the background job IDs by a(n) ____.
answer
%
question
T/F - After a process has been started, you can change its priority by using the renice command.
answer
True
question
In the output of the ps -l command, the ____ column is the most valuable to systems administrators because it indicates what the process is currently doing.
answer
Process state
question
T/F - A value of 0 for a process priority indicates low priority.
answer
False
question
T/F - The ps command is the only command that can view process information.
answer
False
question
There are ____ different kill signals that the kill command can send to a certain process.
answer
64
question
The ____ kill signal stops a process and then restarts it with the same PID.
answer
SIGHUP
question
The ____ field in a cron table contains the absolute pathname to the command to be executed.
answer
Sixth
question
When you append a(n) ____ to a command, the command is run in a background process.
answer
&
question
After a background process has been started, it can be moved to the foreground by using the ____ command.
answer
fg
question
To create or edit a user cron table, you can use the ____ option to the crontab command.
answer
-e
question
T/F - While a process is waiting for its parent process to release the PID, the process is said to be in a(n) zombie state.
answer
True
question
T/F - If the /etc/at.allow and /etc/at.deny files do not exist, only the root user is allowed to schedule tasks using the at daemon.
answer
True
question
You can execute ____ main types of Linux commands.
answer
Three
question
To display a list of at Job IDs, you can specify the ____ option to the at command.
answer
-l
question
T/F - The init daemon has a PID of 0.
answer
False
question
T/F - Most commands such as ls, find, and grep are binary programs that exist on the filesystem until executed.
answer
True
question
T/F - Each process can start an unlimited number of other processes.
answer
True
question
When there are multiple background processes executing in the shell, the jobs command indicates the most recent one with a(n) ____ symbol.
answer
+
question
The ____ kill signal terminates a process by taking the process information in memory and saving it to a file called core on the hard disk in the current working directory.
answer
SIGQUIT