How To Install libcmis on CentOS 7
Introduction
In this tutorial we learn how to install libcmis on CentOS 7.
What is libcmis
LibCMIS is a 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 is a 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 CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libcmis.
Install libcmis on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install libcmis using yum by running the following command:
sudo yum -y install libcmis
Install libcmis on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install libcmis using dnf by running the following command:
sudo dnf -y install libcmis
How To Uninstall libcmis on CentOS 7
To uninstall only the libcmis package we can use the following command:
sudo dnf remove libcmis
References
Summary
In this tutorial we learn how to install libcmis on CentOS 7 using yum and dnf.