9.7.6 Practice Questions Linux Application Management – Flashcards
5 test answers
Unlock all answers in this set
Unlock answers 5question
Which command would you use to display a simple list of all processes running on a Linux distribution that uses either RPM or dpkg for package management?
answer
ps -e Explanation The ps utility is used to display running processes on a Linux system. Entering ps -e will display a simple list, without extended information, of all processes running on the system. ps -ef will display a list with extended information about all the processes running on the system. yum and apt-get are package management tools. They are not used for process management.
Unlock the answer