[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.
-