Para obtener información de un paquete ejecute los siguientes comandos
CentOS / Fedora / RHEL
$ yum info nom-paquete1 [nom-paquete2, nom-paquete3, ...]
Ejemplo
$ yum info mysql Name : mysql Arch : i386 Version : 5.0.77 Release : 4.el5_4.1 Size : 7.9 M Repo : installed Summary : MySQL client programs and shared libraries URL : http://www.mysql.com License : GPLv2 with exceptions Description: MySQL is a multi-user, multi-threaded SQL database server. ...
Si los paquetes está instalado también puede ejecutar
$ rpm -qi nom-paquete1 [nom-paquete2, ...] $ yum -C info nom-paquete1 [nom-paquete2, ...] (Usa la cache en lugar de los repositorios)
Debian / Ubuntu
$ apt-cache show nom-paquete1 [nom-paquete2, nom-paquete3, ...]
Ejemplo
$ apt-cache show php5-mysql Package: php5-mysql Status: install ok installed Priority: optional Section: web Installed-Size: 280 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: php5 ... Description: MySQL module for php5 This package provides modules for MySQL database connections directly from PHP scripts. It includes the generic "mysql" module which can be used to connect to all versions of MySQL, an improved "mysqli" ...
Lecturas recomendadas
– man yum
– man rpm
– man apt-cache