How To Install dleyna-core on CentOS 8
Introduction
In this tutorial we learn how to install dleyna-core
on CentOS 8.
What is dleyna-core
A set of utility functions that are used by the higher level dLeyna libraries to communicate with DLNA devices. It provides APIs for logging, error, settings and task management, and an IPC abstraction. dleyna-core 0.6.0 3.el8 x86_64 33 k dleyna-core-0.6.0-3.el8.src.rpm appstream Utilities for higher level dLeyna libraries https LGPLv2 A set of utility functions that are used by the higher level dLeyna libraries to communicate with DLNA devices. It provides APIs for logging, error, settings and task management, and an IPC abstraction.
We can use yum
or dnf
to install dleyna-core
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install dleyna-core.
Install dleyna-core 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 dleyna-core
using dnf
by running the following command:
sudo dnf -y install dleyna-core
Install dleyna-core 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 dleyna-core
using yum
by running the following command:
sudo yum -y install dleyna-core
How To Uninstall dleyna-core on CentOS 8
To uninstall only the dleyna-core
package we can use the following command:
sudo dnf remove dleyna-core
dleyna-core Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/dc
/usr/lib/.build-id/dc/9772e996cdac11b21dc204ec96e34f6a0632f2
/usr/lib/libdleyna-core-1.0.so.5
/usr/lib/libdleyna-core-1.0.so.5.0.0
/usr/share/doc/dleyna-core
/usr/share/doc/dleyna-core/AUTHORS
/usr/share/doc/dleyna-core/ChangeLog
/usr/share/doc/dleyna-core/README
/usr/share/licenses/dleyna-core
/usr/share/licenses/dleyna-core/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/5ef9803d103ece0112205c74e467a4ef509677
/usr/lib64/libdleyna-core-1.0.so.5
/usr/lib64/libdleyna-core-1.0.so.5.0.0
/usr/share/doc/dleyna-core
/usr/share/doc/dleyna-core/AUTHORS
/usr/share/doc/dleyna-core/ChangeLog
/usr/share/doc/dleyna-core/README
/usr/share/licenses/dleyna-core
/usr/share/licenses/dleyna-core/COPYING
References
- [dleyna-core website](https://01.org/dleyna/ https://01.org/dleyna/)
Summary
In this tutorial we learn how to install dleyna-core
on CentOS 8 using yum and dnf.