How To Install lcms2 on Fedora 34
Introduction
In this tutorial we learn how to install lcms2
on Fedora 34.
What is lcms2
LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. LCMS2 is the current version of LCMS, and can be parallel installed with the original (deprecated) lcms. lcms2 2.12 1.fc34 x86_64 171 k lcms2-2.12-1.fc34.src.rpm fedora Color Management Engine http MIT LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. LCMS2 is the current version of LCMS, and can be parallel installed with the original (deprecated) lcms.
We can use yum
or dnf
to install lcms2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lcms2.
Install lcms2 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 lcms2
using dnf
by running the following command:
sudo dnf -y install lcms2
Install lcms2 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 lcms2
using yum
by running the following command:
sudo yum -y install lcms2
How To Uninstall lcms2 on Fedora 34
To uninstall only the lcms2
package we can use the following command:
sudo dnf remove lcms2
lcms2 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/5c
/usr/lib/.build-id/5c/37c608031a5782b369eeedfc377210852f817c
/usr/lib/liblcms2.so.2
/usr/lib/liblcms2.so.2.0.12
/usr/share/doc/lcms2
/usr/share/doc/lcms2/AUTHORS
/usr/share/licenses/lcms2
/usr/share/licenses/lcms2/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/c248576d937cbfcf9a78891fc6d758f4f45fc3
/usr/lib64/liblcms2.so.2
/usr/lib64/liblcms2.so.2.0.12
/usr/share/doc/lcms2
/usr/share/doc/lcms2/AUTHORS
/usr/share/licenses/lcms2
/usr/share/licenses/lcms2/COPYING
References
- [lcms2 website](http://www.littlecms.com/ http://www.littlecms.com/)
Summary
In this tutorial we learn how to install lcms2
on Fedora 34 using yum and dnf.