How To Install libpipeline on Fedora 34
Introduction
In this tutorial we learn how to install libpipeline
on Fedora 34.
What is libpipeline
libpipeline is a C library for setting up and running pipelines of processes, without needing to involve shell command-line parsing which is often error-prone and insecure. This alleviates programmers of the need to laboriously construct pipelines using lower-level primitives such as fork(2) and execve(2). libpipeline 1.5.3 2.fc34 x86_64 49 k libpipeline-1.5.3-2.fc34.src.rpm fedora A pipeline manipulation library http GPLv3+ libpipeline is a C library for setting up and running pipelines of processes, without needing to involve shell command-line parsing which is often error-prone and insecure. This alleviates programmers of the need to laboriously construct pipelines using lower-level primitives such as fork(2) and execve(2).
We can use yum
or dnf
to install libpipeline
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libpipeline.
Install libpipeline 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 libpipeline
using dnf
by running the following command:
sudo dnf -y install libpipeline
Install libpipeline 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 libpipeline
using yum
by running the following command:
sudo yum -y install libpipeline
How To Uninstall libpipeline on Fedora 34
To uninstall only the libpipeline
package we can use the following command:
sudo dnf remove libpipeline
libpipeline Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/13
/usr/lib/.build-id/13/e0dab71afddd3c1b30ebd3fc15684bea1f64e1
/usr/lib/libpipeline.so.1
/usr/lib/libpipeline.so.1.5.3
/usr/share/doc/libpipeline
/usr/share/doc/libpipeline/ChangeLog
/usr/share/doc/libpipeline/NEWS
/usr/share/doc/libpipeline/README
/usr/share/licenses/libpipeline
/usr/share/licenses/libpipeline/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/ce763a994dfb4c265174294ece062e4c91a0fc
/usr/lib64/libpipeline.so.1
/usr/lib64/libpipeline.so.1.5.3
/usr/share/doc/libpipeline
/usr/share/doc/libpipeline/ChangeLog
/usr/share/doc/libpipeline/NEWS
/usr/share/doc/libpipeline/README
/usr/share/licenses/libpipeline
/usr/share/licenses/libpipeline/COPYING
References
- [libpipeline website](http://libpipeline.nongnu.org/ http://libpipeline.nongnu.org/)
Summary
In this tutorial we learn how to install libpipeline
on Fedora 34 using yum and dnf.