How To Install libcmis on Rocky Linux 8

In this tutorial we learn how to install libcmis on Rocky Linux 8. libcmis is A C/C++ client library for CM interfaces

Introduction

In this tutorial we learn how to install libcmis on Rocky Linux 8.

What is libcmis

LibCMIS is a C/C++ client library for working with CM (content management) interfaces. The primary supported interface (which gave the library its name) is CMIS, which allows applications to connect to any ECM behaving as a CMIS server (Alfresco or Nuxeo are examples of open source ones). Another supported interface is Google Drive.

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

Install libcmis 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 libcmis using dnf by running the following command:

sudo dnf -y install libcmis

Install libcmis 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 libcmis using yum by running the following command:

sudo yum -y install libcmis

How To Uninstall libcmis on Rocky Linux 8

To uninstall only the libcmis package we can use the following command:

sudo dnf remove libcmis

libcmis Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/33
/usr/lib/.build-id/33/3d8f4248052c35b1cb4a28a8004e113448ab09
/usr/lib/.build-id/87
/usr/lib/.build-id/87/a5b91f32a1f0fd1b50d1c0e0d9db7f38fb725c
/usr/lib/libcmis-0.5.so.5
/usr/lib/libcmis-0.5.so.5.0.0
/usr/lib/libcmis-c-0.5.so.5
/usr/lib/libcmis-c-0.5.so.5.0.0
/usr/share/doc/libcmis
/usr/share/doc/libcmis/AUTHORS
/usr/share/doc/libcmis/NEWS
/usr/share/licenses/libcmis
/usr/share/licenses/libcmis/COPYING.GPL
/usr/share/licenses/libcmis/COPYING.LGPL
/usr/share/licenses/libcmis/COPYING.MPL
/usr/lib/.build-id
/usr/lib/.build-id/de
/usr/lib/.build-id/de/e24ccba588b2a18851255160cc72dcf00f3a79
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/ee15f0d285598aaf4598dcb7bb9348db6643c4
/usr/lib64/libcmis-0.5.so.5
/usr/lib64/libcmis-0.5.so.5.0.0
/usr/lib64/libcmis-c-0.5.so.5
/usr/lib64/libcmis-c-0.5.so.5.0.0
/usr/share/doc/libcmis
/usr/share/doc/libcmis/AUTHORS
/usr/share/doc/libcmis/NEWS
/usr/share/licenses/libcmis
/usr/share/licenses/libcmis/COPYING.GPL
/usr/share/licenses/libcmis/COPYING.LGPL
/usr/share/licenses/libcmis/COPYING.MPL

References

Summary

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