How To Install lfsc on Fedora 34
Introduction
In this tutorial we learn how to install lfsc
on Fedora 34.
What is lfsc
This package contains an SMT proof checker. lfsc 0.20201110 2.fc34 x86_64 198 k lfsc-0.20201110-2.fc34.src.rpm fedora SMT proof checker https BSD This package contains an SMT proof checker.
We can use yum
or dnf
to install lfsc
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lfsc.
Install lfsc 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 lfsc
using dnf
by running the following command:
sudo dnf -y install lfsc
Install lfsc 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 lfsc
using yum
by running the following command:
sudo yum -y install lfsc
How To Uninstall lfsc on Fedora 34
To uninstall only the lfsc
package we can use the following command:
sudo dnf remove lfsc
lfsc Package Contents on Fedora 34
/usr/bin/lfscc
/usr/lib/.build-id
/usr/lib/.build-id/55
/usr/lib/.build-id/55/3857c4defda8e27ffbb0b52a2e1dd1fd5b3486
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/b53e1ae05e621e828ac01fefbda61684a8f18e
/usr/lib64/liblfscc.so.0
/usr/lib64/liblfscc.so.0.0.0
/usr/share/doc/lfsc
/usr/share/doc/lfsc/AUTHORS
/usr/share/doc/lfsc/README.md
/usr/share/lfsc
/usr/share/lfsc/color_base.plf
/usr/share/lfsc/color_euf.plf
/usr/share/lfsc/euf_interpolation.plf
/usr/share/lfsc/sat.plf
/usr/share/lfsc/smt.plf
/usr/share/lfsc/th_base.plf
/usr/share/lfsc/th_lra-cvc3.plf
/usr/share/lfsc/th_lra.plf
/usr/share/lfsc/th_real.plf
/usr/share/licenses/lfsc
/usr/share/licenses/lfsc/COPYING
/usr/share/man/man1/lfscc.1.gz
/usr/bin/lfscc
/usr/lib/.build-id
/usr/lib/.build-id/81
/usr/lib/.build-id/81/dac5b1483e26787d5cd35e4f4565a29fde1c01
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/fab734dcb0e2cadd38ed5b8f2d0fe76d65fe29
/usr/lib/liblfscc.so.0
/usr/lib/liblfscc.so.0.0.0
/usr/share/doc/lfsc
/usr/share/doc/lfsc/AUTHORS
/usr/share/doc/lfsc/README.md
/usr/share/lfsc
/usr/share/lfsc/color_base.plf
/usr/share/lfsc/color_euf.plf
/usr/share/lfsc/euf_interpolation.plf
/usr/share/lfsc/sat.plf
/usr/share/lfsc/smt.plf
/usr/share/lfsc/th_base.plf
/usr/share/lfsc/th_lra-cvc3.plf
/usr/share/lfsc/th_lra.plf
/usr/share/lfsc/th_real.plf
/usr/share/licenses/lfsc
/usr/share/licenses/lfsc/COPYING
/usr/share/man/man1/lfscc.1.gz
References
- [lfsc website](https://github.com/CVC4/LFSC https://github.com/CVC4/LFSC)
Summary
In this tutorial we learn how to install lfsc
on Fedora 34 using yum and dnf.