How To Install libdsk on Fedora 34
Introduction
In this tutorial we learn how to install libdsk
on Fedora 34.
What is libdsk
A library for accessing disk images, particularly for use with emulators. libdsk 1.5.10 5.fc34 x86_64 419 k libdsk-1.5.10-5.fc34.src.rpm fedora Library for accessing disk images http LGPLv2+ A library for accessing disk images, particularly for use with emulators.
We can use yum
or dnf
to install libdsk
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdsk.
Install libdsk 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 libdsk
using dnf
by running the following command:
sudo dnf -y install libdsk
Install libdsk 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 libdsk
using yum
by running the following command:
sudo yum -y install libdsk
How To Uninstall libdsk on Fedora 34
To uninstall only the libdsk
package we can use the following command:
sudo dnf remove libdsk
libdsk Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/eba9187bc2fee6429b2cab468c8ad35a0f756b
/usr/lib/libdsk.so.4
/usr/lib/libdsk.so.4.3.2
/usr/share/doc/libdsk
/usr/share/doc/libdsk/COPYING
/usr/share/doc/libdsk/ChangeLog
/usr/share/doc/libdsk/TODO
/usr/share/doc/libdsk/libdsk.pdf
/usr/share/doc/libdsk/libdsk.txt
/usr/lib/.build-id
/usr/lib/.build-id/85
/usr/lib/.build-id/85/b5587bb4df5b7e57bf1ce872fcf0ef13f91513
/usr/lib64/libdsk.so.4
/usr/lib64/libdsk.so.4.3.2
/usr/share/doc/libdsk
/usr/share/doc/libdsk/COPYING
/usr/share/doc/libdsk/ChangeLog
/usr/share/doc/libdsk/TODO
/usr/share/doc/libdsk/libdsk.pdf
/usr/share/doc/libdsk/libdsk.txt
References
- [libdsk website](http://www.seasip.info/Unix/LibDsk http://www.seasip.info/Unix/LibDsk)
Summary
In this tutorial we learn how to install libdsk
on Fedora 34 using yum and dnf.