How To Install o3read on Fedora 34
Introduction
In this tutorial we learn how to install o3read
on Fedora 34.
What is o3read
o3read is a standalone converter for the OpenOffice.org writer and calc documents to text, html, and a dump of the parse tree. It doesn’t depend on Open Office or any other external tools or libraries.
We can use yum
or dnf
to install o3read
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install o3read.
Install o3read 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 o3read
using dnf
by running the following command:
sudo dnf -y install o3read
Install o3read 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 o3read
using yum
by running the following command:
sudo yum -y install o3read
How To Uninstall o3read on Fedora 34
To uninstall only the o3read
package we can use the following command:
sudo dnf remove o3read
o3read Package Contents on Fedora 34
/usr/bin/o3read
/usr/bin/o3tohtml
/usr/bin/o3totxt
/usr/bin/utf8tolatin1
/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/0e7825a97b233cddab7e0b856fe68cbec666ec
/usr/lib/.build-id/52
/usr/lib/.build-id/52/e11b6175fd0d21cbd0abb99a96a67679d04f46
/usr/lib/.build-id/96
/usr/lib/.build-id/96/0f9d4f4f9c9c76c51a4a191080e0d93801fc89
/usr/lib/.build-id/c0
/usr/lib/.build-id/c0/82bb1594a461ba991fe7eb19f5367ad1658b7c
/usr/share/doc/o3read
/usr/share/doc/o3read/COPYING
/usr/share/doc/o3read/ChangeLog
/usr/share/doc/o3read/README
/usr/share/doc/o3read/TODO
/usr/share/man/man1/o3read.1.gz
/usr/share/man/man1/o3tohtml.1.gz
/usr/share/man/man1/o3totxt.1.gz
/usr/share/man/man1/utf8tolatin1.1.gz
References
Summary
In this tutorial we learn how to install o3read
on Fedora 34 using yum and dnf.