In this guide, we’ll look at Installing the latest Apache OpenOffice on CentOS / RHEL / AlmaLinux / Rocky Linux Desktop operating system. OpenOffice is one of the best freely available, fully-featured office productivity suite. It is the successor projects of OpenOffice.org and the designated successor of IBM Lotus Symphony.

If you’re looking for Microsoft Office or LibreOffice alternative, then Apache OpenOffice is your go to tool. OpenOffice comes with its own file formats and is able to read and save Microsoft Office file formats.

OpenOffice components

Among the features and tools provided by OpenOffice are:

  • Writer a word processor you can use for anything from writing a quick letter to producing an entire book.
  • Calc a powerful spreadsheet with all the tools you need to calculate, analyze, and present your data in numerical reports or sizzling graphics.
  • Impress the fastest, most powerful way to create effective multimedia presentations.
  • Draw lets you produce everything from simple diagrams to dynamic 3D illustrations.
  • Base lets you manipulate databases seamlessly. Create and modify tables, forms, queries, and reports, all from within Apache OpenOffice.
  • Math lets you create mathematical equations with a graphic user interface or by directly typing your formulas into the equation editor.

The Apache OpenOffice RPM packages are available for installation on your Desktop system. All you need to do is download archive, extract it and install all available RPM packages distributed.

Step 1: Update system

To ensure we don’t get any dependency issues, let’s update our system.

sudo dnf -y update

Step 2: Install Java JDK

Java is required to run OpenOffice on your Linux machine.

sudo yum -y install java-21-openjdk java-21-openjdk-devel

Confirm Java version after the installation.

$ java -version
openjdk version "21.0.4" 2024-07-16 LTS
OpenJDK Runtime Environment (Red_Hat-21.0.4.0.7-1) (build 21.0.4+7-LTS)
OpenJDK 64-Bit Server VM (Red_Hat-21.0.4.0.7-1) (build 21.0.4+7-LTS, mixed mode, sharing)

If you have have multiple versions of Java you can set default using the command:

sudo alternatives --config java

Step 3: Download Apache OpenOffice

Download the latest release of Apache OpenOffice from Apache OpenOffice Downloads section. Please check current version on the link provided before starting the download.

Use wget, curl command or web browser to download the latest release of Apache OpenOffice on Linux.

VER=4.1.15
wget https://sourceforge.net/projects/openofficeorg.mirror/files/${VER}/binaries/en-GB/Apache_OpenOffice_${VER}_Linux_x86-64_install-rpm_en-GB.tar.gz

Extract downloaded file.

tar xvf Apache_OpenOffice_${VER}_Linux_x86-64_install-rpm_en-GB.tar.gz

Ensure that you don’t have any installed version of OpenOffice.

sudo yum remove openoffice*

Step 4: Install Apache OpenOffice

Install the OpenOffice RPM packages on your system using the command:

cd en-US/RPMS
sudo rpm -Uvih *rpm

Installation output:

install openoffice centos rhel 8 02

Also Desktop integration package.

sudo rpm -Uvih desktop-integration/openoffice*.noarch.rpm

Search OpenOffice Application to launch.

Launch OpenOffice CentOS RHEL 8

Similar guides:

LEAVE A REPLY

Please enter your comment!
Please enter your name here