How To Install liblas on Fedora 34
Introduction
In this tutorial we learn how to install liblas
on Fedora 34.
What is liblas
libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival. liblas 1.8.1 14.gitd76a061.fc34 x86_64 324 k liblas-1.8.1-14.gitd76a061.fc34.src.rpm fedora Library for reading and writing the very common LAS LiDAR format https BSD and Boost libLAS is a C/C++ library for reading and writing the very common LAS LiDAR format. The ASPRS LAS format is a sequential binary format used to store data from LiDAR sensors and by LiDAR processing software for data interchange and archival.
We can use yum
or dnf
to install liblas
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install liblas.
Install liblas 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 liblas
using dnf
by running the following command:
sudo dnf -y install liblas
Install liblas 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 liblas
using yum
by running the following command:
sudo yum -y install liblas
How To Uninstall liblas on Fedora 34
To uninstall only the liblas
package we can use the following command:
sudo dnf remove liblas
liblas Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/41
/usr/lib/.build-id/41/0687db11e61c0fce330c671e58cab920ca9008
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/4577a6492311ce2a384f64a5cd3929d74179c3
/usr/lib/liblas.so.2.4.0
/usr/lib/liblas.so.3
/usr/lib/liblas_c.so.2.4.0
/usr/lib/liblas_c.so.3
/usr/lib/.build-id
/usr/lib/.build-id/99
/usr/lib/.build-id/99/90789170e9262a86bba40a6414bbb02b3058c8
/usr/lib/.build-id/da
/usr/lib/.build-id/da/6fd53be8340a5ffa5797fad649a6f6cab6e4cf
/usr/lib64/liblas.so.2.4.0
/usr/lib64/liblas.so.3
/usr/lib64/liblas_c.so.2.4.0
/usr/lib64/liblas_c.so.3
References
- [liblas website](https://www.liblas.org https://www.liblas.org)
Summary
In this tutorial we learn how to install liblas
on Fedora 34 using yum and dnf.