How To Install libpst on Fedora 34
Introduction
In this tutorial we learn how to install libpst
on Fedora 34.
What is libpst
The Libpst utilities include readpst which can convert email messages to both mbox and MH mailbox formats, pst2ldif which can convert the contacts to .ldif format for import into ldap databases, and pst2dii which can convert email messages to the DII load file format used by Summation.
We can use yum
or dnf
to install libpst
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libpst.
Install libpst 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 libpst
using dnf
by running the following command:
sudo dnf -y install libpst
Install libpst 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 libpst
using yum
by running the following command:
sudo yum -y install libpst
How To Uninstall libpst on Fedora 34
To uninstall only the libpst
package we can use the following command:
sudo dnf remove libpst
libpst Package Contents on Fedora 34
/usr/bin/lspst
/usr/bin/nick2ldif
/usr/bin/pst2dii
/usr/bin/pst2ldif
/usr/bin/readpst
/usr/lib/.build-id
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/77937923ef8690e0d166b4a30869dcf7baee71
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/74533409b290c44638a82b91b5557057a15ba5
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/785b6f509ad81525a35a7335b76de0dcabe49e
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/3721deb4d889fd85896f8f9beb62cabe9e6bfb
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/c5d38758cb76ba348afcd1f3cbd1e98951e99d
/usr/share/man/man1/lspst.1.gz
/usr/share/man/man1/pst2dii.1.gz
/usr/share/man/man1/pst2ldif.1.gz
/usr/share/man/man1/readpst.1.gz
/usr/share/man/man5/outlook.pst.5.gz
References
Summary
In this tutorial we learn how to install libpst
on Fedora 34 using yum and dnf.