How To Install libplist on Fedora 34
Introduction
In this tutorial we learn how to install libplist
on Fedora 34.
What is libplist
libplist is a library for manipulating Apple Binary and XML Property Lists libplist 2.2.0 3.fc34 x86_64 77 k libplist-2.2.0-3.fc34.src.rpm fedora Library for manipulating Apple Binary and XML Property Lists http LGPLv2+ libplist is a library for manipulating Apple Binary and XML Property Lists
We can use yum
or dnf
to install libplist
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libplist.
Install libplist 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 libplist
using dnf
by running the following command:
sudo dnf -y install libplist
Install libplist 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 libplist
using yum
by running the following command:
sudo yum -y install libplist
How To Uninstall libplist on Fedora 34
To uninstall only the libplist
package we can use the following command:
sudo dnf remove libplist
libplist Package Contents on Fedora 34
/usr/bin/plistutil
/usr/lib/.build-id
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/906b93777c1fb7585477dbe9eb636ff5471bca
/usr/lib/.build-id/44
/usr/lib/.build-id/44/88a3d475060395624006a8eba6369aa5fcefa6
/usr/lib/.build-id/93
/usr/lib/.build-id/93/c44d337d5d5708a5b88ebfe98862812abc2a45
/usr/lib/libplist++-2.0.so.3
/usr/lib/libplist++-2.0.so.3.3.0
/usr/lib/libplist-2.0.so.3
/usr/lib/libplist-2.0.so.3.3.0
/usr/share/doc/libplist
/usr/share/doc/libplist/AUTHORS
/usr/share/doc/libplist/README.md
/usr/share/licenses/libplist
/usr/share/licenses/libplist/COPYING.LESSER
/usr/share/man/man1/plistutil.1.gz
/usr/bin/plistutil
/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/3372269f793e4a55e5baee8a17b994649fc37b
/usr/lib/.build-id/ba
/usr/lib/.build-id/ba/b8a3412a559fd50ad28232b9f9349eaa408f55
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/944a5a8e64ece495b7567adf506ae7cc4fd65b
/usr/lib64/libplist++-2.0.so.3
/usr/lib64/libplist++-2.0.so.3.3.0
/usr/lib64/libplist-2.0.so.3
/usr/lib64/libplist-2.0.so.3.3.0
/usr/share/doc/libplist
/usr/share/doc/libplist/AUTHORS
/usr/share/doc/libplist/README.md
/usr/share/licenses/libplist
/usr/share/licenses/libplist/COPYING.LESSER
/usr/share/man/man1/plistutil.1.gz
References
- [libplist website](http://www.libimobiledevice.org/ http://www.libimobiledevice.org/)
Summary
In this tutorial we learn how to install libplist
on Fedora 34 using yum and dnf.