Can't get Wine to work
Re: Can't get Wine to work
Try using the full path to wherever you installed the wine binary.
Re: Can't get Wine to work
How do I find this path? Is it the path to folder where I ran ./configure, make and make install?
Re: Can't get Wine to work
Normally self-compiled Wine would be installed to /usr/local/bin, unless you specified some other prefix when you ran ./configure. If you're not sure, use locate to find it.
Re: Can't get Wine to work
There is indeed a file called wine64, but when i open the installer with it, it downloaded 2 missing packages and then just stoped. When i rerun it, nothing happens...
Re: Can't get Wine to work
The two downloads were probably wine-gecko and wine-mono. If you don't have them installed, they are automatically downloaded when a wineprefix is created. So that part is normal.
What's not normal is only having wine64 and not wine. It sounds like you only built 64 bit Wine; apparently you didn't actually read this thread before deciding to post in it. Go back and read the first part of this thread; it will explain what you did wrong and what you need to do.
What's not normal is only having wine64 and not wine. It sounds like you only built 64 bit Wine; apparently you didn't actually read this thread before deciding to post in it. Go back and read the first part of this thread; it will explain what you did wrong and what you need to do.
Re: Can't get Wine to work
You're right, I should've read it, I assumed I only need 64 Bit wine, since CentOS 7 appears to be "pure" x86_64 OS. I'm following the instructions on http://wiki.winehq.org/Wine64 now, but I ran into another problem:
When running configure.... --with-wine64=..../wine64 I didnt know where to find the folder/file so i used locate wine64, which returned /home/Julius/Downloads/wine-1.7.28/wine64, so I used this path. However the configure fails with the following:
I manually navigated to .../wine-1.7.28 just to see, that there is no folder/file named wine64.... Why did locate return this path?
When running configure.... --with-wine64=..../wine64 I didnt know where to find the folder/file so i used locate wine64, which returned /home/Julius/Downloads/wine-1.7.28/wine64, so I used this path. However the configure fails with the following:
Code: Select all
checking for the directory containing the Wine tools... configure: error: could not find Wine tools in /home/Julius/Downloads/wine-1.7.28/wine64
Re: Can't get Wine to work
You were supposed to have created it when building 64 bit Wine. Sounds like you're skipping over instructions again. Follow all the instructions in the "Building a shared WoW64 setup (most likely what you want)" section. That means you have to build 64 bit Wine again, exactly as specified, and then build 32 bit.When running configure.... --with-wine64=..../wine64 I didnt know where to find the folder/file
FYI, if you don't have any 64 bit Windows apps you want to run, you don't need 64 bit Wine at all. Building pure 32 bit Wine is much easier.
Re: Can't get Wine to work
I DID follow the instructions as shown, making the directories ./configure the 64 Bit from the new wine64 folder and then do the same for 32 bit in its folder, this is were the error occurs. Is it even possible to only run 32 Bit wine on this 64 Bit OS?dimesio wrote:You were supposed to have created it when building 64 bit Wine. Sounds like you're skipping over instructions again. Follow all the instructions in the "Building a shared WoW64 setup (most likely what you want)" section. That means you have to build 64 bit Wine again, exactly as specified, and then build 32 bit.
FYI, if you don't have any 64 bit Windows apps you want to run, you don't need 64 bit Wine at all. Building pure 32 bit Wine is much easier.
Re: Can't get Wine to work
It's certainly possible to run 32 bit Wine on a 64 bit OS. Before 64 bit Wine existed, that's what everyone did, and 32 bit is still the default for ./configure. When I run a regression test or test a patch, that's all I build; WoW64 is too much trouble to mess with if I don't have to.Is it even possible to only run 32 Bit wine on this 64 Bit OS?
Now, whether you can do it on CentOS, I don't know, because whether you have pure 32 bit Wine or WoW64, you still need to install Wine's 32 bit dependencies. My understanding is that CentOS does provide a basic 32 bit build environment, but I don't know if that includes all of Wine's dependencies. The person who started this thread did report success, but gave no details as to what packages he installed.
As far as ./configure not finding wine64, this is what you say you typed:
and this is what the wiki says to do:configure.... --with-wine64=..../wine64
Code: Select all
../wine-git/configure --with-wine64=../wine64
Re: Can't get Wine to work
Sorry, that might have been unclear. Assuming that I'm in /home/wine32 I ran:
Code: Select all
/home/Julius/Downloads/wine-1.7.28/configure --with-wine64=/home/Julius/Downloads/wine-1.7.28/wine64
Re: Can't get Wine to work
You said yourself that that directory doesn't exist.
What exactly did you type for the first part of the instructions--creating the wine64 directory and running make to build 64 bit Wine?
What exactly did you type for the first part of the instructions--creating the wine64 directory and running make to build 64 bit Wine?
Re: Can't get Wine to work
Assuming I'm in /home :
Code: Select all
mkdir wine64
cd wine64
/home/Julius/Downloads/wine-1.7.28/configure --enable-win64
make > make.log 2>&1
Re: Can't get Wine to work
You should be in $HOME, not /home. Assuming $HOME is /home/Julius in your case, the directory you create for the 64 bit build should be /home/Julius/wine64, and that's the directory you need to point the 32 bit build to.
Follow the instructions exactly. The only thing you need to change from what is in the wiki is the path to the source.
Follow the instructions exactly. The only thing you need to change from what is in the wiki is the path to the source.
Re: Can't get Wine to work
Looks like the folders were at the right spot, i just had a typo in there, probably missed the /Julius/ part...
Anyway, after i ran configure in the wine32 folder it gave me a bunch of 'missing these and those devel files' messages, similar to the first ones, just for 32 Bit this time. I fixed most of them so it looked the those from 64 Bit. I ran make and make install in both folders without further complications.
Now I could even run the Hearthstone Installer via wine Installer.exe (The 2 packages it downloaded I mentioned were Wine Mono and Wine Gecko apparently), BUT after the installation, which seemed to be running fine (seemed, cause there were quite a few error messages in the console during the installation, it finished without complain though), all I can see is a white window and A LOT (as in pages per second) of console output a la
Should I fix ALL the missing packages like libmpg123 and such after all or what could this cause?
Oh, and the installation of (at least one of) those 2 packages does not seem to be successful, since it downloaded the second one twice.
Anyway, after i ran configure in the wine32 folder it gave me a bunch of 'missing these and those devel files' messages, similar to the first ones, just for 32 Bit this time. I fixed most of them so it looked the those from 64 Bit. I ran make and make install in both folders without further complications.
Now I could even run the Hearthstone Installer via wine Installer.exe (The 2 packages it downloaded I mentioned were Wine Mono and Wine Gecko apparently), BUT after the installation, which seemed to be running fine (seemed, cause there were quite a few error messages in the console during the installation, it finished without complain though), all I can see is a white window and A LOT (as in pages per second) of console output a la
Code: Select all
@ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:unload_numbered_array >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from glDisableVertexAttribArrayARB(reg) @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4032
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
err:d3d:load_numbered_arrays >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from Loading numbered arrays @ /home/Julius/Downloads/wine-1.7.28/dlls/wined3d/state.c / 4241
Oh, and the installation of (at least one of) those 2 packages does not seem to be successful, since it downloaded the second one twice.
Re: Can't get Wine to work
Post the full terminal output, including the command used to run the game.
Missing libmpg123 wouldn't cause graphic problems. What else did ./configure complain about?
Missing libmpg123 wouldn't cause graphic problems. What else did ./configure complain about?
No; it downloaded both 32 and 64 bit wine-gecko. That's normal. Wine-mono is not architecture-specific, so it only has one package.Oh, and the installation of (at least one of) those 2 packages does not seem to be successful, since it downloaded the second one twice.
Re: Can't get Wine to work
I thought of one more thing: you didn't mention what graphics card/driver you have, but there is a known issue with Battle.net and the Intel driver. https://bugs.freedesktop.org/show_bug.cgi?id=84651
Re: Can't get Wine to work
I am indeed using bumblebee and used the integrated intel graphics when i tried to open it, however it did not change after changing to the dedicated nvidia card.
This is the output of a few minutes, I cancelled after about 2-3 min, since nothing was happening:
This is the output of a few minutes, I cancelled after about 2-3 min, since nothing was happening:
Code: Select all
[root@localhost Downloads]# wine Hearthstone-Setup-enGB.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
[root@localhost Downloads]# clear
[3;J
[root@localhost Downloads]# wine Hearthstone-Setup-enGB.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:wininet:InternetSetOptionW Option 77 STUB
GIF89aÇ ,D;fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:wininet:InternetSetOptionW Option 77 STUB
err:wininet:open_http_connection create_netconn failed: 12029
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
p11-kit: couldn't load module: /usr/lib/pkcs11/p11-kit-trust.so: /usr/lib/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
p11-kit: couldn't load module: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory
fixme:wininet:InternetSetOptionW Option 77 STUB
err:wininet:open_http_connection create_netconn failed: 12029
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7d909544, 0x12a880, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7d909544
fixme:wbemprox:client_security_SetBlanket 0x7d909544, 0x12f188, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7d909544
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:wininet:InternetSetOptionW Option 77 STUB
fixme:hnetcfg:fw_profile_get_NotificationsDisabled 0x130b40, 0x556e540
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
GIF89aÇ ,D;fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
p11-kit: couldn't load module: /usr/lib/pkcs11/p11-kit-trust.so: /usr/lib/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
p11-kit: couldn't load module: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fd00 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fba0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33faa0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fba8 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fd50 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f088 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f118 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f678 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f678 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f598 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f634 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f634 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f5ac 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f654 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f654 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f5b8 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f654 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f5ac 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f654 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f640 1 C) semi-stub
fixme:msvcrt:type_info_name_internal_method type_info_node parameter ignored
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f6d0 1 C) semi-stub
fixme:system:SetProcessDPIAware stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:winsock:WSALookupServiceBeginW (0x2aee5f0 0x00000ff0 0x2aee638) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x2aee4c8, overlapped 0x1a63a08): stub
fixme:winsock:WSALookupServiceBeginW (0x2aee634 0x00000ff0 0x2aee67c) Stub!
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2>
</body></html>
[root@localhost Downloads]# fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33ef20 1 C) semi-stub
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:font:RemoveFontMemResourceEx (0x84904311) stub
fixme:font:RemoveFontMemResourceEx (0x84932579) stub
fixme:font:RemoveFontMemResourceEx (0x84928f91) stub
err:module:import_dll Library Qt5Svg.dll (which is needed by L"C:\\Program Files (x86)\\Battle.net\\Battle.net.5191\\imageformats\\qsvg.dll") not found
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
fixme:wbemprox:wbem_locator_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented
p11-kit: couldn't load module: /usr/lib/pkcs11/p11-kit-trust.so: /usr/lib/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
p11-kit: couldn't load module: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory
fixme:shell:SetCurrentProcessExplicitAppUserModelID L"BlizzardEntertainment.Battlenet.beta": stub
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:msg:ChangeWindowMessageFilterEx 0x30050 c057 1 (nil)
fixme:systray:wine_notify_icon unhandled tray message: 4
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:dwmapi:DwmIsCompositionEnabled 0x33aac8
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x100a0 0x00000000
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33a3e8,0x00000000), stub!
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented, *shared_handle (nil).
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:d3d9:Direct3DShaderValidatorCreate9 stub
fixme:d3d:state_lastpixel Last Pixel Drawing Disabled, not handled yet
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:uniscribe:ScriptShapeOpenType Ranges not supported yet
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wtsapi:WTSUnRegisterSessionNotification Stub 0x100a0
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x1a63a08): stub
fixme:font:RemoveFontMemResourceEx (0x849c7191) stub
fixme:font:RemoveFontMemResourceEx (0x849fdbf9) stub
fixme:font:RemoveFontMemResourceEx (0x849ebc11) stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x24efbb8 1 C) semi-stub
fixme:msvcrt:__clean_type_info_names_internal (0x3d0c9098) stub
fixme:msvcrt:__clean_type_info_names_internal (0x5fe341c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x4b8d81c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x424341c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x415c79c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x40f73fc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x40b340c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x4076434) stub
fixme:msvcrt:__clean_type_info_names_internal (0x40663fc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1f839cc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x6102573c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x37d5bc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x65412a0c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x13d658c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x662643bc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x640a67ec) stub
fixme:msvcrt:__clean_type_info_names_internal (0x10a755c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x6744ee0c) stub
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
Re: Can't get Wine to work
Never run Wine as root. Delete the wineprefix and start over as a normal user. http://wiki.winehq.org/FAQ#run_as_rootjevvels wrote:Code: Select all
[root@localhost Downloads]# wine Hearthstone-Setup-enGB.exe
Did you set the Windows version to Windows 7 in winecfg? If you did, set it back to XP. https://bugs.winehq.org/show_bug.cgi?id=37354Code: Select all
err:module:import_dll Library Qt5Svg.dll (which is needed by L"C:\\Program Files (x86)\\Battle.net\\Battle.net.5191\\imageformats\\qsvg.dll") not found
Re: Can't get Wine to work
Running it as normal user resulted in the same white screen as before.
What do you mean with that exactly?Delete the wineprefix
I dont even know where this file is, but just in case, where can I find it, so I can check the setting?Did you set the Windows version to Windows 7 in winecfg?
Re: Can't get Wine to work
The questions you are asking about wineprefixes and winecfg are both basic, how-to-use-Wine questions. This information is documented in the FAQ and the Wine User Guide. Please read them.
Regarding Hearthstone, it has multiple known bugs. Follow the Howto in the AppDB. https://appdb.winehq.org/objectManager. ... &iId=30038
Regarding Hearthstone, it has multiple known bugs. Follow the Howto in the AppDB. https://appdb.winehq.org/objectManager. ... &iId=30038
Re: Can't get Wine to work
I've read up on it and did as you said, results remain the same...
Re: Can't get Wine to work
Your results are consistent with what the AppDB says.