2026 COMPLETE QUESTIONS WITH
ACCURATE ANSWERS
◉ 1194
running
2.3
python.
Answer: Use ps aux | less to answer the following questions:
What is the PID for the hald process?
What is the state of the ps aux process?
What is the percentage of memory used by process ID 2156?
Which command invoked process ID 1857?
◉ Use ps aux | more to find zombie processes and record the
numbers
,Use kill -9 #here for each number you find
kill -9 1301
kill -9 1570
kill -9 1980.
Answer: As part of your daily maintenance, you scan for and kill any
zombie processes on the system.
Your task in this lab is to:
-Use the ps aux command to find zombie processes
-Kill the zombie processes.
◉ Use:
cat /proc/cpuinfo to find 1993.392
cat /proc/meminfo to find 1010712
cat /proc/version to find 2.6.33.3-85.
Answer: View various files in the /proc directory to find the answers
to the following questions.
What id the CPU speed (in MHz)? Enter the exact total (including
decimal places).
, How much physical memory does the system have (in kB)? Look for
the MemTotal line in the corresponding file.
What is the Linux kernel version? Enter the version in the format of
n.n.n.n-n.
◉ Use: modprobe powermate.
Answer: You just got a new PowerMate input device that you want to
use on your computer. You don't think that the PowerMate driver
was complied into the kernel of your Linux distribution.
Your task in this lab is to insert the powermate module into the
kernel.
◉ Use: lsmod to view all installed modules
rmmod gamport to remove the module from the kernel..
Answer: Your manager asked you to remove the gameport module
from the Linux print server. View the installed modules on the print
server and remove the gameport driver from the kernel.
Your task in this lab is to:
-View the installed modules and identify the gameport module.