This commit is contained in:
2025-12-23 13:48:12 +03:00
parent 3e9e074cc5
commit 8cc33846b0
15 changed files with 121 additions and 266 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
grep "cpu MHz" /proc/cpuinfo | head
# попробовать поднять лимит на всех ядрах
for c in /sys/devices/system/cpu/cpu[0-7]; do
echo 4100000 | sudo tee "$c/cpufreq/scaling_max_freq"
done
# проверить, применилось ли
grep "cpu MHz" /proc/cpuinfo | head
sudo tlp-stat -p | sed -n '1,25p'