How To Install vapoursynth-plugins on CentOS 8
Introduction
In this tutorial we learn how to install vapoursynth-plugins
on CentOS 8.
What is vapoursynth-plugins
VapourSynth plugins.
We can use yum
or dnf
to install vapoursynth-plugins
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install vapoursynth-plugins.
Install vapoursynth-plugins 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 vapoursynth-plugins
using dnf
by running the following command:
sudo dnf -y install vapoursynth-plugins
Install vapoursynth-plugins 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 vapoursynth-plugins
using yum
by running the following command:
sudo yum -y install vapoursynth-plugins
How To Uninstall vapoursynth-plugins on CentOS 8
To uninstall only the vapoursynth-plugins
package we can use the following command:
sudo dnf remove vapoursynth-plugins
vapoursynth-plugins Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/8aec5f571b588d4029c52abfe9466c412f093f
/usr/lib/.build-id/20
/usr/lib/.build-id/20/48147e4e9b411659eb96111a925a32ee6436b4
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/d1c29c77e2cbcdf0da0d558d27c1f398d74349
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/c6aad1aba16b3bedba0b1a0a3d8e7b392c8e8a
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/7d1afafe38cbdcd6b8f7169585a60cc66c6e8a
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/086bc1e4f760c2c876142ef3f76708a2f4246a
/usr/lib/.build-id/e1/9e3118e121ca606d523a32585956bb6b4b621c
/usr/lib64/vapoursynth/libeedi3.so
/usr/lib64/vapoursynth/libmiscfilters.so
/usr/lib64/vapoursynth/libmorpho.so
/usr/lib64/vapoursynth/libocr.so
/usr/lib64/vapoursynth/libremovegrain.so
/usr/lib64/vapoursynth/libvinverse.so
/usr/lib64/vapoursynth/libvivtc.so
References
Summary
In this tutorial we learn how to install vapoursynth-plugins
on CentOS 8 using yum and dnf.