How To Install libcmis on Fedora 34

libcmis is A C/C++ client library for CM interfaces A C/C++ client library for CM interfaces

Introduction

In this tutorial we learn how to install libcmis on Fedora 34.

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. libcmis 0.5.2 10.fc34 x86_64 395 k libcmis-0.5.2-10.fc34.src.rpm fedora A C/C++ client library for CM interfaces https GPLv2+ or LGPLv2+ or MPLv1.1 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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libcmis.

Install libcmis on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install libcmis

Install libcmis on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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 Fedora 34

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

sudo dnf remove libcmis

libcmis Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/c52d7f8d297bbc68557f78c834ed3af2d0c1dd
/usr/lib/.build-id/da
/usr/lib/.build-id/da/58b160b50bd42beefe0c90163073f96ebcd4a1
/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/b9
/usr/lib/.build-id/b9/50b129258f674c47fcc8995e44c7c19a4df097
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/96fb699c89705f232ac2441baca522a1723518
/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 Fedora 34 using yum and dnf.