Session ID: 128
Mode: objective
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: Unanswered
Which yum command finds the package that provides the file /bin/wget?
Status: Unanswered
Your Answer:
Options:
Explanation:
To find what provides a file with yum, use whatprovides and the filename [1].
Which command installs an RPM package file?
Status: Unanswered
Your Answer:
Options:
Explanation:
The -i parameter is used with rpm to install a package [1].
Enter the command that finds which installed RPM package owns the file /etc/redhat-release.
Status: Unanswered
Your Answer:
Accepted Answer(s):
rpm -qf /etc/redhat-release
Explanation:
Use rpm -qf to query which package a file belongs to [1].
Which zypper command checks whether the package unzip is installed?
Status: Unanswered
Your Answer:
Options:
Explanation:
To search only installed packages for unzip, use zypper se -i unzip [1].
What command displays built-in help for a specific dnf command such as install?
Status: Unanswered
Your Answer:
Options:
Explanation:
The built-in help system is used as dnf help followed by the command, such as dnf help install [1].
Which command can be used with yum to check for updates for all packages in the system?
Status: Unanswered
Your Answer:
Options:
Explanation:
To check for updates for all packages, use yum check-update [1].
Which command lists the contents of a package using dnf?
Status: Unanswered
Your Answer:
Options:
Explanation:
To list the contents of a package, use dnf repoquery -l PACKAGENAME [1].
Which command checks for updates for all packages using yum?
Status: Unanswered
Your Answer:
Accepted Answer(s):
yum check-update
Explanation:
Use yum check-update without a package name to check for updates for all packages [1].
Which command installs the RPM package file-roller-3.28.1-2.el7.x86_64.rpm and shows installation progress using hash marks?
Status: Unanswered
Your Answer:
Accepted Answer(s):
rpm -ih file-roller-3.28.1-2.el7.x86_64.rpm
Explanation:
Use -i to install and -h to show hash marks for progress [1].
Which command checks whether the package unzip is installed using zypper?
Status: Unanswered
Your Answer:
Accepted Answer(s):
zypper se -i unzip
Explanation:
To search installed packages only, use zypper se -i unzip [1].