Because of a noisy fan in my laptop, I need to change CPU frequency and for this task I need to load the appropriate kernel module.
The CPU in my laptop Acer TravelMate 4002WLMi is:
$ cat /proc/cpuinfo | grep "model name"
model name : Intel(R) Pentium(R) M processor 1.60GHz
This article helped me to find the kernel module I need (my CPU differs only a little in frequency).
After the sudo modprobe speedstep_centrino command nothing happened.
echo $? returns 0.
Here is the output of lsmod and dmesg and other useful outputs.
Could you help me solve this problem (explain what's wrong with kernel modules and use the appropriate module for changing CPU frequency)?
OS: Lubuntu 11.10 (GNU/Linux 3.0.0-14-generic i686)
dmesgand/or/var/log/messagesor wherever your system logs are stored? – Mat Dec 7 '11 at 15:25/var/log/messagesfile is not present. – xralf Dec 7 '11 at 15:35modprobemanpage:Usually modprobe only prints messages if something goes wrong.So, i would assume that the module was loaded fine. What doesmodprobe -vtell? Are thedmesgandlsmodoutput from the same session as themodprobe? – tohuwawohu Dec 7 '11 at 16:26-vmakes no difference. Yes, session is the same. – xralf Dec 7 '11 at 17:19/var/log/messages; but/var/log/syslogshould be there - anything interesting there? If not, i fear i can't help any further. The blog entry you've linked did mention theacpi_cpufreqmodule - maybe this works? Are any modules blacklisted? – tohuwawohu Dec 7 '11 at 17:29