How To Install jq on Rocky Linux 8
Introduction
In this tutorial we learn how to install jq on Rocky Linux 8.
What is jq
lightweight and flexible command-line JSON processor jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. It is written in portable C, and it has zero runtime dependencies. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you’d expect.
We can use yum or dnf to install jq on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install jq.
Install jq on Rocky Linux 8 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install jq using dnf by running the following command:
sudo dnf -y install jq
Install jq on Rocky Linux 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install jq using yum by running the following command:
sudo yum -y install jq
How To Uninstall jq on Rocky Linux 8
To uninstall only the jq package we can use the following command:
sudo dnf remove jq
jq Package Contents on Rocky Linux 8
/usr/bin/jq
/usr/lib/.build-id
/usr/lib/.build-id/25
/usr/lib/.build-id/25/93a2262b4ee728e5ccf709421022afe0217c8d
/usr/lib/.build-id/82
/usr/lib/.build-id/82/fa748dbf3ec0e9c358cc29e03f4ede697b7257
/usr/lib/libjq.so.1
/usr/lib/libjq.so.1.0.4
/usr/share/doc/jq/AUTHORS
/usr/share/doc/jq/COPYING
/usr/share/doc/jq/README
/usr/share/doc/jq/README.md
/usr/share/man/man1/jq.1.gz
/usr/bin/jq
/usr/lib/.build-id
/usr/lib/.build-id/58
/usr/lib/.build-id/58/a3dd448875826a7cc45cfbef244062b355b69e
/usr/lib/.build-id/98
/usr/lib/.build-id/98/989274787bf2c3e10e00bd370d6429ee409bd4
/usr/lib64/libjq.so.1
/usr/lib64/libjq.so.1.0.4
/usr/share/doc/jq/AUTHORS
/usr/share/doc/jq/COPYING
/usr/share/doc/jq/README
/usr/share/doc/jq/README.md
/usr/share/man/man1/jq.1.gz
References
Summary
In this tutorial we learn how to install jq on Rocky Linux 8 using yum and dnf.