How To Install orc on Fedora 34
Introduction
In this tutorial we learn how to install orc
on Fedora 34.
What is orc
Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data. The “language” is a generic assembly language that represents many of the features available in SIMD architectures, including saturated addition and subtraction, and many arithmetic operations. orc 0.4.31 4.fc34 x86_64 186 k orc-0.4.31-4.fc34.src.rpm fedora The Oil Run-time Compiler http BSD Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data. The “language” is a generic assembly language that represents many of the features available in SIMD architectures, including saturated addition and subtraction, and many arithmetic operations.
We can use yum
or dnf
to install orc
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install orc.
Install orc 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 orc
using dnf
by running the following command:
sudo dnf -y install orc
Install orc 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 orc
using yum
by running the following command:
sudo yum -y install orc
How To Uninstall orc on Fedora 34
To uninstall only the orc
package we can use the following command:
sudo dnf remove orc
orc Package Contents on Fedora 34
/usr/bin/orc-bugreport
/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/f02088b53b039b96b3746c2219becda15c91d0
/usr/lib/.build-id/34
/usr/lib/.build-id/34/43e2b2a990e3e558b7bae4b58a56d83a06feae
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/24a86f9eaea8c8e34337771e775c8e55eb6edd
/usr/lib64/liborc-0.4.so.0
/usr/lib64/liborc-0.4.so.0.31.0
/usr/lib64/liborc-test-0.4.so.0
/usr/lib64/liborc-test-0.4.so.0.31.0
/usr/share/doc/orc
/usr/share/doc/orc/COPYING
/usr/share/doc/orc/README
/usr/bin/orc-bugreport
/usr/lib/.build-id
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/99d0c6e8c1742b64b38cda8a87bfd6ba430c4b
/usr/lib/.build-id/95
/usr/lib/.build-id/95/b89e81fafde93fa134788dc9edefdbaab61357
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/a4a61d26c6c5a90b8abdf2b68621d1d9ea5c3f
/usr/lib/liborc-0.4.so.0
/usr/lib/liborc-0.4.so.0.31.0
/usr/lib/liborc-test-0.4.so.0
/usr/lib/liborc-test-0.4.so.0.31.0
/usr/share/doc/orc
/usr/share/doc/orc/COPYING
/usr/share/doc/orc/README
References
- [orc website](http://cgit.freedesktop.org/gstreamer/orc/ http://cgit.freedesktop.org/gstreamer/orc/)
Summary
In this tutorial we learn how to install orc
on Fedora 34 using yum and dnf.