1. 현재 cpu 클럭 확인
$ grep "MHz" /proc/cpuinfo
cpu MHz : 800.421
cpu MHz : 800.121
2. 현재 cpu freq scaling 정책 확인
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
performance
3. 사용 가능한 cpu freq scaling 정책
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
performance powersave
4. powersave 모드로 변경
$ echo powersave | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
$ echo powersave | sudo tee /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
5. 부팅 시 자동으로 powersave 모드로 적용하고 싶다면 rc.local에 등록
$ sudo vi /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo powersave | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo powersave | sudo tee /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
exit 0
참고
- http://www.xpenology.nl/control-cpu-power-state/
- http://askubuntu.com/questions/20271/how-do-i-set-the-cpu-frequency-scaling-governor-for-all-cores-at-once
'Linux' 카테고리의 다른 글
리눅스 디렉토리 용량 확인 (0) | 2015.08.31 |
---|---|
비밀번호 없이 sudo 사용하기 (0) | 2015.04.04 |
USB로 ubuntu server 설치하면 USB 없이는 부팅이 안되는 문제 (3) | 2015.03.22 |
우분투 torrent 서버 구축 - ftp, rtorrent (0) | 2015.03.22 |
mount 가능한 파일시스템 확인 (0) | 2015.03.11 |