How To Install libcdr on Rocky Linux 8
Introduction
In this tutorial we learn how to install libcdr
on Rocky Linux 8.
What is libcdr
Libcdr is library providing ability to interpret and import CorelDRAW drawings into various applications. You can find it being used in libreoffice.
We can use yum
or dnf
to install libcdr
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libcdr.
Install libcdr 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 libcdr
using dnf
by running the following command:
sudo dnf -y install libcdr
Install libcdr 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 libcdr
using yum
by running the following command:
sudo yum -y install libcdr
How To Uninstall libcdr on Rocky Linux 8
To uninstall only the libcdr
package we can use the following command:
sudo dnf remove libcdr
libcdr Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/53
/usr/lib/.build-id/53/2cbf642d0786bb0ed46a80071d12adacc8a16c
/usr/lib64/libcdr-0.1.so.1
/usr/lib64/libcdr-0.1.so.1.0.4
/usr/share/doc/libcdr
/usr/share/doc/libcdr/AUTHORS
/usr/share/doc/libcdr/ChangeLog
/usr/share/doc/libcdr/README
/usr/share/licenses/libcdr
/usr/share/licenses/libcdr/COPYING.MPL
/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/ce27ed23d74eb0e152b3f303ef6cf8d0c45d69
/usr/lib/libcdr-0.1.so.1
/usr/lib/libcdr-0.1.so.1.0.4
/usr/share/doc/libcdr
/usr/share/doc/libcdr/AUTHORS
/usr/share/doc/libcdr/ChangeLog
/usr/share/doc/libcdr/README
/usr/share/licenses/libcdr
/usr/share/licenses/libcdr/COPYING.MPL
References
Summary
In this tutorial we learn how to install libcdr
on Rocky Linux 8 using yum and dnf.