How To Install libdc1394 on Fedora 34

libdc1394 is 1394-based digital camera control library 1394-based digital camera control library

Introduction

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

What is libdc1394

Libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification. libdc1394 2.2.6 4.fc34 x86_64 130 k libdc1394-2.2.6-4.fc34.src.rpm fedora 1394-based digital camera control library http LGPLv2+ Libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification.

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

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

sudo dnf -y install libdc1394

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

sudo yum -y install libdc1394

How To Uninstall libdc1394 on Fedora 34

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

sudo dnf remove libdc1394

libdc1394 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/1fbe59ff2e52cebdde10c42376e73b0d9f5fff
/usr/lib64/libdc1394.so.25
/usr/lib64/libdc1394.so.25.0.0
/usr/share/doc/libdc1394
/usr/share/doc/libdc1394/AUTHORS
/usr/share/doc/libdc1394/COPYING
/usr/share/doc/libdc1394/ChangeLog
/usr/share/doc/libdc1394/NEWS
/usr/share/doc/libdc1394/README
/usr/lib/.build-id
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/86bebda9adcbc33ef895c7ec71c9fe80bbac04
/usr/lib/libdc1394.so.25
/usr/lib/libdc1394.so.25.0.0
/usr/share/doc/libdc1394
/usr/share/doc/libdc1394/AUTHORS
/usr/share/doc/libdc1394/COPYING
/usr/share/doc/libdc1394/ChangeLog
/usr/share/doc/libdc1394/NEWS
/usr/share/doc/libdc1394/README

References

Summary

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