Guide to Install Microsoft Office 2010 (32-bit) on Ubuntu 22.04 using Winetricks

Guide to Install Microsoft Office 2010 (32-bit) on Ubuntu 22.04 using Winetricks

Here’s a comprehensive guide to install Microsoft Office 2010 32-bit on Ubuntu 22.04 using Winetricks:

Prerequisites

First, let’s install the necessary packages:

1
2
sudo apt update
sudo apt install wine wine32 winetricks

Create a Dedicated Wine Prefix

It’s best to create a dedicated Wine prefix for Office:

1
2
3
export WINEPREFIX=/home/<username>/.office2010
export WINEARCH=win32
winecfg

When the Wine configuration window appears, you can simply close it. This step initializes the prefix.

Install Required Components with Winetricks

1
2
3
4
5
6
# Navigate to the correct directory
cd ~/.office2010

# Install required components
winetricks msxml6 dotnet20 dotnet40 corefonts
winetricks riched20 riched30 msxml3 msxml6 vcrun2005 vcrun2008

Configure Wine for Office

Set Windows version to Windows 7:

1
winetricks win7

Install Office 2010

Now you need your Microsoft Office 2010 installation files. Assuming you have the ISO file:

  1. Mount the ISO file:
    1
    2
    
    mkdir ~/office-iso
    sudo mount -o loop /path/to/office2010.iso ~/office-iso
    
  2. Run the installer:
    1
    2
    
    cd ~/office-iso
    wine setup.exe
    
  3. Follow the installation wizard:
    • Enter your product key when prompted
    • Choose the installation type (Typical is recommended)
    • Complete the installation process

If you have the Office installer in a different format (like extracted files), just navigate to that folder and run wine setup.exe.

Post-Installation Configuration

After installation, it’s a good idea to run the following:

1
2
winetricks oleaut32
winetricks mspatcha

Create Desktop Shortcuts

Create shortcuts for the Office applications:

1
2
3
4
5
6
7
8
9
cat > ~/Desktop/word.desktop << EOL
[Desktop Entry]
Name=Word 2010
Exec=env WINEPREFIX=~/.office2010 wine ~/.office2010/drive_c/Program\ Files/Microsoft\ Office/Office14/WINWORD.EXE
Type=Application
StartupNotify=true
Icon=winword
EOL
chmod +x ~/Desktop/word.desktop

You can create similar shortcuts for Excel, PowerPoint, etc. by replacing the executable name.

Troubleshooting

If you encounter issues:

  1. Installation fails: Try running winetricks jet40 before installing Office

  2. Office won’t start: Make sure all dependencies are installed:
    1
    
    winetricks ie8
    
  3. Font issues: Install additional fonts:
    1
    
    winetricks allfonts
    
  4. Activation issues: Office might need to be activated. Follow the prompts or use the telephone activation option.

Remember that performance may vary, and not all features might work perfectly. Wine is an emulation layer, so some Office functionality might be limited.