[GUIDE] Fix for random crashes in linux with wine
-
(This is based on pants guide)
If your game crashes with the erroreventfd: Too many open files
what fixed it for me was changing the start script a little bit:#!/bin/bash export WINEARCH=win64 export WINEPREFIX=~/.wine_plutonium export WINEESYNC=1 wine plutonium.exe
change line 4,
export WINEESYNC=1
toexport WINEFSYNC=1
so your start script would look like this:#!/bin/bash export WINEARCH=win64 export WINEPREFIX=~/.wine_plutonium export WINEFSYNC=1 wine plutonium.exe
and done! There shouldn't be any more crashes, I hope this helps someone.
-
Pinned the topic, good job.
-
Hello I've got relatively the same issue it says not in-off space, but where to find this script I launch the game via lutris. can you help?
-
jlkjkb
-
catgirl
serve friend thanks -
To fix random crashes in Linux when running applications through Wine, ensure you have the latest Wine version installed. Additionally, try adjusting Wine settings, such as changing Windows version compatibility or disabling certain graphics or sound options. Updating graphics drivers and checking application-specific Wine compatibility resources can also help resolve crashes.
-
-
-
Can anyone share the script to fix this issue fast? I am facing this issue a lot.
-
To fix random crashes in Linux with Wine, ensure Wine is updated to the latest version and all necessary dependencies are installed. Configure Wine using winecfg and consider running Wine with debugging (WINEDEBUG=+relay,+seh,+tid) to identify issues. Installing and using Winetricks can also help by adding essential libraries and settings. Additionally, check the Wine Application Database for any specific application-related issues and solutions.