How To Install rtklib on Fedora 34
Introduction
In this tutorial we learn how to install rtklib
on Fedora 34.
What is rtklib
RTKLIB is an open source program package for standard and precise positioning with GNSS (global navigation satellite system). RTKLIB consists of a portable program library and several APs (application programs) utilizing the library.
We can use yum
or dnf
to install rtklib
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rtklib.
Install rtklib 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 rtklib
using dnf
by running the following command:
sudo dnf -y install rtklib
Install rtklib 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 rtklib
using yum
by running the following command:
sudo yum -y install rtklib
How To Uninstall rtklib on Fedora 34
To uninstall only the rtklib
package we can use the following command:
sudo dnf remove rtklib
rtklib Package Contents on Fedora 34
/usr/bin/convbin
/usr/bin/pos2kml
/usr/bin/rnx2rtkp
/usr/bin/rtkrcv
/usr/bin/rtkshut.sh
/usr/bin/rtkstart.sh
/usr/bin/str2str
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/1be6deb6806fab8e96111f48502cd89776ef39
/usr/lib/.build-id/41
/usr/lib/.build-id/41/bc43e898aa56088a6a4007e8de477d84be9548
/usr/lib/.build-id/84
/usr/lib/.build-id/84/1725d9f48dad088980a12130d97e0359d5b451
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/b41e2f50da22f5ceda981e91d656d53e56c730
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/09f0f22311a364f2f891179f55385178a088f0
/usr/share/doc/rtklib
/usr/share/doc/rtklib/readme.txt
/usr/share/doc/rtklib/readme_orig.txt
/usr/share/rtklib
/usr/share/rtklib/P1C1_ALL.DCB
/usr/share/rtklib/P1P2_ALL.DCB
/usr/share/rtklib/P2C2.DCB
/usr/share/rtklib/STA_GSI.txt
/usr/share/rtklib/STA_IGS.txt
/usr/share/rtklib/STA_IGS08.txt
/usr/share/rtklib/STA_IGS_H.txt
/usr/share/rtklib/STA_IGS_HR.txt
/usr/share/rtklib/STA_IGS_MGEX.txt
/usr/share/rtklib/TLE_GNSS_SATNO.txt
/usr/share/rtklib/TLE_GNSS_SIM.txt
/usr/share/rtklib/URL_LIST.txt
/usr/share/rtklib/elmask_sample.txt
/usr/share/rtklib/gnssdatasrc.txt
/usr/share/rtklib/igs10P1565_wocov.snx
/usr/share/rtklib/ngs_abs.pcv
/usr/share/rtklib/stations.pos
References
Summary
In this tutorial we learn how to install rtklib
on Fedora 34 using yum and dnf.