unusual error with wine and steam games

Questions about Wine on Linux
Locked
sparx12
Newbie
Newbie
Posts: 1
Joined: Fri Jun 12, 2020 6:45 pm

unusual error with wine and steam games

Post by sparx12 »

Hi, i am trying to play steam games on wine. But when i launch counter-strike:Global Offensive this error the screen appears and then closes... here is the debug log file below.
https://pastebin.com/S84FuKtz

and well i do not understand a lot of it but what does this line mean?
https://imgur.com/2vTN8zt

what does:
0240:fixme:process:ProcessIdToSessionId Unsupported for other process 20
0240:fixme:ver:GetCurrentPackageId (0031FE94 00000000): stub

this above error log means?
where can i read in depth detail about error logs generated by wine.Like some developer guide.
spoon0042
Level 6
Level 6
Posts: 572
Joined: Thu Dec 24, 2009 11:00 am

Re: unusual error with wine and steam games

Post by spoon0042 »

From here: https://wiki.winehq.org/Debug_Channels
class is optional and can be one of the following: trace, warn, err, or fixme. These are ordered roughly from least to most severe. trace is used for code paths that occur as part of normal operation. warn is generally used for code paths that may cause failures, but are likely to be well-handled by a higher-level component. err is used for code paths that are likely to cause failures. fixme is used for code paths that are unimplemented in Wine. By default, only err and fixme are enabled. If a channel is specified without a class, all classes are enabled.
So fixme can generally be ignored unless there actually is some problem in which case it hopefully hints at what the problem could be, such as some function that needs to be implemented in wine.

This line though you should do what it says:
0024:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
It may not make a difference but it's good to fix that. Also PlayOnLinux isn't supported here, you'll want to install the winehq packages if you need further help: https://wiki.winehq.org/Download

As for CSGO there are some notes here: https://appdb.winehq.org/objectManager. ... &iId=26545
Including that there is a linux version...
Locked