7.5.6 linux
Which of the following commands can you use to install updated packages (found in configured repositories) that are currently installed on a Debian Package Manager-based system? (Select two.)
apt dist-upgrade apt-get dist-upgrade
On a Linux system using the Debian Package Manager, which of the following commands would you use to search online repositories for an installable Firefox package?
apt search firefox
You use a Linux distribution that employs Debian Package Manager (dpkg) for package management. Which command would you use to install httpd (the Apache HTTP Server package) and all its dependencies?
apt-get install httpd
Which command would you use to display a simple list of all processes running on a Linux distribution that use either RPM or dpkg for package management?
ps -e
While working on a Linux system that has been underperforming, you notice that there is one process that is utilizing a significant amount of CPU time. The name of the process is "hidden.sh". Which of the following ps commands would you use to ensure that you can see who owns that process?
ps aux
During a routine audit of a web server running on an RPM-based Linux system, you notice a package that is not installed from the standard server template. This is an error. Before you do anything, however, you need to find the package's dependencies. The package's name is orleans. Which of the following commands lists dependencies?
yum info orleans
You use a Linux distribution that uses RPM for package management. Which command would you use to install httpd (the Apache HTTP Server package) and all its dependencies?
yum install httpd
You use a Linux distribution that uses RPM for package management. Which command would you use to display a list of all packages available for installation within the internet repositories configured on the system?
yum list available
You use a Linux distribution that utilizes RPM for package management. Which command would you use to verify that the httpd package (the Apache HTTP Server package) is installed?
yum list installed httpd
On a Linux system using RPM for package management, which of the following commands would you use to search online repositories for an available Firefox package?
yum search firefox