Program don't work

Questions about Wine on Linux
Locked
gerraour
Newbie
Newbie
Posts: 1
Joined: Thu Oct 19, 2017 9:55 am

Program don't work

Post by gerraour »

My teacher gave me this program that contains all of questions that i have to learn for final exam. its in .exe so i had to run it with line.
i ran it with terminal but it gave me errors. here.

Code: Select all

gerraourl33t@gerraourl33t /media/gerraourl33t/MASTER UNBK 2017 $ wine mulai.exe
fixme:ntoskrnl:ExInitializeResourceLite stub: 0x11439a
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x1143f2
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x1143fe
fixme:ntoskrnl:KeInitializeEvent stub: 0x114406 1 1
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x114416
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x1143e6
fixme:ntoskrnl:ExInitializeZone stub: 0x1143d6, 192, 0x114770, 24584
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x868740
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x86873c
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x868744
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x868748
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x86874c
fixme:ntoskrnl:KeInitializeMutex stub: 0x95249c, 1
fixme:ntoskrnl:KeInitializeEvent stub: 0x86872c 1 0
fixme:ntoskrnl:IoInitializeTimer stub: 0x866020, 0x74c3d0, 0x866020
fixme:ntoskrnl:IoStartTimer stub: 0x866020
fixme:ntoskrnl:KeWaitForSingleObject stub: 0x86872c, 0, 0, 0, (nil)
fixme:ntoskrnl:PsTerminateSystemThread stub: 0
fixme:olepicture:OleLoadPictureEx (0x99e114,251264,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32fa10), partially implemented.
fixme:olepicture:OLEPictureImpl_SaveAsFile (0x154678)->(0x195b40, 0, (nil)), hacked stub.
gerraourl33t@gerraourl33t /media/gerraourl33t/MASTER UNBK 2017 $ fixme:ntoskrnl:ExAcquireResourceExclusiveLite :0x11439a 1 stub
fixme:ntoskrnl:KeGetCurrentThread () stub
fixme:ntoskrnl:ExReleaseResourceForThreadLite stub: 0x11439a 0
fixme:ntoskrnl:ExDeleteResourceLite (0x11439a): stub
fixme:ntoskrnl:KeWaitForSingleObject stub: 0x114406, 0, 0, 0, (nil)
fixme:ntoskrnl:KeSetEvent (0x114406, 0, 0): stub
Help please
business_kid
Level 2
Level 2
Posts: 12
Joined: Tue Jan 20, 2015 4:22 pm

Re: Program don't work

Post by business_kid »

There's a useful section on debugging wine in the wiki. You could also try these in a terminal
1. wine --check-libs |grep found
Act on anything missing. The correcty output is no output.

2. wine <path-to-your-program>/program.exe >debug.log 2>&1 and have a gander at debug.log after it pukes.
Locked