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
- Steam Controller 2 is apparently a thing and being 'tooled for a mass production' plus a new VR controller
- Steam Deck OLED: Limited Edition White and Steam Deck Australia have launched
- NVIDIA stable driver 550.135 released for Linux
- Sony reportedly looking to acquire Kadokawa, owner of ELDEN RING dev FromSoftware
- Dungeon Clawler will grab hold of your free time now it's in Early Access, plus keys to give away
- > See more over 30 days here
-
Medal of Honor: Allied Assault open source remake gets …
- PedroHLC -
Star Fox 64 is getting a Native PC port from the devs o…
- Doktor-Mandrake -
Dungeon Clawler will grab hold of your free time now it…
- Purple Library Guy -
Star Fox 64 is getting a Native PC port from the devs o…
- Mountain Man -
Linux Firmware Updater adds initial community support f…
- razze - > See more comments
- Our own anti-cheat list
- Liam Dawe - What have you been listening to?
- Cyril - What do you want to see on GamingOnLinux?
- Liam Dawe - Weekend Players' Club 11/22/2024
- Liam Dawe - Types of programs that are irritating
- Cyril - 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