How To Install libudfread on Fedora 34
Introduction
In this tutorial we learn how to install libudfread
on Fedora 34.
What is libudfread
This library allows reading UDF filesystems, like raw devices and image files. The library is created and maintained by VideoLAN Project and is used by projects like VLC and Kodi. libudfread 1.1.2 1.fc34 x86_64 33 k libudfread-1.1.2-1.fc34.src.rpm updates UDF reader library https LGPLv2+ This library allows reading UDF filesystems, like raw devices and image files. The library is created and maintained by VideoLAN Project and is used by projects like VLC and Kodi.
We can use yum
or dnf
to install libudfread
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libudfread.
Install libudfread 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 libudfread
using dnf
by running the following command:
sudo dnf -y install libudfread
Install libudfread 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 libudfread
using yum
by running the following command:
sudo yum -y install libudfread
How To Uninstall libudfread on Fedora 34
To uninstall only the libudfread
package we can use the following command:
sudo dnf remove libudfread
libudfread Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/2e9aa1c2d3028623ab6cba190dc46767faba99
/usr/lib/libudfread.so.0
/usr/lib/libudfread.so.0.1.0
/usr/share/doc/libudfread
/usr/share/doc/libudfread/ChangeLog
/usr/share/licenses/libudfread
/usr/share/licenses/libudfread/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/eac3ff00ab3c4a16b547457308debd0576a871
/usr/lib/libudfread.so.0
/usr/lib/libudfread.so.0.1.0
/usr/share/doc/libudfread
/usr/share/doc/libudfread/ChangeLog
/usr/share/licenses/libudfread
/usr/share/licenses/libudfread/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/94
/usr/lib/.build-id/94/1640d5f65ac631435baa35acf67c01a1614e9a
/usr/lib64/libudfread.so.0
/usr/lib64/libudfread.so.0.1.0
/usr/share/doc/libudfread
/usr/share/doc/libudfread/ChangeLog
/usr/share/licenses/libudfread
/usr/share/licenses/libudfread/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/a1
/usr/lib/.build-id/a1/ff36643ff349999aa9e0cd7b6e69e538b1970b
/usr/lib64/libudfread.so.0
/usr/lib64/libudfread.so.0.1.0
/usr/share/doc/libudfread
/usr/share/doc/libudfread/ChangeLog
/usr/share/licenses/libudfread
/usr/share/licenses/libudfread/COPYING
References
- [libudfread website](https://code.videolan.org/videolan/libudfread https://code.videolan.org/videolan/libudfread)
Summary
In this tutorial we learn how to install libudfread
on Fedora 34 using yum and dnf.