CentOSLinuxTutorials

How To Install Apache OpenOffice on CentOS 7

Install Apache OpenOffice on CentOS 7

In this tutorial, we will show you how to install and configuration of Apache OpenOffice on your CentOS 7. For those of you who didn’t know, Apache OpenOffice, commonly known as OpenOffice.org or OpenOffice, is an open-source office productivity software suite whose main components are for word processing, spreadsheets, presentations, graphics, and databases

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you through the step-by-step installation of Apache OpenOffice on a CentOS 7 server.

Install Apache OpenOffice on CentOS 7

Step 1. First, let’s start by ensuring your system is up-to-date.

yum clean all
yum -y update

Step 2. Download Apache OpenOffice Linux Package.

Follow the below steps to download OpenOffice and extract a tar file:

### 32-Bit ###
wget http://sourceforge.net/projects/openofficeorg.mirror/files/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Linux_x86_install-rpm_en-US.tar.gz
tar xzf Apache_OpenOffice_4.1.2_Linux_x86_install-rpm_en-US.tar.gz

### 64-Bit ###
wget http://sourceforge.net/projects/openofficeorg.mirror/files/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_en-US.tar.gz
tar xzf Apache_OpenOffice_4.1.2_Linux_x86-64_install-rpm_en-US.tar.gz

Remove OpenOffice.org and LibreOffice.org Packages with the following command:

yum remove openoffice* libreoffice*

Step 3. Installing Apache OpenOffice.

You will see a list of RPMs packages inside the en-US directory. Install all RPMs packages using the following command:

cd en-US/RPMS/
rpm -Uvh *.rpm

Now install the desktop integration features for your setup. Go to desktop-integration in the installation directory, and install the required package:

cd desktop-integration/
rpm -Uvh openoffice4.1-redhat-menus-*.noarch.rpm

Step 4. Accessing Apache OpenOffice.

After successfully installed all the packages start Openoffice using the following command:

openoffice4

Congratulations! You have successfully installed Apache OpenOffice. Thanks for using this tutorial for installing Apache OpenOffice on CentOS 7 system. For additional help or useful information, we recommend you to check the official Apache OpenOffice website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

Save

r00t

r00t is an experienced Linux enthusiast and technical writer with a passion for open-source software. With years of hands-on experience in various Linux distributions, r00t has developed a deep understanding of the Linux ecosystem and its powerful tools. He holds certifications in SCE and has contributed to several open-source projects. r00t is dedicated to sharing her knowledge and expertise through well-researched and informative articles, helping others navigate the world of Linux with confidence.
Back to top button