How To Install librealsense1 on Fedora 34

librealsense1 is Cross-platform camera capture for Intel RealSense Cross-platform camera capture for Intel RealSense

Introduction

In this tutorial we learn how to install librealsense1 on Fedora 34.

What is librealsense1

This project is a cross-platform library (Linux, OSX, Windows) for capturing data from the Intel RealSense F200, SR300 and R200 cameras. This is a legacy package to provide support for older camera hardware. For newer hardware, use librealsense. librealsense1 1.12.4 6.24ddaec.fc34 x86_64 290 k librealsense1-1.12.4-6.24ddaec.fc34.src.rpm fedora Cross-platform camera capture for Intel RealSense https ASL 2.0 and BSD This project is a cross-platform library (Linux, OSX, Windows) for capturing data from the Intel RealSense F200, SR300 and R200 cameras. This is a legacy package to provide support for older camera hardware. For newer hardware, use librealsense.

We can use yum or dnf to install librealsense1 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install librealsense1.

Install librealsense1 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 librealsense1 using dnf by running the following command:

sudo dnf -y install librealsense1

Install librealsense1 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 librealsense1 using yum by running the following command:

sudo yum -y install librealsense1

How To Uninstall librealsense1 on Fedora 34

To uninstall only the librealsense1 package we can use the following command:

sudo dnf remove librealsense1

librealsense1 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/6aa2db0b0950d087f5d2fa30cb0b791381c475
/usr/lib/udev/rules.d/99-realsense1-libusb.rules
/usr/lib64/librealsense1.so.1
/usr/lib64/librealsense1.so.1.12.4
/usr/share/doc/librealsense1
/usr/share/doc/librealsense1/readme.md
/usr/share/licenses/librealsense1
/usr/share/licenses/librealsense1/LICENSE
/usr/share/realsense1
/usr/share/realsense1/usb-R200-in
/usr/share/realsense1/usb-R200-in_udev
/usr/lib/.build-id
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/d162bfec55eefa0aba80156aecd62ebc0d6922
/usr/lib/librealsense1.so.1
/usr/lib/librealsense1.so.1.12.4
/usr/lib/udev/rules.d/99-realsense1-libusb.rules
/usr/share/doc/librealsense1
/usr/share/doc/librealsense1/readme.md
/usr/share/licenses/librealsense1
/usr/share/licenses/librealsense1/LICENSE
/usr/share/realsense1
/usr/share/realsense1/usb-R200-in
/usr/share/realsense1/usb-R200-in_udev

References

Summary

In this tutorial we learn how to install librealsense1 on Fedora 34 using yum and dnf.