Wine 5.9 Development don't run in Ubuntu 20.04

Questions about Wine on Linux
Locked
macuso
Newbie
Newbie
Posts: 3
Joined: Sat May 30, 2020 11:43 am

Wine 5.9 Development don't run in Ubuntu 20.04

Post by macuso »

I do installed the latest development version of Wine 5.9 on my Ubuntu 20.04 machine and every time I do try to start any windows .exe file I do get the following error message:

Code: Select all

002c:err:module:__wine_process_init failed to load L"C:\\windows\\system32\\wineboot.exe", error c0000018
0024:err:environ:run_wineboot failed to start wineboot c0000018
0024:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0034:err:module:__wine_process_init failed to load L"C:\\windows\\system32\\explorer.exe", error c0000018
003c:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
003c:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded.
003c:err:winediag:nodrv_CreateWindow The explorer process failed to start.
Please help to fix this problem.
Seda
Level 2
Level 2
Posts: 17
Joined: Tue Jan 07, 2014 9:47 am

Re: Wine 5.9 Development don't run in Ubuntu 20.04

Post by Seda »

You're getting what I and quite a few others have ran into;
viewtopic.php?f=8&t=33936

The bug report is here;
https://bugs.winehq.org/show_bug.cgi?id=49208

It's been marked as fixed so I guess the next Wine release should work, try downgrade until then?
macuso
Newbie
Newbie
Posts: 3
Joined: Sat May 30, 2020 11:43 am

Re: Wine 5.9 Development don't run in Ubuntu 20.04

Post by macuso »

Thank you for reply.

I do need at least Wine5.8 as seems that this version have some fixes for Abbyy FineReader, a software that I need to run on my machine.

Reading the bug-report, seems that the version 5.8 devel don't have the bug mentioned in this thread, but I don't know how to install this specific version of Wine.

Please help regarding installation of 5.8 devel branch.
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Wine 5.9 Development don't run in Ubuntu 20.04

Post by Bob Wya »

macuso wrote: Sun May 31, 2020 1:27 am ...
Reading the bug-report, seems that the version 5.8 devel doesn't have the bug mentioned in this thread, but I don't know how to install this specific version of Wine.

Please help regarding installation of 5.8 devel branch.
The bug actually depends on the compiler used (mingw vs winegcc) for the library files, build flags, etc. It's purely about a critical file (kernelbase.dll) not fitting into a specific size of virtual memory space. It does not effect a specific version of Wine. It's more just that recent Wine versions have had more functionality moved into the kernel file - hence leading to the overflow.

Wine 5.10 will release with a "proper" workaround - allocating more virtual memory address space for the kernel library file - kernel32: Leave some more space for kernelbase.

Bob
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Wine 5.9 Development don't run in Ubuntu 20.04

Post by jkfloris »

macuso wrote: Sat May 30, 2020 11:48 am I do installed the latest development version of Wine 5.9 on my Ubuntu 20.04 machine and every time I do try to start any windows .exe file I do get the following error message:
..
Please help to fix this problem.
The following two commands should work:

Code: Select all

sudo strip /opt/wine-devel/lib64/wine/kernelbase.dll
sudo strip /opt/wine-devel/lib/wine/kernelbase.dll
dsoul
Level 1
Level 1
Posts: 8
Joined: Sat May 02, 2020 10:35 am

Re: Wine 5.9 Development don't run in Ubuntu 20.04

Post by dsoul »

On Fedora 32
winecfg
002c:fixme:winediag:__wine_start_process Wine Staging 5.9 is a testing version containing experimental patches.
002c:fixme:winediag:__wine_start_process Please mention your exact version when filing bug reports on winehq.org.
0024:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0040:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded.
0040:err:winediag:nodrv_CreateWindow The explorer process failed to start.
0040:err:ole:apartment_createwindowifneeded CreateWindow failed with error 0
0040:err:ole:apartment_createwindowifneeded CreateWindow failed with error 0
0040:err:ole:apartment_createwindowifneeded CreateWindow failed with error 14007
0040:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hres=0x800736b7
0040:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, 800736b7
0040:err:ole:get_local_server_stream Failed: 800736b7
0048:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0048:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded.
0048:err:winediag:nodrv_CreateWindow The explorer process failed to start.
Locked