How To Install libfplll on Fedora 34
Introduction
In this tutorial we learn how to install libfplll
on Fedora 34.
What is libfplll
fplll contains several algorithms on lattices that rely on floating-point computations. This includes implementations of the floating-point LLL reduction algorithm, offering different speed/guarantees ratios. It contains a ‘wrapper’ choosing the estimated best sequence of variants in order to provide a guaranteed output as fast as possible. In the case of the wrapper, the succession of variants is oblivious to the user. It also includes a rigorous floating-point implementation of the Kannan-Fincke-Pohst algorithm that finds a shortest non-zero lattice vector, and the BKZ reduction algorithm. libfplll 5.4.0 2.fc34 x86_64 3.9 M libfplll-5.4.0-2.fc34.src.rpm fedora LLL-reduces euclidean lattices https LGPLv2+ fplll contains several algorithms on lattices that rely on floating-point computations. This includes implementations of the floating-point LLL reduction algorithm, offering different speed/guarantees ratios. It contains a ‘wrapper’ choosing the estimated best sequence of variants in order to provide a guaranteed output as fast as possible. In the case of the wrapper, the succession of variants is oblivious to the user. It also includes a rigorous floating-point implementation of the Kannan-Fincke-Pohst algorithm that finds a shortest non-zero lattice vector, and the BKZ reduction algorithm.
We can use yum
or dnf
to install libfplll
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libfplll.
Install libfplll 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 libfplll
using dnf
by running the following command:
sudo dnf -y install libfplll
Install libfplll 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 libfplll
using yum
by running the following command:
sudo yum -y install libfplll
How To Uninstall libfplll on Fedora 34
To uninstall only the libfplll
package we can use the following command:
sudo dnf remove libfplll
libfplll Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/32
/usr/lib/.build-id/32/8a4d6fed13b28904c3a5f286555f4c58f235a8
/usr/lib/libfplll.so.7
/usr/lib/libfplll.so.7.0.0
/usr/share/doc/libfplll
/usr/share/doc/libfplll/NEWS
/usr/share/doc/libfplll/README.md
/usr/share/fplll
/usr/share/fplll/strategies
/usr/share/fplll/strategies/default.json
/usr/share/licenses/libfplll
/usr/share/licenses/libfplll/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/51
/usr/lib/.build-id/51/763d6d0a21c71c422e75300a5a0683bef8b7d9
/usr/lib64/libfplll.so.7
/usr/lib64/libfplll.so.7.0.0
/usr/share/doc/libfplll
/usr/share/doc/libfplll/NEWS
/usr/share/doc/libfplll/README.md
/usr/share/fplll
/usr/share/fplll/strategies
/usr/share/fplll/strategies/default.json
/usr/share/licenses/libfplll
/usr/share/licenses/libfplll/COPYING
References
- [libfplll website](https://fplll.github.io/fplll/ https://fplll.github.io/fplll/)
Summary
In this tutorial we learn how to install libfplll
on Fedora 34 using yum and dnf.