How To Install soci-doc on CentOS 8
Introduction
In this tutorial we learn how to install soci-doc
on CentOS 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 CentOS 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 CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
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 CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
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 CentOS 8
To uninstall only the soci-doc
package we can use the following command:
sudo dnf remove soci-doc
soci-doc Package Contents on CentOS 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 CentOS 8 using yum and dnf.