How To Install hamlib on Rocky Linux 8
Introduction
In this tutorial we learn how to install hamlib
on Rocky Linux 8.
What is hamlib
Hamlib provides a standardized programming interface that applications can use to send the appropriate commands to a radio. Also included in the package is a simple radio control program ‘rigctl’, which lets one control a radio transceiver or receiver, either from command line interface or in a text-oriented interactive interface.
We can use yum
or dnf
to install hamlib
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install hamlib.
Install hamlib 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 hamlib
using dnf
by running the following command:
sudo dnf -y install hamlib
Install hamlib 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 hamlib
using yum
by running the following command:
sudo yum -y install hamlib
How To Uninstall hamlib on Rocky Linux 8
To uninstall only the hamlib
package we can use the following command:
sudo dnf remove hamlib
hamlib Package Contents on Rocky Linux 8
/usr/bin/ampctl
/usr/bin/ampctld
/usr/bin/rigctl
/usr/bin/rigctlcom
/usr/bin/rigctld
/usr/bin/rigmem
/usr/bin/rigsmtr
/usr/bin/rigswr
/usr/bin/rotctl
/usr/bin/rotctld
/usr/lib/.build-id
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/951937b9cd20fc62944e4d3563d643a6942a17
/usr/lib/.build-id/78
/usr/lib/.build-id/78/4221c8ce29ca15fa75cab69177fe3fa79ebf67
/usr/lib/.build-id/7d
/usr/lib/.build-id/7d/55c64fd8c28beaa2e7c4764b5acfabb671a5fe
/usr/lib/.build-id/99
/usr/lib/.build-id/99/75ff1b656af96a8df9d286d171a62db3fe0caf
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/5cbfbb74e691a70d79943faf2484247c178f69
/usr/lib/.build-id/9d
/usr/lib/.build-id/9d/31246f93b2e0445d9ba7fa8be80012a5866b98
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/ae2eb13eeb38ee8efa0f57aca81a5798c02c31
/usr/lib/.build-id/aa
/usr/lib/.build-id/aa/d7014518a4d2e496a83e25753826425e23f2da
/usr/lib/.build-id/b8
/usr/lib/.build-id/b8/9b5c14a953b75e08a74f2f6d639e20e5780dd2
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/80caf7c6bc2a650d5ae5e307ada3c24e7c2286
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/f15c6204ce120fe2cc153bbe15af0b616d20e1
/usr/lib64/libhamlib.so.4
/usr/lib64/libhamlib.so.4.0.0
/usr/share/doc/hamlib
/usr/share/doc/hamlib/AUTHORS
/usr/share/doc/hamlib/ChangeLog
/usr/share/doc/hamlib/PLAN
/usr/share/doc/hamlib/README
/usr/share/doc/hamlib/THANKS
/usr/share/licenses/hamlib
/usr/share/licenses/hamlib/COPYING
/usr/share/man/man1/ampctl.1.gz
/usr/share/man/man1/ampctld.1.gz
/usr/share/man/man1/rigctl.1.gz
/usr/share/man/man1/rigctlcom.1.gz
/usr/share/man/man1/rigctld.1.gz
/usr/share/man/man1/rigmem.1.gz
/usr/share/man/man1/rigsmtr.1.gz
/usr/share/man/man1/rigswr.1.gz
/usr/share/man/man1/rotctl.1.gz
/usr/share/man/man1/rotctld.1.gz
/usr/share/man/man7/hamlib-primer.7.gz
/usr/share/man/man7/hamlib-utilities.7.gz
/usr/share/man/man7/hamlib.7.gz
References
Summary
In this tutorial we learn how to install hamlib
on Rocky Linux 8 using yum and dnf.