How To Install tcl-hamlib on Rocky Linux 8
Introduction
In this tutorial we learn how to install tcl-hamlib
on Rocky Linux 8.
What is tcl-hamlib
Hamlib TCL Language bindings to allow radio control from TCL scripts.
We can use yum
or dnf
to install tcl-hamlib
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install tcl-hamlib.
Install tcl-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 tcl-hamlib
using dnf
by running the following command:
sudo dnf -y install tcl-hamlib
Install tcl-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 tcl-hamlib
using yum
by running the following command:
sudo yum -y install tcl-hamlib
How To Uninstall tcl-hamlib on Rocky Linux 8
To uninstall only the tcl-hamlib
package we can use the following command:
sudo dnf remove tcl-hamlib
tcl-hamlib Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/d5
/usr/lib/.build-id/d5/72936ae95e78c95dae9ebbd115bc5e25731bee
/usr/lib64/tcl8.6
/usr/lib64/tcl8.6/Hamlib
/usr/lib64/tcl8.6/Hamlib/hamlibtcl-4.0.so
References
Summary
In this tutorial we learn how to install tcl-hamlib
on Rocky Linux 8 using yum and dnf.