Application Details:
Version: | 2013 (32 bit) |
License: | Retail |
URL: | http://www.microsoft.com/word/ |
Votes: | 1 |
Latest Rating: | Bronze |
Latest Wine Version Tested: | 5.9 |
Maintainers: About Maintainership
What works
Build a docker image called wine:latest with this Dockerfile
FROM fedora RUN useradd -U -m user; \ dnf install -y wine; \ dnf clean all; \ USER user WORKDIR /home/user
Build a docker image called wine:3.0 with this Dockerfile
FROM fedora:26 RUN useradd -U -m user; \ curl -o /etc/yum.repos.d/winehq.repo https://dl.winehq.org/wine-builds/fedora/26/winehq.repo; \ dnf install -y winehq-stable mesa-dri-drivers.x86_64 mesa-dri-drivers.i686 /usr/bin/ntlm_auth; \ dnf clean all; \ mkdir -p /opt/wine-stable/share/wine/mono /opt/wine-stable/share/wine/gecko; \ curl -o /opt/wine-stable/share/wine/mono/wine-mono-4.7.1.msi -LJ https://dl.winehq.org/wine/wine-mono/4.7.1/wine-mono-4.7.1.msi; \ curl -o /opt/wine-stable/share/wine/gecko/wine_gecko-2.47-x86_64.msi -LJ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi; \ curl -o /opt/wine-stable/share/wine/gecko/wine_gecko-2.47-x86.msi -LJ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86.msi USER user WORKDIR /home/user
Install with
docker run --rm -it -v /tmp/.X11-unix/X0:/tmp/.X11-unix/X0 --device=/dev/dri --security-opt="label=disable" --ipc=host -v ~/wine/office2013:/home/user/.wine -v /media/to/office:/mnt:ro --env WINEARCH=win32 --env DISPLAY=:0 wine:latest wine 'Z:\mnt\setup.exe'
Run with
docker run --rm -it -v /tmp/.X11-unix/X0:/tmp/.X11-unix/X0 --device=/dev/dri --security-opt="label=disable" --ipc=host -v ~/wine/office2013:/home/user/.wine --env WINEARCH=win32 --env DISPLAY=:0 wine:3.0 wine 'C:\Program Files\Microsoft Office\Office15\WINWORD.EXE'
Typing characters succeeds with no problem
What does not
Installation fails with errors like "MSI extraction error" under wine:3.0, screen keeps black under wine:latest after installation
Program crash very often after clicking into the file menu, under wine:3.0
Workarounds
Use wine-3.4 for installation, as described above
What was not tested
Anything else
Hardware tested
Graphics:
Additional Comments
Actually wine-3.0 and wine-3.4 are both used. Currently wine-3.4 is the latest release in Fedora's repo and wine-3.0 is the winehq-stable package in the repo of winehq.org
The OS running docker is Fedora 27
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Show | Gentoo Linux x86_64 | Jun 02 2020 | 5.9 | Yes | Yes | Yes | Bronze | kebab | |
Show | Ubuntu 18.04 "Bionic" amd64 (+variants like Kubuntu) | Oct 29 2018 | 3.19 | Yes | Yes | No | Platinum | Jonathan | |
Show | Arch Linux x86_64 | Jun 24 2018 | 3.11 | Yes | Yes | Yes | Bronze | Isira Seneviratne | |
Current | Fedora 27 x86_64 | Apr 01 2018 | 3.0 | No, but has workaround | Yes | Yes | Bronze | XU Guang-zhao | |
Show | Ubuntu 17.10 "Artful" amd64 (+variants like Kubuntu) | Jan 19 2018 | 3.0 | Yes | Yes | Yes | Silver | Raymonf |
Bug # | Description | Status | Resolution | Other apps affected |
14980 | Wine does not automatically use the RichEdit Control 'riched20' installed by Microsoft Office 2003/2007/2010/2013/2016 (RichEdit v5.0+ requires native-only override) | NEW | View | |
38554 | MS Office Word 2013: Word is not aware of keyboard layout change | UNCONFIRMED | View |
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by Niklas on Wednesday April 24th 2019, 7:39
sudo pacman -S lib32-libxinerama lib32-libxcomposite lib32-v4l-utils