How To Install linbox on Fedora 34
Introduction
In this tutorial we learn how to install linbox
on Fedora 34.
What is linbox
LinBox is a C++ template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields. linbox 1.6.3 8.fc34 x86_64 230 k linbox-1.6.3-8.fc34.src.rpm fedora C++ Library for High-Performance Exact Linear Algebra http LGPLv2+ LinBox is a C++ template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields.
We can use yum
or dnf
to install linbox
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install linbox.
Install linbox 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 linbox
using dnf
by running the following command:
sudo dnf -y install linbox
Install linbox 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 linbox
using yum
by running the following command:
sudo yum -y install linbox
How To Uninstall linbox on Fedora 34
To uninstall only the linbox
package we can use the following command:
sudo dnf remove linbox
linbox Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/b4d40920a39f8bd257198c4555a593c4e7596f
/usr/lib/liblinbox.so.0
/usr/lib/liblinbox.so.0.0.0
/usr/share/doc/linbox
/usr/share/doc/linbox/AUTHORS
/usr/share/doc/linbox/ChangeLog
/usr/share/doc/linbox/README.md
/usr/share/licenses/linbox
/usr/share/licenses/linbox/COPYING
/usr/share/licenses/linbox/COPYING.LESSER
/usr/lib/.build-id
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/bff36764d5fc84a905c1279222d7c88e5c5dc2
/usr/lib64/liblinbox.so.0
/usr/lib64/liblinbox.so.0.0.0
/usr/share/doc/linbox
/usr/share/doc/linbox/AUTHORS
/usr/share/doc/linbox/ChangeLog
/usr/share/doc/linbox/README.md
/usr/share/licenses/linbox
/usr/share/licenses/linbox/COPYING
/usr/share/licenses/linbox/COPYING.LESSER
References
- [linbox website](http://www.linalg.org/ http://www.linalg.org/)
Summary
In this tutorial we learn how to install linbox
on Fedora 34 using yum and dnf.