How To Install vrq on Fedora 34
Introduction
In this tutorial we learn how to install vrq on Fedora 34.
What is vrq
VRQ is modular verilog parser that supports plugin tools to process verilog. Multiple tools may be invoked in a pipeline fashion within a single execution of vrq. It is a generic front-end parser with support for plugin backend customizable tools.
We can use yum or dnf to install vrq on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install vrq.
Install vrq 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 vrq using dnf by running the following command:
sudo dnf -y install vrq
Install vrq 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 vrq using yum by running the following command:
sudo yum -y install vrq
How To Uninstall vrq on Fedora 34
To uninstall only the vrq package we can use the following command:
sudo dnf remove vrq
vrq Package Contents on Fedora 34
/usr/bin/vrq
/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/1c8a097dca1c9b56c9a757afec62376fd0ed2f
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/1cd0351694654c0ebc8bbe136261ce0d94d144
/usr/lib/.build-id/78
/usr/lib/.build-id/78/a63c9567f3576d1c00a8abca52630e05b22109
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/66fc10c04a6445d7bdedd824fdb93155ae5af3
/usr/lib/.build-id/c1
/usr/lib/.build-id/c1/4d57ab2f237b6237d1b82db15cc563d4e69e9f
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/3f2ecc770629153982ddec29b5b8ee748f9897
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/4d34f926b8f1e7e1005cbec25b77d11dc748a5
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/66d687efa6f9a092b2f0c62c2f78a5bf3727a3
/usr/lib64/vrq-1.0.134
/usr/lib64/vrq-1.0.134/builder.so
/usr/lib64/vrq-1.0.134/coverage.so
/usr/lib64/vrq-1.0.134/filter.so
/usr/lib64/vrq-1.0.134/flatten.so
/usr/lib64/vrq-1.0.134/rectify.so
/usr/lib64/vrq-1.0.134/sim.so
/usr/lib64/vrq-1.0.134/stats.so
/usr/share/doc/vrq
/usr/share/doc/vrq/AUTHORS
/usr/share/doc/vrq/COPYING
/usr/share/doc/vrq/ChangeLog
/usr/share/doc/vrq/README
/usr/share/doc/vrq/doc
/usr/share/doc/vrq/doc/faq.html
/usr/share/man/man1/vrq.1.gz
References
Summary
In this tutorial we learn how to install vrq on Fedora 34 using yum and dnf.