Skip to content
Advertisement

how to find documentation for Postgres Linux packages?

There are PostgreSQL binaries in yum package except for server and client.

postgresql96-contrib.x86_64
postgresql96-debuginfo.x86_64
postgresql96-devel.x86_64
postgresql96-docs.x86_64
postgresql96-odbc.x86_64
postgresql96-plperl.x86_64
postgresql96-plpython.x86_64
postgresql96-pltcl.x86_64
postgresql96-tcl.x86_64
postgresql96-tcl-debuginfo.x86_64
postgresql96-test.x86_64

I can assume the purpose of binaries, but I want to check it in documents. How can I find the documents for them?

Advertisement

Answer

dnf info postgresql96-contrib 

or (old RHEL/CentOS)

yum info postgresql96-contrib

If you have downloaded the RPMs:

rpm -qif
Advertisement