How To Install libraw1394 on Rocky Linux 8
Introduction
In this tutorial we learn how to install libraw1394
on Rocky Linux 8.
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.
We can use yum
or dnf
to install libraw1394
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libraw1394.
Install libraw1394 on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libraw1394
using dnf
by running the following command:
sudo dnf -y install libraw1394
Install libraw1394 on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
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 Rocky Linux 8
To uninstall only the libraw1394
package we can use the following command:
sudo dnf remove libraw1394
libraw1394 Package Contents on Rocky Linux 8
/usr/bin/dumpiso
/usr/bin/sendiso
/usr/bin/testlibraw
/usr/lib/.build-id
/usr/lib/.build-id/34
/usr/lib/.build-id/34/805b4738978fb087a8d628403fd4da25b546ab
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/586cdb21d21e07c7ab6bfb864ec1829d340d44
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/6c3da063a78f8e8a0c297db5067221c8198c4f
/usr/lib/.build-id/80
/usr/lib/.build-id/80/74cc2d5cd184dadc5823f9e3d00ba94a4efad1
/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/43
/usr/lib/.build-id/43/941537207009250d5e05ec96f8a68b368dc9c9
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/1f5a656faf0e70339d1a7ee48f544b05ed70ac
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/a32a363dd0a7c55f8bac3442b9ce4c13fa0c2c
/usr/lib/.build-id/f1
/usr/lib/.build-id/f1/8f4622d243a7e9a0d095342ed8e34ac2812d5b
/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
Summary
In this tutorial we learn how to install libraw1394
on Rocky Linux 8 using yum and dnf.