How To Install advancecomp on CentOS 8
Introduction
In this tutorial we learn how to install advancecomp
on CentOS 8.
What is advancecomp
AdvanceCOMP is a set of recompression utilities for .PNG, .MNG and .ZIP files. The main features are * Recompress ZIP, PNG and MNG files using the Deflate 7-Zip implementation. * Recompress MNG files using Delta and Move optimization. This package contains * advzip - Recompression and test utility for zip files * advpng - Recompression utility for png files * advmng - Recompression utility for mng files * advdef - Recompression utility for deflate streams in png, mng and gz files
We can use yum
or dnf
to install advancecomp
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install advancecomp.
Install advancecomp on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install advancecomp
using dnf
by running the following command:
sudo dnf -y install advancecomp
Install advancecomp on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install advancecomp
using yum
by running the following command:
sudo yum -y install advancecomp
How To Uninstall advancecomp on CentOS 8
To uninstall only the advancecomp
package we can use the following command:
sudo dnf remove advancecomp
advancecomp Package Contents on CentOS 8
/usr/bin/advdef
/usr/bin/advmng
/usr/bin/advpng
/usr/bin/advzip
/usr/lib/.build-id
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/eb5dd98e30d291f1e1151df534cbdbe502b260
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/589bdbe386617ab43c17c7b10d66cbde9629db
/usr/lib/.build-id/ac
/usr/lib/.build-id/ac/9802baf4660ff860a445b61fe1f3dfbbb5de0f
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/aa79a4b2910810a682ecd8c18e561fb0e8a126
/usr/share/doc/advancecomp
/usr/share/doc/advancecomp/AUTHORS
/usr/share/doc/advancecomp/HISTORY
/usr/share/doc/advancecomp/README
/usr/share/doc/advancecomp/advdef.txt
/usr/share/doc/advancecomp/advmng.txt
/usr/share/doc/advancecomp/advpng.txt
/usr/share/doc/advancecomp/advzip.txt
/usr/share/doc/advancecomp/authors.txt
/usr/share/doc/advancecomp/history.txt
/usr/share/doc/advancecomp/readme.txt
/usr/share/licenses/advancecomp
/usr/share/licenses/advancecomp/COPYING
/usr/share/man/man1/advdef.1.gz
/usr/share/man/man1/advmng.1.gz
/usr/share/man/man1/advpng.1.gz
/usr/share/man/man1/advzip.1.gz
References
Summary
In this tutorial we learn how to install advancecomp
on CentOS 8 using yum and dnf.