rpm -ql [packageName]
Ejemplo
# rpm -ql php-fpm
/etc/php-fpm.conf
/etc/php-fpm.d
/etc/php-fpm.d/www.conf
/etc/sysconfig/php-fpm
...
/run/php-fpm
/usr/lib/systemd/system/php-fpm.service
/usr/sbin/php-fpm
/usr/share/doc/php-fpm-5.6.0
/usr/share/man/man8/php-fpm.8.gz
...
/var/lib/php/sessions
/var/log/php-fpm
No es necesario instalar yum-utils ni conocer la ubicación del archivo rpm.
Hay un paquete llamado yum-utils
que se basa en YUM y contiene una herramienta llamada repoquery
que puede hacer esto.
$ repoquery --help | grep -E "list\ files"
-l, --list list files in this package/group
Combinado en un ejemplo:
$ repoquery -l time
/usr/bin/time
/usr/share/doc/time-1.7
/usr/share/doc/time-1.7/COPYING
/usr/share/doc/time-1.7/NEWS
/usr/share/doc/time-1.7/README
/usr/share/info/time.info.gz
En al menos un sistema RH, con rpm v4.8.0, yum v3.2.29 y repoquery v0.0.11, repoquery -l rpm
no imprime nada.
Si tiene este problema, intente agregar el --installed
bandera:repoquery --installed -l rpm
.
DNF
Actualización:
Para usar dnf
en lugar de yum-utils
, use el siguiente comando:
$ dnf repoquery -l time
/usr/bin/time
/usr/share/doc/time-1.7
/usr/share/doc/time-1.7/COPYING
/usr/share/doc/time-1.7/NEWS
/usr/share/doc/time-1.7/README
/usr/share/info/time.info.gz