Set A Lower P-State For My CPU (Underclocking)
In Windows 8 you can set a max/min cpu speed percentage allowing you to use your cpu at a lower or higher P-State. For example, my cpu has a default speed of 2.3ghz (turbo 3.2ghz), however using the max/min settings I can underclock it to a stable 1.36ghz (which appears to be the lowest supported setting on my cpu?). How can I do this under Ubuntu 13.10? I would prefer a non-terminal command method if possible.
13.10 cpu
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
In Windows 8 you can set a max/min cpu speed percentage allowing you to use your cpu at a lower or higher P-State. For example, my cpu has a default speed of 2.3ghz (turbo 3.2ghz), however using the max/min settings I can underclock it to a stable 1.36ghz (which appears to be the lowest supported setting on my cpu?). How can I do this under Ubuntu 13.10? I would prefer a non-terminal command method if possible.
13.10 cpu
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
In Windows 8 you can set a max/min cpu speed percentage allowing you to use your cpu at a lower or higher P-State. For example, my cpu has a default speed of 2.3ghz (turbo 3.2ghz), however using the max/min settings I can underclock it to a stable 1.36ghz (which appears to be the lowest supported setting on my cpu?). How can I do this under Ubuntu 13.10? I would prefer a non-terminal command method if possible.
13.10 cpu
In Windows 8 you can set a max/min cpu speed percentage allowing you to use your cpu at a lower or higher P-State. For example, my cpu has a default speed of 2.3ghz (turbo 3.2ghz), however using the max/min settings I can underclock it to a stable 1.36ghz (which appears to be the lowest supported setting on my cpu?). How can I do this under Ubuntu 13.10? I would prefer a non-terminal command method if possible.
13.10 cpu
13.10 cpu
asked Dec 23 '13 at 0:04
mangomango
614
614
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I would use CPUFreq
I used CPUFreq in order to under-clock my processor in my laptop. Unfortunately, my laptop had an nForce motherboard chipset, and I couldn't undervolt my processor with the traditional Intel methods... and that was all there was. However I was from a 2.4GHz to 1.6 drop, and that helped reduce the heat and power consumption in my laptop.
Download cpufreq from the repository.
Open a terminal as root or use sudo:
Code:
cpufreq-info
to view your profiles and
Code:
cpufreq-set
to set your profiles.
Use
Code:
cpufreq-set -h
To determine what to put in the command line.
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f394502%2fset-a-lower-p-state-for-my-cpu-underclocking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would use CPUFreq
I used CPUFreq in order to under-clock my processor in my laptop. Unfortunately, my laptop had an nForce motherboard chipset, and I couldn't undervolt my processor with the traditional Intel methods... and that was all there was. However I was from a 2.4GHz to 1.6 drop, and that helped reduce the heat and power consumption in my laptop.
Download cpufreq from the repository.
Open a terminal as root or use sudo:
Code:
cpufreq-info
to view your profiles and
Code:
cpufreq-set
to set your profiles.
Use
Code:
cpufreq-set -h
To determine what to put in the command line.
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
add a comment |
I would use CPUFreq
I used CPUFreq in order to under-clock my processor in my laptop. Unfortunately, my laptop had an nForce motherboard chipset, and I couldn't undervolt my processor with the traditional Intel methods... and that was all there was. However I was from a 2.4GHz to 1.6 drop, and that helped reduce the heat and power consumption in my laptop.
Download cpufreq from the repository.
Open a terminal as root or use sudo:
Code:
cpufreq-info
to view your profiles and
Code:
cpufreq-set
to set your profiles.
Use
Code:
cpufreq-set -h
To determine what to put in the command line.
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
add a comment |
I would use CPUFreq
I used CPUFreq in order to under-clock my processor in my laptop. Unfortunately, my laptop had an nForce motherboard chipset, and I couldn't undervolt my processor with the traditional Intel methods... and that was all there was. However I was from a 2.4GHz to 1.6 drop, and that helped reduce the heat and power consumption in my laptop.
Download cpufreq from the repository.
Open a terminal as root or use sudo:
Code:
cpufreq-info
to view your profiles and
Code:
cpufreq-set
to set your profiles.
Use
Code:
cpufreq-set -h
To determine what to put in the command line.
I would use CPUFreq
I used CPUFreq in order to under-clock my processor in my laptop. Unfortunately, my laptop had an nForce motherboard chipset, and I couldn't undervolt my processor with the traditional Intel methods... and that was all there was. However I was from a 2.4GHz to 1.6 drop, and that helped reduce the heat and power consumption in my laptop.
Download cpufreq from the repository.
Open a terminal as root or use sudo:
Code:
cpufreq-info
to view your profiles and
Code:
cpufreq-set
to set your profiles.
Use
Code:
cpufreq-set -h
To determine what to put in the command line.
edited Feb 17 '14 at 18:05
BuZZ-dEE
9,225115169
9,225115169
answered Feb 17 '14 at 17:40
werotuariouswerotuarious
111
111
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
add a comment |
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
worked for me, I c/p it from other site
– werotuarious
Feb 17 '14 at 17:41
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f394502%2fset-a-lower-p-state-for-my-cpu-underclocking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown