> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Install Apache OpenOffice in Ubuntu and Linux Mint
- URL: https://itsfoss.com/install-openoffice-ubuntu-linux/
- Published: 2015-09-12T11:42:54.000Z
- Updated: 2024-08-23T10:33:39.000Z
- Description: Apache OpenOffice is still preferred by a few. Here's how to install OpenOffice in Ubuntu based Linux distributions.
- Author: Abhishek Prakash
- Tags: Ubuntu, Installation 📥

This tutorial shows you **how to install Apache OpenOffice in Ubuntu, Linux Mint** and other Ubuntu-based Linux distributions such as elementary OS, Linux Lite, Peppermint OS etc.

Frankly speaking, despite being one of the [best Open Source alternatives to Microsoft Office](https://itsfoss.com/best-free-open-source-alternatives-microsoft-office/), [Apache OpenOffice](http://www.openoffice.org/?ref=itsfoss.com) has never been my favorite office product. I prefer [LibreOffice](https://itsfoss.com/libreoffice-5/) and so do several other Linux distributions that have LibreOffice as default office suite.

The reason for my disliking is simple. It seems that Apache OpenOffice does not care about the ease of installation. It doesn’t have one single installation file which you can download and double-click to install. To me, it’s just bad packaging. If they can provide over 20 deb files for various stuff, why not package them in one. This is unnecessarily complicating things.

![OpenOffice deb files](https://itsfoss.com/content/images/wordpress/2015/09/OpenOffice-Ubuntu.jpg)

As an experienced Linux-er, I can run a few commands to install Open Office in Ubuntu but I am pretty sure this installation procedure could be off-putting for beginners. I wonder why it is not available in Ubuntu repository for easy installation.

So, why am I writing OpenOffice installation guide then? Actually, it was a [tutorial request](https://itsfoss.com/request-tutorial/) by Michel and I obliged it. Without wasting more time, let’s see Open Office installation in Ubuntu and other Ubuntu-based Linux distributions.

## Install OpenOffice In Ubuntu & Linux Mint

Before you go on installing OpenOffice, I would advise uninstalling the already installed [LibreOffice](https://www.libreoffice.org/?ref=itsfoss.com). To remove LibreOffice, use the following commands:

```
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
```

Once you have removed LibreOffice, let’s see how to install OpenOffice now. There are two versions available, 32 bit or 64 bit. If you are not sure, here is [how to find out if you are using 32 bit or 64 bit Ubuntu](https://itsfoss.com/how-to-know-ubuntu-unity-version/).

### Install 32 bit OpenOffice in Ubuntu and Linux Mint

```
cd ~/Downloads
```

Once you are in the Downloads, use the command below to download the files.

```
wget sourceforge.net/projects/openofficeorg.mirror/files/4.1.1/binaries/en-GB/Apache_OpenOffice_4.1.1_Linux_x86_install-deb_en-GB.tar.gz
```

Once we have the files, time to install them.

```
tar -xzvf Apache_OpenOffice_4.1.1_Linux_x86_install-deb_en-GB.tar.gz
cd en-GB/DEBS
sudo dpkg -i *.deb
cd desktop-integration
sudo dpkg -i *.deb
```

### Install 64 bit OpenOffice in Ubuntu and Linux Mint

Go to the Downloads directory.

```
cd ~/Downloads
```

Download the installation files.

```
wget sourceforge.net/projects/openofficeorg.mirror/files/4.1.1/binaries/en-GB/Apache_OpenOffice_4.1.1_Linux_x86-64_install-deb_en-GB.tar.gz
```

Extract and install the downloaded files.

```
tar -xzvf Apache_OpenOffice_4.1.1_Linux_x86-64_install-deb_en-GB.tar.gz
cd en-GB/DEBS
sudo dpkg -i *.deb
cd desktop-integration
sudo dpkg -i *.deb
```

Would it not have been better if OpenOffice was simply included in the repository sources? 

📋

Remember that we have installed en-GB, i.e. British version of OpenOffice. If you want the US version, replace GB with US in the above commands and it should be fine.

Anyways, if you want to get rid of Apache OpenOffice and move back to LibreOffice, we are going to see how to do that in the next section.

### Uninstall OpenOffice

Simply use the commands below to remove OpenOffice from Ubuntu and Linux Mint:

```
sudo apt-get purge openoffice*.* && sudo apt-get autoremove
```

### Re-install LibreOffice

To [install LibreOffice](https://itsfoss.com/install-libreoffice-ubuntu/) again, use the command below:

```
sudo apt-get install libreoffice
```

## OpenOffice instead of LibreOffice?? No way!!!

Do you see how easy it is to install [LibreOffice compared to OpenOffice](https://itsfoss.com/libreoffice-vs-openoffice/)?

I hope this post helped you to install OpenOffice in Ubuntu. Any questions or suggestions are always welcome.