Description:
It's a very rare case when I do need a Windows app on my Linux host (not in a VM with full fledged Windows OS). But such rare case happened, because I need even more rarest peace of software (Linux is not supported, of course). Two things I had to fix:
Security protection issue:
Error at hooking API "LdrFindResource_U"
Dumping first 32 bytes:
8B FF 55 8B EC 56 8D 45 A0 53 83 C4 80 C7 45 A4
90 8D F7 7B 89 44 24 04 8D 45 B0 89 04 24 E8 5D
the real reason was my ptrace settings:
kernel.yama.ptrace_scope=1 # it works
kernel.yama.ptrace_scope=2 # didn't work
Graphic subsystem issue:
Assertion failed!
Expression: "!status && "vkCreateSemaphore""
the real reason of random crashes was buggy renderer:
winetricks renderer=gdi # it works
winetricks renderer=gl # didn't work
winetricks renderer=vulkan # didn't work