팬에서 소음이 너무 많이 나서 CPU 주파수를 변경하고 있습니다.
이것이 제가 sudo cpufreq-selector -g powersave
이 목적으로 사용한 것이지만 더 나은 리소스를 활용하기 때문에 Linux 시스템 Xubuntu를 Lubuntu로 교체했습니다. 내 버전은 11.10이고 GNOME, KDE, Xfce 또는 LXDE(xmonad만)를 사용하지 않습니다.
문제가 있다cpufreq-selector
$ cpufreq-selector
Failed to acquire org.gnome.CPUFreqSelector: Connection ":1.35" is not
allowed to own the service "org.gnome.CPUFreqSelector" due to
security policies in the configuration file
cpufreq-info
보여주다:
$ cpufreq-info
cpufrequtils 007: cpufreq-info (C) Dominik
Brodowski 2004-2009
Report errors and bugs to [email protected], please.
analyzing CPU 0:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 10.0 us.
hardware limits: 600 MHz - 1.60 GHz
available frequency steps: 1.60 GHz, 1.40 GHz, 1.20 GHz, 800 MHz, 600 MHz
available cpufreq governors: conservative, ondemand, userspace, powersave,
performance current policy: frequency should be within 1.60 GHz and 1.60 GHz.
The governor "ondemand" may decide which speed to use
within this range.
current CPU frequency is 1.60 GHz.
cpufreq stats: 1.60 GHz:98.40%, 1.40 GHz:0.02%, 1.20 GHz:1.58%, 800
MHz:0.01%, 600 MHz:0.00% (38)
나도 시도했다이것내 프로세서가 동일하므로 참고하세요(주파수는 1.73이 아닌 1.6입니다). 그 후에 무슨 일이 일어났는지는 잘 모르겠습니다.
sudo modprobe speedstep_centrino
주문하다.
여기서 무엇이 잘못되었는지, 왜 주파수를 낮출 수 없는지 알아내도록 도와주실 수 있나요?
답변1
org.gnome.CPUFreqSelector
DBus처럼 들리지만 Google 검색에 따르면 이것이 PolicyKit 문제일 수 있습니다. 아마도 이것이 도움이 될 것입니다. 애플릿 CPUFreq 변경을 허용하십시오..
cpufreq-selector
이 도구가 필요하다고 생각하지 않습니다 .cpufreq-set
직접 사용(아마도 sudo
, 확실하지 않습니다). (또는cpupowerutils
프런트엔드, 살아있음여기)
(편집하다업데이트된 질문과 일치하도록)
modprobe
아무것도 출력하지 않는다는 것은 모든 것이 잘 되었다는 것을 의미합니다. (echo $?
나중에 시도하면 성공을 의미modprobe
해야 합니다 . 또한 무언가를 포함할 수도 있습니다. 그 후의 출력은 달라야 모듈이 로드되었음을 나타냅니다.)0
dmesg
lsmod
modprobe
당신은 실제 주지사, 즉modprobe cpufreq_powersave
(modprobe
당신 이후speedstep_centrino
) 를 시도해 본 적이 있습니까 ? (그러면 해당하는 것이cpufreq-set -g powersave
작동합니다.)