How To Install e00compr on Fedora 36
Introduction
In this tutorial we learn how to install e00compr
on Fedora 36.
What is e00compr
E00compr is an ANSI C library that reads and writes Arc/Info compressed E00 files. Both “PARTIAL” and “FULL” compression levels are supported. This package can be divided in three parts • The ‘e00conv’ command-line program. This program takes a E00 file as input (compressed or not) and copies it to a new file with the requested compression level (NONE, PARTIAL or FULL). • A set of library functions to read compressed E00 files. These functions read a E00 file (compressed or not) and return a stream of uncompressed lines, making the E00 file appear as if it was not compressed. • A set of library functions to write compressed E00 files. These functions take one line after another from what should be a uncompressed E00 file, and write them to a file with the requested compression level, either NONE, PARTIAL or FULL. This is a metapackage that installs both the command-line tools (e00compr-tools) and the libraries (e00compr-libs).
We can use yum
or dnf
to install e00compr
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install e00compr.
Install e00compr on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install e00compr
using dnf
by running the following command:
sudo dnf -y install e00compr
Install e00compr on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install e00compr
using yum
by running the following command:
sudo yum -y install e00compr
How To Uninstall e00compr on Fedora 36
To uninstall only the e00compr
package we can use the following command:
sudo dnf remove e00compr
e00compr Package Contents on Fedora 36
References
Summary
In this tutorial we learn how to install e00compr
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).