How To Install soci-doc on Rocky Linux 8

In this tutorial we learn how to install soci-doc on Rocky Linux 8. soci-doc is HTML documentation for the soci library

Introduction

In this tutorial we learn how to install soci-doc on Rocky Linux 8.

What is soci-doc

This package contains the documentation in the HTML format of the soci library. The documentation is the same as at the soci web page.

We can use yum or dnf to install soci-doc on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install soci-doc.

Install soci-doc on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install soci-doc using dnf by running the following command:

sudo dnf -y install soci-doc

Install soci-doc on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install soci-doc using yum by running the following command:

sudo yum -y install soci-doc

How To Uninstall soci-doc on Rocky Linux 8

To uninstall only the soci-doc package we can use the following command:

sudo dnf remove soci-doc

soci-doc Package Contents on Rocky Linux 8

/usr/share/doc/soci-doc
/usr/share/doc/soci-doc/AUTHORS
/usr/share/doc/soci-doc/COPYING
/usr/share/doc/soci-doc/ChangeLog
/usr/share/doc/soci-doc/NEWS
/usr/share/doc/soci-doc/README
/usr/share/doc/soci-doc/docs
/usr/share/doc/soci-doc/docs/api
/usr/share/doc/soci-doc/docs/api/backend.md
/usr/share/doc/soci-doc/docs/api/client.md
/usr/share/doc/soci-doc/docs/backends
/usr/share/doc/soci-doc/docs/backends/db2.md
/usr/share/doc/soci-doc/docs/backends/firebird.md
/usr/share/doc/soci-doc/docs/backends/index.md
/usr/share/doc/soci-doc/docs/backends/mysql.md
/usr/share/doc/soci-doc/docs/backends/odbc.md
/usr/share/doc/soci-doc/docs/backends/oracle.md
/usr/share/doc/soci-doc/docs/backends/postgresql.md
/usr/share/doc/soci-doc/docs/backends/sqlite3.md
/usr/share/doc/soci-doc/docs/beyond.md
/usr/share/doc/soci-doc/docs/binding.md
/usr/share/doc/soci-doc/docs/boost.md
/usr/share/doc/soci-doc/docs/connections.md
/usr/share/doc/soci-doc/docs/errors.md
/usr/share/doc/soci-doc/docs/faq.md
/usr/share/doc/soci-doc/docs/images
/usr/share/doc/soci-doc/docs/images/structure.png
/usr/share/doc/soci-doc/docs/index.md
/usr/share/doc/soci-doc/docs/indicators.md
/usr/share/doc/soci-doc/docs/installation.md
/usr/share/doc/soci-doc/docs/interfaces.md
/usr/share/doc/soci-doc/docs/languages
/usr/share/doc/soci-doc/docs/languages/ada
/usr/share/doc/soci-doc/docs/languages/ada/concepts.md
/usr/share/doc/soci-doc/docs/languages/ada/idioms.md
/usr/share/doc/soci-doc/docs/languages/ada/index.md
/usr/share/doc/soci-doc/docs/languages/ada/reference.md
/usr/share/doc/soci-doc/docs/languages/index.md
/usr/share/doc/soci-doc/docs/license.md
/usr/share/doc/soci-doc/docs/lobs.md
/usr/share/doc/soci-doc/docs/logging.md
/usr/share/doc/soci-doc/docs/multithreading.md
/usr/share/doc/soci-doc/docs/procedures.md
/usr/share/doc/soci-doc/docs/queries.md
/usr/share/doc/soci-doc/docs/quickstart.md
/usr/share/doc/soci-doc/docs/statements.md
/usr/share/doc/soci-doc/docs/structure.md
/usr/share/doc/soci-doc/docs/transactions.md
/usr/share/doc/soci-doc/docs/types.md
/usr/share/doc/soci-doc/docs/utilities.md
/usr/share/doc/soci-doc/docs/vagrant.md

References

Summary

In this tutorial we learn how to install soci-doc on Rocky Linux 8 using yum and dnf.