Session ID: 140
Mode: objective
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: All
Which command kills all running sleep processes by name?
Status: Unanswered
Your Answer:
Accepted Answer(s):
killall sleep
Explanation:
The lesson gives killall sleep as the example for killing multiple instances of a process [1].
Which ps command displays only the user and command name columns?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson gives ps o user,comm as the command that shows only the user and the program names [1].
Which symbol sends a command to run in the background when appended to the command line?
Status: Unanswered
Your Answer:
Options:
Explanation:
The objective explicitly includes the & operator, and jobs are created by sending processes to the background [1].
Which top command-line option sorts processes by memory usage at startup?
Status: Unanswered
Your Answer:
Accepted Answer(s):
top -o %MEM
Explanation:
The lesson gives top -o %MEM to launch top sorted by memory usage [1].
Which ps command shows the user, memory percentage, CPU percentage and full command columns?
Status: Unanswered
Your Answer:
Accepted Answer(s):
ps o user,%mem,%cpu,cmd
Explanation:
The lesson gives ps o user,%mem,%cpu,cmd as the required command [1].
Which command displays how long the system has been running, number of users, and load averages?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson command list defines uptime as displaying how long the system has been running, the number of users and the load average [1].
Which command shows a dynamic, continuously updating view of running processes?
Status: Unanswered
Your Answer:
Options:
Explanation:
The summary states that top displays output dynamically and keeps updating constantly [1].
If no signal is explicitly provided, what signal do kill, pkill, and killall send by default?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson states that if no signal is provided, the default signal sent is SIGTERM [1].
Which command lists active jobs and their status in the current shell?
Status: Unanswered
Your Answer:
Options:
Explanation:
The lesson command list defines jobs as displaying active jobs and their status [1].
Which command periodically runs uptime so you can monitor load average changes over time?
Status: Unanswered
Your Answer:
Accepted Answer(s):
watch uptime
Explanation:
The lesson uses watch uptime as the example of monitoring load average changes over time [1].