We've only installed the "wine" package from Ubuntu repositories.
Everything I try and run keeps nagging me with:
It is not clear if (or I'm wishfully thinking) this is a suggestion or required. We are running on a small embedded device with only an 8GB SDD for a hard drive. We have the space to install 64-bit wine, but not enough room for wine32.it looks like wine32 is missing, you should install it.
multiarch needs to be enabled first. as root, please
execute "dpkg --add-architecture i386 && apt-get update &&
apt-get install wine32:i386"
The reason I ask - we have a diagnostics program that is rarely needed but critical when it is. We converted it from win32 to win64 hoping that would do the trick. We do not really have the skills/time to convert it to a pure Linux app at this time.
Our first attempts (other than the wine32 nag) suggested we were missing DLLs. One was from the "Microsoft Visual C++ Redistributable" so we tried to install that. Here is what we get:
Code: Select all
n2kowner@host:~$ wine VC_redist.x64.exe
it looks like wine32 is missing, you should install it.
multiarch needs to be enabled first. as root, please
execute "dpkg --add-architecture i386 && apt-get update &&
apt-get install wine32:i386"
0110:err:environ:init_peb starting L"Z:\\home\\n2kowner\\VC_redist.x64.exe" in experimental wow64 mode
wine: failed to load L"\\??\\C:\\windows\\syswow64\\ntdll.dll" error c0000135
Application could not be started, or no application associated with the specified file.
ShellExecuteEx failed: Internal error.
n2kowner@host:~$
Thank you much - Richard