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
- Fedora KDE gets approval to be upgraded to sit alongside Fedora Workstation
- Steam gets new tools for game devs to offer players version switching in-game
- Palworld dev details the patents Nintendo and The Pokemon Company are suing for
- GOG launch their Preservation Program to make games live forever with a hundred classics being 're-released'
- Sony say their PSN account requirement on PC is so you can enjoy their games 'safely'
- > See more over 30 days here
-
Old Skies from Wadjet Eye Games looks like one to remem…
- emphy -
Classic Unreal Tournament and Unreal now easier to down…
- emphy -
Minecraft-like free and open source game VoxeLibre (for…
- kneekoo -
Mesa 24.2.7 out now and Mesa 24.3 may come sooner than …
- nnohonsjnhtsylay -
Civilization VI, Civilization V, lots of DLC and other …
- Pompesdesky - > See more comments
- Steam and offline gaming
- Snak30 - Does Sinden Lightgun work?
- helloCLD - No more posting on X / Twitter
- Liam Dawe - Weekend Players' Club 10/11/2024
- Pengling - Upped the limit on article titles
- eldaking - See more posts
View PC info
Using Mint 18.1 with the recently released 4.14 Kernel / Ryzen 1700X (Downloaded from Official Ubuntu server). Everything works fine but I'm unable to set the governor. I never really bothered with it on this system and if I can squeeze a little more performance I'll gladly go for it.
Running cpufreq-info in terminal provides the following output for all cores:
analyzing CPU 0:
no or unknown cpufreq driver is active on this CPU
maximum transition latency: 4294.55 ms.
View PC info
View PC info
as for cpu governor, some games dont even pull this cpu to load so yeah cpu governor can help.
try installing cpupower
and you can use something like this:
#freq=cpupower frequency-info |grep "current"*
# by xpander
if [[ $# -eq 1 ]]; then
case $1 in
"-p")
pkexec cpupower frequency-set -g performance && notify-send "Performance Mode" "Cpu clocks set to perfromance mode" -t 2000 -i messagebox_info;;
"-c")
pkexec cpupower frequency-set -g schedutil && notify-send "Schedutil Mode" "Cpu clocks set to conservative mode" -t 2000 -i messagebox_info;;
"-o")
pkexec cpupower frequency-set -g ondemand && notify-send "Ondemand Mode" "Cpu clocks set to ondemand mode" -t 2000 -i messagebox_info;;
"-s")
pkexec cpupower frequency-set -g powersave && notify-send "Powersave Mode" "Cpu clocks set to powersave mode" -t 2000 -i messagebox_info;;
*)
echo "Invalid option";;
esac
fi
you can get the commands from the script. pkexec is used for not having to type admin password as i have done polkit rules. but you can use it with sudo as well.
View PC info