How To Install nextcloud-client-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install nextcloud-client-devel
on Rocky Linux 8.
What is nextcloud-client-devel
Development headers for use of the nextcloud-client library
We can use yum
or dnf
to install nextcloud-client-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install nextcloud-client-devel.
Install nextcloud-client-devel 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 nextcloud-client-devel
using dnf
by running the following command:
sudo dnf -y install nextcloud-client-devel
Install nextcloud-client-devel 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 nextcloud-client-devel
using yum
by running the following command:
sudo yum -y install nextcloud-client-devel
How To Uninstall nextcloud-client-devel on Rocky Linux 8
To uninstall only the nextcloud-client-devel
package we can use the following command:
sudo dnf remove nextcloud-client-devel
nextcloud-client-devel Package Contents on Rocky Linux 8
/usr/include/nextcloudsync
/usr/include/nextcloudsync/creds
/usr/include/nextcloudsync/creds/abstractcredentials.h
/usr/include/nextcloudsync/creds/httpcredentials.h
/usr/include/nextcloudsync/mirall
/usr/include/nextcloudsync/mirall/account.h
/usr/include/nextcloudsync/mirall/configfile.h
/usr/include/nextcloudsync/mirall/networkjobs.h
/usr/include/nextcloudsync/mirall/progressdispatcher.h
/usr/include/nextcloudsync/mirall/syncengine.h
/usr/include/nextcloudsync/mirall/syncfileitem.h
/usr/include/nextcloudsync/mirall/syncresult.h
/usr/lib64/libnextcloudsync.so
References
Summary
In this tutorial we learn how to install nextcloud-client-devel
on Rocky Linux 8 using yum and dnf.