Linux+ chapter 9
The at command is used to .
schedule processes to run at a single instance in the future
Which command can be used to see processes running in the background?
jobs
Which command entered without arguments is used to display a list of processes running in the current shell?
ps
Every process has a process ID and a .
parent process
Which command is used to gain real-time information about processes running on the system, with the most processor-intensive processes appearing at the beginning of the list?
top
Nice values are used to affect process priorities using a range between .
−20 and 19
Where are individual user tasks scheduled to run with the cron daemon stored on a Fedora system?
/var/spool/cron/username
What kill level signal cannot be trapped?
9
Which of the following statements is true? (Choose all that apply.)
If /etc/at.allow exists, only users listed in it can use the at command. If /etc/cron.allow exists, only users listed in it can use the cron command. If /etc/cron.deny exists and /etc/cron.allow does not exist, any user not listed in /etc/cron.deny can use the cron command.
When you run the ps command, how are daemon processes recognized?
There is a question mark in the TTY column.
As daemon processes are not associated with terminals, you must use an option such as -e alongside the ps command to view them. True or False?
True
Which of the following commands will most likely increase the chance of a process receiving more time slices?
Which of the following commands will most likely increase the chance of a process receiving more time slices?
How can you bypass the wait function and send a user process to the background?
You can use the Ctrl+z key combination and the bg command.
What command is used to view and modify user jobs scheduled to run with cron?
crontab
What is the name given to a process not associated with a terminal?
daemon process
To kill a process running in the background, you must place a % character before its process ID. True or False?
false
A process spawning or initiating another process is referred to as .
forking
Which process has a PID of 1 and a PPID of 0?
init/systemd
A runaway process that is faulty and consuming mass amounts of system resources .
is a rogue process
all instances of a process with the same name matched by a regular expression
all instances of a process with the same name matched by a regular expression