How to Install Microsoft Office on Ubuntu 22.04/24.04

Although Microsoft Office is primarily designed for Windows, it is still possible to run this suite on Ubuntu 20.04, 22.04, and 24.04 using various methods. In this guide, we will explore different ways to install and use Microsoft Office on your Ubuntu system, ensuring compatibility and optimal performance.

install Microsoft Office Ubuntu

6 Steps to Install Office 2016 on Ubuntu

Step 1: Enable 32-bit Support

Office runs on Wine, a compatibility layer that allows Windows applications to run on Linux. Wine supports a 32-bit Windows environment, so you need to enable support for the i386 architecture to install 32-bit applications using the following command:

sudo dpkg --add-architecture i386

Step 2: Install Wine on Ubuntu 20.04 (Only for 20.04)

Installing Microsoft Office on Ubuntu 22.04 does not require WineHQ, so you can skip this step if you’re using Ubuntu 22.04.

First, add the Wine GPG key to enable package installation from Wine through PlayOnLinux.

wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key

After adding the GPG key, the next step is to add the official Wine repository for Ubuntu 20.04 LTS:

sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'

Run the following command to install the stable version of Wine on your system:

sudo apt install --install-recommends winehq-stable

Step 3: Install Winbind and Winetricks

Office requires certain libraries, such as fonts and necessary dependencies. Additionally, it also requires winbind and winetricks, so you need to install these two packages.

sudo apt update && sudo apt upgrade
sudo apt-get install winbind
sudo apt-get install -y winetricks

Step 4: Install PlayOnLinux

Wine does not have a graphical interface, so we can use PlayOnLinux โ€“ a tool that simplifies the installation of .exe applications through a user-friendly interface.

Install PlayOnLinux using the command:

sudo apt install playonlinux

Step 5: Install Microsoft Office 2016 on Ubuntu

Prepare the Office 2016 Installer

If you donโ€™t have the installer yet, download Office 2016 [here (password: itsmeit.co)].

  • Open the Menu and search for “PlayOnLinux.” Click on the application to launch it.
  • Select the “+ Install” option, then click on “Office”. A list of applications compatible with Wine will appear.
  • Choose Microsoft Office 2016 (or use “Method B”). In this guide, we will install Microsoft Office 2016 using Method B.
  • Click “Install” to proceed.

Proceed with Office 2016 Installation

  1. Click “Next” and select “Use a setup file in my computer.”
  2. Locate the setup.exe file in the extracted Office2016-32bit folder, then click “Next.”
  3. The installation process will check for dependencies such as msxml6, mono, wine, etc.
  4. Keep clicking “Next” and “OK” until the installation begins.
  5. Once the installation process starts, follow the steps just as you would on Windows.
  6. Click “Next”, then “Continue” to confirm the Office installation on Ubuntu.

At this point, the installation of Office 2016 on Ubuntu is almost complete. Simply wait for the software to finish installing and click “Close” to complete the process.

Screenshots of the steps:

Step 6: Add Microsoft Office Icons to the Taskbar

  1. Click on the Menu, search for Microsoft Word or Excel, then right-click and select “Add to Favorites” for easy access from the taskbar.
  2. After successful installation, you will see icons on the screen such as Microsoft Word 2016.desktop, PowerPoint, OneNote, Outlook, and Excel.
  3. Right-click on these files and select “Allow launching” to display the icons just like in Windows.

Common Issues When Installing Office on Ubuntu

1. Error: โ€œWine has encountered a serious problemโ€

๐Ÿ” Cause:

  • The Wine version is incompatible with the Office version.
  • Missing required library packages.

๐Ÿ›  Solution:

Update Wine to the latest version:

sudo apt update && sudo apt install --install-recommends winehq-stable

Check and install 32-bit libraries if using a 64-bit system:

sudo dpkg --add-architecture i386; sudo apt update sudo apt install wine32

2. Unable to Open Word, Excel, or PowerPoint

๐Ÿ” Cause:

  • Missing fonts or .dll libraries.
  • Error due to missing winbind.

๐Ÿ›  Solution:

Install the winbind package (Step 3)

Install Microsoft fonts:

sudo apt install ttf-mscorefonts-installer

Run winetricks and install required libraries:

winetricks msxml6 riched20 gdiplus

3. Error: โ€œInstallation Failedโ€

๐Ÿ” Cause:

  • The installer is incompatible with the Wine version.
  • Missing execution permission for setup.exe.

๐Ÿ›  Solution:

  • Ensure setup.exe has execution permission: chmod +x setup.exe
  • Run the installation using: wine setup.exe
  • If the issue persists, try another PlayOnLinux installation method:
playonlinux --run "Microsoft Office 2016"

4. Office 2016 Runs Slow or Lags

๐Ÿ” Cause:

  • Wine is not optimized for performance.
  • The system has low RAM or a weak CPU.

๐Ÿ›  Solution:

Improve Wine performance using:

winetricks settings fontsmooth=rgb

Disable Ubuntu visual effects:

gsettings set org.gnome.desktop.interface enable-animations false

Increase virtual RAM in Wine: winecfg โ†’ Go to the “Libraries” tab, select gdiplus, and set it to “builtin, native.”

5. Unable to Save Files in Word or Excel

๐Ÿ” Cause:

  • Wine does not have permission to access folders.
  • PlayOnLinux configuration is corrupted.

๐Ÿ›  Solution:

  • Check folder access permissions: chmod -R 777 ~/Documents
  • If the issue persists, open Wine Configuration: winecfg โ†’ Go to the “Drives” tab, select “Z:”, and set it as the main directory path.

6. PlayOnLinux Does Not Recognize Office

๐Ÿ” Cause:

  • Incorrect Office installation or PlayOnLinux errors.

๐Ÿ›  Solution:

Remove PlayOnLinux configuration files:

rm -rf ~/.PlayOnLinux

Uninstall and reinstall PlayOnLinux:

sudo apt remove --purge playonlinux; sudo apt install playonlinux

While Microsoft Office can be successfully installed on Ubuntu/Linux and may meet some basic needs, it is not fully compatible. If you use Office for critical tasks, consider using LibreOffice, OnlyOffice, or Microsoft/Google’s online Office solutions.

Write a comment