
rpm
List of commands for rpm:
-
rpm:ai:5e637 Installs an RPM package on a Linux system$ rpm -ivh file.rpmtry on your machineexplain this command
-
rpm:tldr:09036 rpm: Show changed, missing and/or incorrectly installed files of matching packages.$ rpm --verify --all '${php-*}'try on your machineexplain this command
-
rpm:tldr:15426 rpm: Forcibly install a package regardless of currently installed versions.$ rpm --upgrade ${package_name-rpm} --forcetry on your machineexplain this command
-
rpm:tldr:2755a rpm: List versions of all matching packages.$ rpm --query --all '${mariadb*}'try on your machineexplain this command
-
rpm:tldr:60dcd rpm: List package-owned files.$ rpm --query --list ${kernel}try on your machineexplain this command
-
rpm:tldr:68584 rpm: Display the changelog of a specific package.$ rpm --query --changelog ${package_name}try on your machineexplain this command
-
rpm:tldr:805d7 rpm: Show scriptlets from an RPM file.$ rpm --query --package --scripts ${package_name-rpm}try on your machineexplain this command
-
rpm:tldr:e45e3 rpm: Identify owner of a file and show version of the package.$ rpm --query --file ${-etc-postfix-main-cf}try on your machineexplain this command
-
rpm:tldr:fb093 rpm: Show version of httpd package.$ rpm --query ${httpd}try on your machineexplain this command