How To Install rw on Fedora 34
Introduction
In this tutorial we learn how to install rw
on Fedora 34.
What is rw
rw is a program that calculates rank-width and rank-decompositions. It is based on ideas from “Computing rank-width exactly” by Sang-il Oum, “Sopra una formula numerica” by Ernesto Pascal, “Generation of a Vector from the Lexicographical Index” by B.P. Buckles and M. Lybanon and “Fast additions on masked integers” by Michael D. Adams and David S. Wise. rw 0.7 12.fc34 x86_64 26 k rw-0.7-12.fc34.src.rpm fedora Program that calculates rank-width and rank-decompositions http GPLv2+ rw is a program that calculates rank-width and rank-decompositions. It is based on ideas from “Computing rank-width exactly” by Sang-il Oum, “Sopra una formula numerica” by Ernesto Pascal, “Generation of a Vector from the Lexicographical Index” by B.P. Buckles and M. Lybanon and “Fast additions on masked integers” by Michael D. Adams and David S. Wise.
We can use yum
or dnf
to install rw
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rw.
Install rw 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 rw
using dnf
by running the following command:
sudo dnf -y install rw
Install rw 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 rw
using yum
by running the following command:
sudo yum -y install rw
How To Uninstall rw on Fedora 34
To uninstall only the rw
package we can use the following command:
sudo dnf remove rw
rw Package Contents on Fedora 34
/usr/bin/rw
/usr/lib/.build-id
/usr/lib/.build-id/22
/usr/lib/.build-id/22/241427765348a24e87c49cebd129b11720ce0c
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/3f49f6a88a462f017f339019cec572aa6dbd72
/usr/lib/librw.so.0
/usr/lib/librw.so.0.0.0
/usr/share/doc/rw
/usr/share/doc/rw/AUTHORS
/usr/share/doc/rw/Hängematte
/usr/share/doc/rw/NEWS
/usr/share/doc/rw/README
/usr/share/doc/rw/grid
/usr/share/doc/rw/igrid
/usr/share/licenses/rw
/usr/share/licenses/rw/COPYING
/usr/bin/rw
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/e8f704851b968b88627b0657f7ead499316c7f
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/88b192e45517517ca9a00e0a59f10ccca4cf97
/usr/lib64/librw.so.0
/usr/lib64/librw.so.0.0.0
/usr/share/doc/rw
/usr/share/doc/rw/AUTHORS
/usr/share/doc/rw/Hängematte
/usr/share/doc/rw/NEWS
/usr/share/doc/rw/README
/usr/share/doc/rw/grid
/usr/share/doc/rw/igrid
/usr/share/licenses/rw
/usr/share/licenses/rw/COPYING
References
- [rw website](http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw.shtml http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw.shtml)
Summary
In this tutorial we learn how to install rw
on Fedora 34 using yum and dnf.