How To Install libraw1394 on Fedora 34
Introduction
In this tutorial we learn how to install libraw1394
on Fedora 34.
What is libraw1394
The libraw1394 library provides direct access to the IEEE-1394 bus. Support for both the obsolete ieee1394 interface and the new firewire intererface are included, with run-time detection of the active stack. libraw1394 2.1.2 13.fc34 x86_64 65 k libraw1394-2.1.2-13.fc34.src.rpm fedora Library providing low-level IEEE-1394 access - 2.1.2- http LGPLv2+ The libraw1394 library provides direct access to the IEEE-1394 bus. Support for both the obsolete ieee1394 interface and the new firewire intererface are included, with run-time detection of the active stack.
We can use yum
or dnf
to install libraw1394
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libraw1394.
Install libraw1394 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 libraw1394
using dnf
by running the following command:
sudo dnf -y install libraw1394
Install libraw1394 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 libraw1394
using yum
by running the following command:
sudo yum -y install libraw1394
How To Uninstall libraw1394 on Fedora 34
To uninstall only the libraw1394
package we can use the following command:
sudo dnf remove libraw1394
libraw1394 Package Contents on Fedora 34
/usr/bin/dumpiso
/usr/bin/sendiso
/usr/bin/testlibraw
/usr/lib/.build-id
/usr/lib/.build-id/12
/usr/lib/.build-id/12/0e0079a541fe99b5eab0cac831340c001d840e
/usr/lib/.build-id/16
/usr/lib/.build-id/16/d880620473c61bdffcc220ba09773b06cd8a00
/usr/lib/.build-id/47
/usr/lib/.build-id/47/53c6ebcf5d6f1b855d37d179729ff54c3394f2
/usr/lib/.build-id/98
/usr/lib/.build-id/98/948f9832dd037c23b1f10ab7416b0a9cabfa3f
/usr/lib64/libraw1394.so.11
/usr/lib64/libraw1394.so.11.1.0
/usr/share/doc/libraw1394
/usr/share/doc/libraw1394/NEWS
/usr/share/doc/libraw1394/README
/usr/share/licenses/libraw1394
/usr/share/licenses/libraw1394/COPYING.LIB
/usr/share/man/man1/dumpiso.1.gz
/usr/share/man/man1/sendiso.1.gz
/usr/share/man/man1/testlibraw.1.gz
/usr/share/man/man5/isodump.5.gz
/usr/bin/dumpiso
/usr/bin/sendiso
/usr/bin/testlibraw
/usr/lib/.build-id
/usr/lib/.build-id/22
/usr/lib/.build-id/22/4dd8a7ccd4788ddeba0fc04bd0e3f953d5b4b6
/usr/lib/.build-id/5e
/usr/lib/.build-id/5e/7d6b1a779c02984b54070490e724b13348508c
/usr/lib/.build-id/84
/usr/lib/.build-id/84/59cbf547494df008ee6aaf34fd753d718a0e19
/usr/lib/.build-id/aa
/usr/lib/.build-id/aa/7d1e4917089fd07634e1f7d3094413fa66a94d
/usr/lib/libraw1394.so.11
/usr/lib/libraw1394.so.11.1.0
/usr/share/doc/libraw1394
/usr/share/doc/libraw1394/NEWS
/usr/share/doc/libraw1394/README
/usr/share/licenses/libraw1394
/usr/share/licenses/libraw1394/COPYING.LIB
/usr/share/man/man1/dumpiso.1.gz
/usr/share/man/man1/sendiso.1.gz
/usr/share/man/man1/testlibraw.1.gz
/usr/share/man/man5/isodump.5.gz
References
- [libraw1394 website](http://www.dennedy.org/libraw1394/ http://www.dennedy.org/libraw1394/)
Summary
In this tutorial we learn how to install libraw1394
on Fedora 34 using yum and dnf.