How To Install lis on Fedora 34
Introduction
In this tutorial we learn how to install lis
on Fedora 34.
What is lis
Lis, a Library of Iterative Solvers for linear systems, is a scalable parallel library for solving systems of linear equations and standard eigenvalue problems with real sparse matrices using iterative methods. lis 2.0.21 5.fc34 x86_64 292 k lis-2.0.21-5.fc34.src.rpm fedora A library for solving linear equations and eigenvalue problems http BSD Lis, a Library of Iterative Solvers for linear systems, is a scalable parallel library for solving systems of linear equations and standard eigenvalue problems with real sparse matrices using iterative methods.
We can use yum
or dnf
to install lis
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lis.
Install lis 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 lis
using dnf
by running the following command:
sudo dnf -y install lis
Install lis 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 lis
using yum
by running the following command:
sudo yum -y install lis
How To Uninstall lis on Fedora 34
To uninstall only the lis
package we can use the following command:
sudo dnf remove lis
lis Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/83
/usr/lib/.build-id/83/6e9f3717f2a73c3536113cd0879660fa9caa3b
/usr/lib/liblis.so.0
/usr/lib/liblis.so.0.0.0
/usr/share/doc/lis
/usr/share/doc/lis/AUTHORS
/usr/share/licenses/lis
/usr/share/licenses/lis/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/93
/usr/lib/.build-id/93/eb22461b5685f98c71e0c4ca9a4e485f671beb
/usr/lib64/liblis.so.0
/usr/lib64/liblis.so.0.0.0
/usr/share/doc/lis
/usr/share/doc/lis/AUTHORS
/usr/share/licenses/lis
/usr/share/licenses/lis/COPYING
References
Summary
In this tutorial we learn how to install lis
on Fedora 34 using yum and dnf.