While you're here, please consider supporting GamingOnLinux on:
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- GOG launch their Preservation Program to make games live forever with a hundred classics being 're-released'
- Half-Life 2 free to keep until November 18th, Episodes One & Two now included with a huge update
- Valve dev details more on the work behind making Steam for Linux more stable
- Proton Experimental adds DLSS 3 Frame Generation support, plus fixes for Dragon Age: The Veilguard, Rivals of Aether II and more
- Direct3D to Vulkan translation layer DXVK v2.5 released with rewritten memory management
- > See more over 30 days here
-
Linux kernel 6.12 is out now with real-time capabilitie…
- Dana Souly -
Avowed from Obsidian gets a release date, and pre-order…
- Lofty -
Linux kernel 6.12 is out now with real-time capabilitie…
- ToddL -
Linux kernel 6.12 is out now with real-time capabilitie…
- StalePopcorn -
Linux kernel 6.12 is out now with real-time capabilitie…
- nwildner - > See more comments
- Steam and offline gaming
- Dorrit - Weekend Players' Club 11/15/2024
- Ehvis - What do you want to see on GamingOnLinux?
- Liam Dawe - New Desktop Screenshot Thread
- Vortex_Acherontic - Types of programs that are irritating
- dvd - See more posts
The game runs very well, the only problem is that after finishing the game the fans keep running really high (sometimes slower, sometimes faster, but always way to fast even if the CPU is completely on idle). I was trying to kill the Wine processes with `killall Agent.exe Battle.net.exe wineserver`, but it does not help. I have to restart the PC so that the fans go back to normal and it happens like this every time.
I have tried reinstalling the game and installing some software to control the fans called `fancontrol`, but it does not work as my motherboard seems not to support it. I only get information, that there are no fans detected.
Could you please give me a hint what should I look for to fix this? Currently I need to keep rebooting to Windows, because, well I need to do the reboot after playing anyway...
Is any process really spinning the CPU though? You wrote that the fans are still on even when the CPU is completely idle?
View PC info
pids=$(
ls -l /proc/*/exe 2>/dev/null |
grep -E 'wine(64)?-preloader|wineserver|winedevice.exe' |
perl -pe 's;^.*/proc/(\d+)/exe.*$;$1;g;'
)
if ((${#pids})); then
echo $pids
kill $pids
sleep 1
pids=$(
ls -l /proc/*/exe 2>/dev/null |
grep -E 'wine(64)?-preloader|wineserver|winedevice.exe' |
perl -pe 's;^.*/proc/(\d+)/exe.*$;$1;g;'
)
if ((${#pids})); then
kill -9 $pids
fi
fi
Yes, exactly. There is no CPU usage and fans are still spinning. So seems that some settings are being changed and by killing all the wine processes I wanted to reset it.
Thank you @Xpander, I will try it out after the weekend as soon as I have the access to laptop again.
I'm also curious about Lutris, I don't use it myself. Possibly it could be changing the CPU governor to a performance mode when the game is running and fails to set it back if the game doesn't exit cleanly?