how to set up wine debugger?

Asked by vfmla

hello ubuntu community members!

I was trying to install a game with wine. After installing wine, I went on to install the game as instructed in wine documentation here
https://help.ubuntu.com/community/Wine

a long repetition of lines starting with err:ole: (like the one below) and "fix me"s ensued, and I accidentally quit the process while copy-pasting. so it looked like below at the end:

err:ole:CoGetClassObject class {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} not registered
err:ole:CoGetClassObject no class object {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} could be created for context 0x1
fixme:hnetcfg:fw_ports_get__NewEnum 0x182a30, 0xbde650
err:ole:CoGetClassObject class {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} not registered
err:ole:CoGetClassObject no class object {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} could be created for context 0x1
err:ole:CoGetClassObject class {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} not registered
err:ole:CoGetClassObject no class object {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} could be created for context 0x1
err:winediag:FILE_CreateFile Too many open files, ulimit -n probably needs to be increased
wine: Unhandled page fault on read access to 0x00000000 at address 0x10086ab4 (thread 0035), starting debugger...
err:seh:start_debugger Couldn't start debugger ("winedbg --auto 40 68") (87)
Read the Wine Developers Guide on how to set up winedbg or another debugger

then I typed in again wine gamename.exe, and the following was shown with this command:

fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dda00 0x6dda08
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dda88
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dd960 0x6dd968
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dd9e8
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dda08 0x6dda10
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dda90
wine: cannot find L"C:\\windows\\system32\\shaiya_us_downloader.exe"
exalted@exalted:~$ fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dd058 0x6dd060
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dd0e0
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dcfb8 0x6dcfc0
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dd040
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0x6dd060 0x6dd068
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0x6dd0e8
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0xaddc30 0xaddc38
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0xaddcb8
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0xaddb90 0xaddb98
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0xaddc18
fixme:wtsapi:WTSEnumerateSessionsA Stub (nil) 0x00000000 0x00000001 0xaddc38 0xaddc40
fixme:wtsapi:WTSFreeMemory Stub (nil)
fixme:wtsapi:WTSQueryUserToken 0 0xaddcc0
fixme:hnetcfg:fw_ports_get__NewEnum 0x139250, 0xbde5a0
err:ole:CoGetClassObject class {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} not registered
err:ole:CoGetClassObject no class object {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} could be created for context 0x1
err:ole:CoGetClassObject class {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} not registered
err:ole:CoGetClassObject no class object {0ca545c6-37ad-4a6c-bf92-9f7610067ef5} could be created for context 0x1

how can I do something, or set up wine debugger to get the game running?

many thanks and a very pleasant weekend!!!! :))

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu wine Edit question
Assignee:
No assignee Edit question
Solved by:
vfmla
Solved:
Last query:
Last reply:
Revision history for this message
vfmla (bernuce) said :
#1

sorry, if needed to add, the first group of lines appeared after typing wine gamename.exe.

Revision history for this message
marcus aurelius (adbiz) said :
#2

try running the game under the gnome gui by right clicking on the game and selecting open with wine to see what happens.

if that doesn't work, then the game doesn't work on wine.

Revision history for this message
mycae (mycae) said :
#3

Debuggers are only useful if you can modify the wine source code, or to provide information to others who can. It will not help in getting your game running, unless you happen to have a friendly wine developer at hand, or if you know how to do this yourself.

If you don't know what GDB is, and how to use it, it is unlikely that you will solve your immediate problem with a debugger.

Revision history for this message
vfmla (bernuce) said :
#4

thank you for your comments!

marcus, thank you for the insight, when I right-clicked on the .exe file of the game, the window "Blocked:wine start/unix" popped, saying "The file "game.exe" is not marked as executable. If this was downloaded or copied from an untrusted source, it may be dangerous to run. For more details, read about the executable bit."

there I clicked on the hyperlink "executable bit" and was sent to "Security/ExecutableBit" page of Ubuntu. Clicking on "user comments" below the page, I got to http://bit.ly/gm6xoc, and there was the information how to install untrusted software.

I did as was written, and the game setup window opened, AGBs agreed and download started, ending with "not installed". I tried two or three times but the same. it didn't finish installation.

any suggestions what to do at this point?

thanks so much!

Revision history for this message
vfmla (bernuce) said :
#5