Installing MSOffice 2007 or MSOffice 2010 Successfully on Antergos Arch linux etc..
octobre 2017
Installing MSOffice 2007 or MSOffice 2010 Successfully on Antergos
source – https://forum.antergos.com/topic/7494/installing-msoffice-2007-or-msoffice-2010-successfully-on-antergos
- First install all the packages for Wine
#sudo pacman -S wine winetricks wine_gecko wine-mono lib32-ncurses
- Then install ttf-ms-fonts for microsoft fonts support
#sudo pacman -S ttf-ms-fonts
OR
#yaourt -S ttf-ms-fonts --noconfirm
- After that, Set up Wine Architecture and Wine Prefix as win32
#WINEARCH=win32 WINEPREFIX=~/wine32 winecfg
- Then, install msxml3 for msoffice2007 and msxml3&msxml6 for msoffice 2010
(for msoffice 2007 )
#WINEPREFIX=~/wine32 winetricks msxml3
(for msoffice2010)
#WINEPREFIX=~/wine32 winetricks msxml6
- Now, install samba package for winbind package as the lib32-libwbclient(winbind) package is discontinued in arch linux
#sudo pacman -S samba
- Now, install the msoffice by running setup.exe file through wine.
#WINEPREFIX=~/wine32 wine /path/to/msoffice/folder/setup.exe
Example:
#WINEPREFIX=~/wine32 wine /home/anyone/msoffice2010/MS\ Office\ 2010/MS\ Office\ 2010/setup.exe
Now, MSOffice is installed on your arch linux system.