forked from nmakes/cpufreq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14.04 - How I can disable CPU frequency scaling and set the system to performance? - Ask Ubuntu.html
1888 lines (1596 loc) · 112 KB
/
14.04 - How I can disable CPU frequency scaling and set the system to performance? - Ask Ubuntu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html itemscope="" itemtype="http://schema.org/QAPage"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>14.04 - How I can disable CPU frequency scaling and set the system to performance? - Ask Ubuntu</title>
<link rel="shortcut icon" href="http://cdn.sstatic.net/Sites/askubuntu/img/favicon.ico?v=eff8fd315b9e">
<link rel="apple-touch-icon image_src" href="http://cdn.sstatic.net/Sites/askubuntu/img/apple-touch-icon.png?v=e16e1315edd6">
<link rel="search" type="application/opensearchdescription+xml" title="Ask Ubuntu" href="http://askubuntu.com/opensearch.xml">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@AskUbuntu">
<meta name="twitter:domain" content="askubuntu.com">
<meta property="og:type" content="website">
<meta property="og:image" itemprop="image primaryImageOfPage" content="http://cdn.sstatic.net/Sites/askubuntu/img/[email protected]?v=c492c9229955&a">
<meta name="twitter:title" property="og:title" itemprop="title name" content="How I can disable CPU frequency scaling and set the system to performance?">
<meta name="twitter:description" property="og:description" itemprop="description" content="My processor is running at 40% of its maximum speed, I want it to use 100% of the speed, all the time. I searched on Google but the tutorials are very old and they all differ.
So, how can I perman...">
<meta property="og:url" content="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance">
<link rel="canonical" href="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance">
<script type="text/javascript" async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/ados.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/quant.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/beacon.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/analytics.js"></script><script type="text/javascript" async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/ados_002.js"></script><script src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/jquery.js"></script>
<script src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/stub.js"></script>
<link rel="stylesheet" type="text/css" href="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/all.css">
<link rel="alternate" type="application/atom+xml" title="Feed for question 'How I can disable CPU frequency scaling and set the system to performance?'" href="http://askubuntu.com/feeds/question/523640">
<meta name="twitter:app:country" content="US">
<meta name="twitter:app:name:iphone" content="Stack Exchange iOS">
<meta name="twitter:app:id:iphone" content="871299723">
<meta name="twitter:app:url:iphone" content="se-zaphod://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance">
<meta name="twitter:app:name:ipad" content="Stack Exchange iOS">
<meta name="twitter:app:id:ipad" content="871299723">
<meta name="twitter:app:url:ipad" content="se-zaphod://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance">
<meta name="twitter:app:name:googleplay" content="Stack Exchange Android">
<meta name="twitter:app:url:googleplay" content="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance">
<meta name="twitter:app:id:googleplay" content="com.stackexchange.marvin">
<script>
StackExchange.ready(function () {
StackExchange.using("postValidation", function () {
StackExchange.postValidation.initOnBlurAndSubmit($('#post-form'), 2, 'answer');
});
StackExchange.question.init({votesCast:[],autoShowCommentHelp:true,showAnswerHelp:true,totalCommentCount:1,shownCommentCount:1,highlightColor:'#F4A83D',backgroundColor:'#FFF',questionId:523640});
styleCode();
StackExchange.realtime.subscribeToQuestion('89', '523640');
StackExchange.using("gps", function () { StackExchange.gps.trackOutboundClicks('#content', '.post-text'); });
});
</script>
<script>
StackExchange.ready(function () {
StackExchange.realtime.init('wss://qa.sockets.stackexchange.com,ws://qa.sockets.stackexchange.com');
StackExchange.realtime.subscribeToReputationNotifications('89');
StackExchange.realtime.subscribeToTopBarNotifications('89');
});
</script>
<script>
StackExchange.init({"locale":"en","stackAuthUrl":"https://stackauth.com","networkMetaHostname":"meta.stackexchange.com","serverTime":1475148729,"routeName":"Questions/Show","site":{"name":"Ask Ubuntu","description":"Q&A for Ubuntu users and developers","isNoticesTabEnabled":true,"recaptchaPublicKey":"6LdsB7sSAAAAAAzjgEF_Hd8vXv-C42sa_KyofaGR","recaptchaAudioLang":"en","enableNewTagCreationWarning":true,"insertSpaceAfterNameTabCompletion":false,"id":89,"enableInsertDocLinkDialog":false,"enableSocialMediaInSharePopup":true},"user":{"fkey":"71c12682cd3678f6b24d87186bd467ab","rep":1,"isRegistered":true,"userType":3,"userId":558710,"accountId":8470020,"gravatar":"<div class=\"gravatar-wrapper-32\"><img src=\"https://www.gravatar.com/avatar/d23ca8117996d14a0ec05bcd008af371?s=32&d=identicon&r=PG&f=1\" alt=\"\" width=\"32\" height=\"32\"></div>","profileUrl":"http://askubuntu.com/users/558710/naveen-venkat","canSeeDeletedPosts":false},"realtime":{"newest":true,"active":true,"tagged":true,"workerIframeDomain":"http://cdn.sstatic.net"}}, {"site":{"allowImageUploads":true,"enableUserHovercards":true,"styleCode":true},"tags":{},"accounts":{"currentPasswordRequiredForChangingStackIdPassword":true},"flags":{"allowRetractingFlags":true},"snippets":{"renderDomain":"stacksnippets.net"},"markdown":{"asteriskIntraWordEmphasis":true}});
StackExchange.using.setCacheBreakers({"js/prettify-full.en.js":"6dc8ab516e2d","js/moderator.en.js":"20845a7207f0","js/full-anon.en.js":"be0bec0661aa","js/full.en.js":"7e7a33b6d602","js/wmd.en.js":"c1ee0f2ef487","js/third-party/jquery.autocomplete.min.js":"e5f01e97f7c3","js/third-party/jquery.autocomplete.min.en.js":"","js/mobile.en.js":"12144888d605","js/help.en.js":"a56fdf9b9ff2","js/tageditor.en.js":"bd4fb7a0a976","js/tageditornew.en.js":"4568be0a302a","js/inline-tag-editing.en.js":"4fa1a4a3339e","js/revisions.en.js":"47de10a8358f","js/review.en.js":"a36506ec2834","js/tagsuggestions.en.js":"d1ff9b84abe5","js/post-validation.en.js":"6c3c85a4cd29","js/explore-qlist.en.js":"88f824a42b1a","js/events.en.js":"fd77294cd0e2","js/keyboard-shortcuts.en.js":"690fd0189679","js/external-editor.en.js":"71095ef40e9d"});
StackExchange.using("gps", function() {
StackExchange.gps.init(true);
});
</script>
<script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/full.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/post-validation.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/external-editor.js"></script><script async="" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/wmd.js"></script><script type="text/javascript" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/adFeedback.js"></script><link rel="stylesheet" href="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/adFeedback.css"></head>
<body class="question-page new-topbar">
<noscript><div id="noscript-padding"></div></noscript>
<div id="notify-container"></div>
<div id="custom-header"><div class="nav-global"><div class="nav-global-wrapper"><ul><li><a href="http://www.ubuntu.com/">Ubuntu</a></li><li><a href="http://community.ubuntu.com/">Community</a></li><li><a href="http://askubuntu.com/" class="active">Ask!</a></li><li><a href="http://developer.ubuntu.com/">Developer</a></li><li><a href="http://design.ubuntu.com/">Design</a></li><li></li><li><a href="http://discourse.ubuntu.com/">Discourse</a></li><li><a href="http://www.ubuntu.com/certification">Hardware</a></li><li><a href="http://insights.ubuntu.com/">Insights</a></li><li><a href="https://jujucharms.com/">Juju</a></li><li><a href="http://shop.ubuntu.com/">Shop</a></li><li class="more"><a href="#">More <span>›</span></a><ul><li><a href="http://apps.ubuntu.com/">Apps</a></li><li><a href="https://help.ubuntu.com/">Help</a></li><li><a href="http://ubuntuforums.org/">Forum</a></li><li><a href="http://www.launchpad.net/">Launchpad</a></li><li><a href="http://maas.ubuntu.com/">MAAS</a></li><li><a href="http://www.canonical.com/">Canonical</a></li></ul></li></ul></div></div> <script> $(function() { $(".nav-global .more > a").click(function(e){ $(this).closest(".more").toggleClass("open"); return false; }); $(document).click(function(){ $(".nav-global .more.open").removeClass("open"); }); }); </script></div>
<div class="topbar">
<div class="topbar-wrapper">
<div class="js-topbar-dialog-corral">
<div class="topbar-dialog siteSwitcher-dialog dno">
<div class="header">
<h3><a href="http://askubuntu.com/">current community</a></h3>
</div>
<div class="modal-content current-site-container">
<ul class="current-site">
<li>
<div class="related-links">
<a href="http://chat.stackexchange.com/?tab=site&host=askubuntu.com" class="js-gps-track" data-gps-track="site_switcher.click({ item_type:6 })">chat</a>
<a href="http://askubuntu.com/users/logout" class="js-gps-track" data-gps-track="site_switcher.click({ item_type:8 })">log out</a>
</div>
<a href="http://askubuntu.com/" class="current-site-link site-link js-gps-track" data-id="89" data-gps-track="
site_switcher.click({ item_type:3 })">
<div class="site-icon favicon favicon-askubuntu" title="Ask Ubuntu"></div>
Ask Ubuntu
</a>
</li>
<li class="related-site">
<div class="L-shaped-icon-container">
<span class="L-shaped-icon"></span>
</div>
<a href="http://meta.askubuntu.com/" class="site-link js-gps-track" data-id="91" data-gps-track="
site.switch({ target_site:91, item_type:3 }),
site_switcher.click({ item_type:4 })">
<div class="site-icon favicon favicon-askubuntumeta" title="Ask Ubuntu Meta"></div>
Ask Ubuntu Meta
</a>
</li>
</ul>
</div>
<div class="header" id="your-communities-header">
<h3>
<a href="http://stackexchange.com/users/8470020/?tab=accounts">your communities</a>
</h3>
<a href="#" id="edit-pinned-sites">edit</a>
<a href="#" id="cancel-pinned-sites" style="display: none;">cancel</a>
</div>
<div class="modal-content" id="your-communities-section">
<ul class="my-sites">
<li>
<a href="http://askubuntu.com/" class="site-link js-gps-track" data-id="89" data-gps-track="
site.switch({ target_site:89, item_type:3 }),
site_switcher.click({ item_type:1 })">
<div class="site-icon favicon favicon-askubuntu" title="Ask Ubuntu"></div>
Ask Ubuntu
<span class="rep-score">1</span>
</a>
</li>
<li>
<a href="http://stackoverflow.com/" class="site-link js-gps-track" data-id="1" data-gps-track="
site.switch({ target_site:1, item_type:3 }),
site_switcher.click({ item_type:1 })">
<div class="site-icon favicon favicon-stackoverflow" title="Stack Overflow"></div>
Stack Overflow
<span class="rep-score">1</span>
</a>
</li>
</ul>
<div class="pinned-site-editor-container" style="display: none;">
<input id="js-site-search-txt" class="site-filter-input" placeholder="Add a Stack Exchange community" type="text">
<input id="pin-site-btn" value="Add" disabled="disabled" type="submit">
<ul class="js-found-sites found-sites"></ul>
<ul class="pinned-site-list sortable" data-custom-list="False">
</ul>
<input value="Save" id="save-pinned-sites-btn" disabled="disabled" type="submit">
<a href="#" id="reset-pinned-sites">reset to default list</a>
</div>
</div>
<div class="header">
<h3><a href="http://stackexchange.com/sites">more stack exchange communities</a></h3>
<a href="http://blog.stackoverflow.com/" class="fr">company blog</a>
</div>
<div class="modal-content">
<div class="child-content"></div>
</div>
</div>
</div>
<div class="network-items">
<a href="http://stackexchange.com/" class="topbar-icon icon-site-switcher yes-hover js-site-switcher-button js-gps-track" data-gps-track="site_switcher.show" title="A list of all 161 Stack Exchange sites">
<span class="hidden-text">Stack Exchange</span>
</a>
<a href="#" class="topbar-icon icon-inbox yes-hover js-inbox-button" title="Recent inbox messages">
<span class="hidden-text">Inbox</span>
<span class="unread-count" style="display:none"></span>
</a>
<a href="#" class="topbar-icon icon-achievements yes-hover js-achievements-button icon-achievements-unread" data-unread-class="icon-achievements-unread" title="You have new achievements">
<span class="hidden-text">Reputation and Badges</span>
<span class="unread-count" style="display:none">
</span>
</a>
</div>
<div class="topbar-links">
<a href="http://askubuntu.com/users/558710/naveen-venkat" class="profile-me js-gps-track" data-gps-track="profile_summary.click()">
<div class="gravatar-wrapper-24" title="Naveen Venkat"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/d23ca8117996d14a0ec05bcd008af371.png" alt="" class="avatar-me js-avatar-me" width="24" height="24"></div>
<div class="links-container topbar-flair">
<span class="reputation" title="your reputation: 1">
1
</span>
</div>
</a>
<div class="links-container">
<span class="topbar-menu-links">
<a href="#" class="icon-help js-help-button" title="Help Center and other resources">
help
<span class="triangle"></span>
</a>
<div class="topbar-dialog help-dialog js-help-dialog dno">
<div class="modal-content">
<ul>
<li>
<a href="http://askubuntu.com/tour" class="js-gps-track" data-gps-track="help_popup.click({ item_type:1 })">
Tour
<span class="item-summary">
Start here for a quick overview of the site
</span>
</a>
</li>
<li>
<a href="http://askubuntu.com/help" class="js-gps-track" data-gps-track="help_popup.click({ item_type:4 })">
Help Center
<span class="item-summary">
Detailed answers to any questions you might have
</span>
</a>
</li>
<li>
<a href="http://meta.askubuntu.com/" class="js-gps-track" data-gps-track="help_popup.click({ item_type:2 })">
Meta
<span class="item-summary">
Discuss the workings and policies of this site
</span>
</a>
</li>
<li>
<a href="http://stackoverflow.com/company/about" class="js-gps-track" data-gps-track="help_popup.click({ item_type:6 })">
About Us
<span class="item-summary">
Learn more about Stack Overflow the company
</span>
</a>
</li>
<li>
<a href="http://business.stackoverflow.com/?ref=topbar_help" class="js-gps-track" data-gps-track="help_popup.click({ item_type:7 })">
Business
<span class="item-summary">
Learn more about hiring developers or posting ads with us
</span>
</a>
</li>
</ul>
</div>
</div>
</span>
</div>
<div class="search-container">
<form id="search" action="/search" method="get" autocomplete="off">
<input name="q" placeholder="Search Q&A" tabindex="1" autocomplete="off" maxlength="240" type="text">
</form>
</div>
</div>
</div>
</div>
<script>
StackExchange.ready(function() { StackExchange.topbar.init(); });
</script>
<div class="container">
<div id="header">
<br class="cbt">
<div id="hlogo">
<a href="http://askubuntu.com/">
Ask Ubuntu
</a>
</div>
<div id="hmenus">
<div class="nav mainnavs">
<ul>
<li class="youarehere"><a id="nav-questions" href="http://askubuntu.com/questions">Questions</a></li>
<li><a id="nav-tags" href="http://askubuntu.com/tags">Tags</a></li>
<li><a id="nav-users" href="http://askubuntu.com/users">Users</a></li>
<li><a id="nav-badges" href="http://askubuntu.com/help/badges">Badges</a></li>
<li><a id="nav-unanswered" href="http://askubuntu.com/unanswered">Unanswered</a></li>
</ul>
</div>
<div class="nav askquestion">
<ul>
<li>
<a id="nav-askquestion" href="http://askubuntu.com/questions/ask">Ask Question</a>
</li>
</ul>
</div>
</div>
</div>
<div id="content">
<div itemscope="" itemtype="http://schema.org/Question">
<link itemprop="image" href="http://cdn.sstatic.net/Sites/askubuntu/img/apple-touch-icon.png?v=e16e1315edd6">
<div id="question-header">
<h1 itemprop="name"><a href="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance" class="question-hyperlink">How I can disable CPU frequency scaling and set the system to performance?</a></h1>
</div>
<div id="mainbar">
<div class="question" data-questionid="523640" id="question">
<script>
var ados = ados || {}; ados.run = ados.run || [];
ados.run.push(function () { ados_add_placement(22,0,"adzerk100008309",4).enableDynamicSiteSelection().setZone(29); });
</script>
<div class="everyonelovesstackoverflow adzerk-vote" id="adzerk100008309"><div style="background-image: url( data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== ); width: 1px; height: 1px; display:none;"></div><div class="adzerk-vote-controls" style="display:none;"><div class="adzerk-vote-option adzerk-vote-up"><div class="adzerk-vote-icon"></div></div><div class="adzerk-vote-option adzerk-vote-down"><div class="adzerk-vote-icon"></div></div></div><div class="adzerk-vote-survey" style="display:none;"><form><span>No problem. We won't show you that ad again. Why didn't you like it?</span><ul><li><label><input value="12" name="downvoteReason" type="radio">Uninteresting</label></li><li><label><input value="13" name="downvoteReason" type="radio">Misleading</label></li><li><label><input value="14" name="downvoteReason" type="radio">Offensive</label></li><li><label><input value="15" name="downvoteReason" type="radio">Repetitive</label></li><li><label><input value="16" name="downvoteReason" type="radio">Other</label></li></ul><a href="#" class="adzerk-vote-cancel">Oops! I didn't mean to do this.</a></form></div><img style="position:absolute;" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/i_003.gif" border="0" width="0px" height="0px"></div> <table>
<tbody><tr>
<td class="votecell">
<div class="vote">
<input name="_id_" value="523640" type="hidden">
<a class="vote-up-off" title="This question shows research effort; it is useful and clear">up vote</a>
<span itemprop="upvoteCount" class="vote-count-post ">12</span>
<a class="vote-down-off" title="This question does not show any research effort; it is unclear or not useful">down vote</a>
<a class="star-off" href="#" title="Click to mark as favorite question (click again to undo)">favorite</a>
<div class="favoritecount"><b>14</b></div>
</div>
</td>
<td class="postcell">
<div>
<div class="post-text" itemprop="text">
<p>My processor is running at 40% of its maximum speed, I want it to use
100% of the speed, all the time. I searched on Google but the tutorials
are very old and they all differ.</p>
<p>So, how can I permanently disable CPU frequency scaling and set my system to performance mode?</p>
<p>Please, only terminal based solutions, I don't want applets.</p>
<p>I'm using Xubuntu 14.04 x64.</p>
</div>
<div class="post-taglist">
<a href="http://askubuntu.com/questions/tagged/14.04" class="post-tag js-gps-track" title="show questions tagged '14.04'" rel="tag">14.04</a> <a href="http://askubuntu.com/questions/tagged/performance" class="post-tag js-gps-track" title="show questions tagged 'performance'" rel="tag">performance</a> <a href="http://askubuntu.com/questions/tagged/cpu" class="post-tag js-gps-track" title="show questions tagged 'cpu'" rel="tag">cpu</a> <a href="http://askubuntu.com/questions/tagged/scaling" class="post-tag js-gps-track" title="show questions tagged 'scaling'" rel="tag">scaling</a>
</div>
<table class="fw">
<tbody><tr>
<td class="vt">
<div class="post-menu"><a href="http://askubuntu.com/q/523640/558710" title="short permalink to this question" class="short-link" id="link-post-523640">share</a><span class="lsep">|</span><a href="http://askubuntu.com/posts/523640/edit" class="suggest-edit-post" title="revise and improve this post">edit</a></div>
</td>
<td class="post-signature owner">
<div class="user-info ">
<div class="user-action-time">
asked <span title="2014-09-13 18:25:10Z" class="relativetime">Sep 13 '14 at 18:25</span>
</div>
<div class="user-gravatar32">
<a href="http://askubuntu.com/users/29853/dennis"><div class="gravatar-wrapper-32"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/5abe7e11470c8b1f920dcf605ac15b4b.png" alt="" width="32" height="32"></div></a>
</div>
<div class="user-details">
<a href="http://askubuntu.com/users/29853/dennis">Dennis</a>
<div class="-flair">
<span class="reputation-score" title="reputation score " dir="ltr">1,653</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="12 silver badges"><span class="badge2"></span><span class="badgecount">12</span></span><span title="30 bronze badges"><span class="badge3"></span><span class="badgecount">30</span></span>
</div>
</div>
</div>
</td>
</tr>
</tbody></table>
</div>
</td>
</tr>
<tr>
<td class="votecell"></td>
<td>
<div id="comments-523640" class="comments ">
<table>
<tbody data-remaining-comments-count="0" data-canpost="false" data-cansee="true" data-comments-unavailable="false" data-addlink-disabled="true">
<tr id="comment-1119106" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">For the curious: <a href="https://idebian.wordpress.com/2008/06/22/cpu-frequency-scaling-in-linux/" rel="nofollow">CPU frequency scaling in Linux</a></span>
– <a href="http://askubuntu.com/users/419514/j%c3%a9r%c3%b4me" title="101 reputation" class="comment-user">Jérôme</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment1119106_523640"><span title="2016-03-26 21:35:59Z" class="relativetime-clean">Mar 26 at 21:35</span></a></span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="comments-link-523640" data-rep="50" data-reg="true">
<a class="js-add-link comments-link disabled-link " title="Use comments to ask for more information or suggest improvements. Avoid answering questions in comments.">add a comment</a><span class="js-link-separator dno"> | </span>
<a class="js-show-link comments-link dno" title="expand to show all comments on this post" href="#" onclick=""></a>
</div>
</td>
</tr> </tbody></table>
</div>
<div id="answers">
<a name="tab-top"></a>
<div id="answers-header">
<div class="subheader answers-subheader">
<h2>
3 Answers
<span style="display:none;" itemprop="answerCount">3</span>
</h2>
<div>
<div id="tabs">
<a href="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance?answertab=active#tab-top" data-nav-xhref="" title="Answers with the latest activity first" data-value="active" data-shortcut="A">
active</a>
<a href="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance?answertab=oldest#tab-top" data-nav-xhref="" title="Answers in the order they were provided" data-value="oldest" data-shortcut="O">
oldest</a>
<a class="youarehere" href="http://askubuntu.com/questions/523640/how-i-can-disable-cpu-frequency-scaling-and-set-the-system-to-performance?answertab=votes#tab-top" data-nav-xhref="" title="Answers with the highest score first" data-value="votes" data-shortcut="V">
votes</a>
</div>
</div>
</div>
</div>
<a name="523690"></a>
<div id="answer-523690" class="answer accepted-answer" data-answerid="523690" itemscope="" itemtype="http://schema.org/Answer" itemprop="acceptedAnswer">
<table>
<tbody><tr>
<td class="votecell">
<div class="vote">
<input name="_id_" value="523690" type="hidden">
<a class="vote-up-off" title="This answer is useful">up vote</a>
<span itemprop="upvoteCount" class="vote-count-post ">15</span>
<a class="vote-down-off" title="This answer is not useful">down vote</a>
<span class="vote-accepted-on load-accepted-answer-date" title="loading when this answer was accepted...">accepted</span>
</div>
</td>
<td class="answercell">
<div class="post-text" itemprop="text">
<p>After struggling with <code>ondemand</code> for a while, I will share how to permanently disable it in Ubuntu and its derivates.</p>
<p>Install <code>cpufrequtils</code>:</p>
<pre><code>sudo apt-get install cpufrequtils
</code></pre>
<p>Then edit the following file (if it doesn't exist, create it):</p>
<pre><code>sudo nano /etc/default/cpufrequtils
</code></pre>
<p>And add the following line to it:</p>
<pre><code>GOVERNOR="performance"
</code></pre>
<p>Save and exit.</p>
<p>Now you need to disable <code>ondemand</code> daemon, otherwise after you reboot the settings will be overwritten.</p>
<pre><code>sudo update-rc.d ondemand disable
</code></pre>
<p>And you are done!</p>
<p>You can check your settings with:</p>
<pre><code>cpufreq-info
</code></pre>
<p>It will show a block of information for every core your processor
has. Just check if all of then are in performance mode, and at the
maximum speed of your processor.</p>
<p><strong>Update:</strong></p>
<p><strong>The Debian Wiki says that <code>sysfsutils</code> is necessary in order to maintain the settings across reboots, but that is untrue. Also, enabling <code>sysfsutils</code> make my system unstable, so it's not recommended.</strong></p>
<p>Sorry if I misspelled something. :)</p>
<p>Sources:</p>
<ul>
<li><a href="https://wiki.debian.org/HowTo/CpuFrequencyScaling">https://wiki.debian.org/HowTo/CpuFrequencyScaling</a></li>
<li><a href="http://askubuntu.com/questions/3924/disable-ondemand-cpu-scaling-daemon">Disable "ondemand" CPU scaling daemon</a></li>
</ul>
</div>
<table class="fw">
<tbody><tr>
<td class="vt">
<div class="post-menu"><a href="http://askubuntu.com/a/523690/558710" title="short permalink to this answer" class="short-link" id="link-post-523690">share</a><span class="lsep">|</span><a href="http://askubuntu.com/posts/523690/edit" class="suggest-edit-post" title="revise and improve this post">edit</a></div> </td>
<td class="post-signature" align="right">
<div class="user-info user-hover">
<div class="user-action-time">
<a href="http://askubuntu.com/posts/523690/revisions" title="show all edits to this post">edited <span title="2015-10-15 16:09:47Z" class="relativetime">Oct 15 '15 at 16:09</span></a>
</div>
<div class="user-gravatar32">
<a href="http://askubuntu.com/users/175814/david-foerster"><div class="gravatar-wrapper-32"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/HLmUw.jpg" alt="" width="32" height="32"></div></a>
</div>
<div class="user-details">
<a href="http://askubuntu.com/users/175814/david-foerster">David Foerster</a>
<div class="-flair">
<span class="reputation-score" title="reputation score 10,518" dir="ltr">10.5k</span><span title="9 gold badges"><span class="badge1"></span><span class="badgecount">9</span></span><span title="30 silver badges"><span class="badge2"></span><span class="badgecount">30</span></span><span title="52 bronze badges"><span class="badge3"></span><span class="badgecount">52</span></span>
</div>
</div>
</div> </td>
<td class="post-signature owner" align="right">
<div class="user-info ">
<div class="user-action-time">
answered <span title="2014-09-13 21:13:03Z" class="relativetime">Sep 13 '14 at 21:13</span>
</div>
<div class="user-gravatar32">
<a href="http://askubuntu.com/users/29853/dennis"><div class="gravatar-wrapper-32"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/5abe7e11470c8b1f920dcf605ac15b4b.png" alt="" width="32" height="32"></div></a>
</div>
<div class="user-details">
<a href="http://askubuntu.com/users/29853/dennis">Dennis</a>
<div class="-flair">
<span class="reputation-score" title="reputation score " dir="ltr">1,653</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="12 silver badges"><span class="badge2"></span><span class="badgecount">12</span></span><span title="30 bronze badges"><span class="badge3"></span><span class="badgecount">30</span></span>
</div>
</div>
</div>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td class="votecell"></td>
<td>
<div id="comments-523690" class="comments ">
<table>
<tbody data-remaining-comments-count="0" data-canpost="false" data-cansee="true" data-comments-unavailable="false" data-addlink-disabled="true">
<tr id="comment-863656" class="comment ">
<td class="comment-actions">
<table>
<tbody>
<tr>
<td class=" comment-score">
<span title="number of 'useful comment' votes received" class="cool">1</span>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy"><code>/etc/default/cpufrequtils/</code> doesn't exist on my Ubuntu 14.04, it seems that the correct path is <code>/etc/init.d/cpufrequtils</code></span>
– <a href="http://askubuntu.com/users/79368/ecerulm" title="461 reputation" class="comment-user">ecerulm</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment863656_523690"><span title="2015-04-24 13:57:32Z" class="relativetime-clean">Apr 24 '15 at 13:57</span></a></span>
<span class="edited-yes" title="this comment was edited 1 time"></span>
</div>
</td>
</tr>
<tr id="comment-877670" class="comment ">
<td class="comment-actions">
<table>
<tbody>
<tr>
<td class=" comment-score">
<span title="number of 'useful comment' votes received" class="cool">1</span>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">I did this with my server but
I'm wondering if I should disable it after doing what I needed to do.
Is this going to kill my server in the long run?</span>
– <a href="http://askubuntu.com/users/396829/david-%e5%a4%a9%e5%ae%87-wong" title="101 reputation" class="comment-user">David 天宇 Wong</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment877670_523690"><span title="2015-05-07 20:13:09Z" class="relativetime-clean">May 7 '15 at 20:13</span></a></span>
</div>
</td>
</tr>
<tr id="comment-931393" class="comment ">
<td class="comment-actions">
<table>
<tbody>
<tr>
<td class=" comment-score">
<span title="number of 'useful comment' votes received" class="cool">2</span>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">@ecerulm: <code>/etc/default/cpufrequtils/</code> is sourced in <code>/etc/init.d/cpufrequtils</code> so it works just as well, and it is easier to maintain your own settings over package updates if configured in <code>/etc/default/cpufrequtils/</code>.</span>
– <a href="http://askubuntu.com/users/419514/j%c3%a9r%c3%b4me" title="101 reputation" class="comment-user">Jérôme</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment931393_523690"><span title="2015-07-15 21:31:45Z" class="relativetime-clean">Jul 15 '15 at 21:31</span></a></span>
</div>
</td>
</tr>
<tr id="comment-1104423" class="comment ">
<td class="comment-actions">
<table>
<tbody>
<tr>
<td class=" comment-score">
<span title="number of 'useful comment' votes received" class="cool">1</span>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">Actually, on my 3.19.0-51-generic ubuntu server "performance" is default overridden by <code>/etc/init.d/ondemand</code> Thus, reboot after <code>sudo update-rc.d ondemand disable</code> is all I needed.</span>
– <a href="http://askubuntu.com/users/420954/wick" title="108 reputation" class="comment-user">wick</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment1104423_523690"><span title="2016-03-05 19:24:20Z" class="relativetime-clean">Mar 5 at 19:24</span></a></span>
</div>
</td>
</tr>
<tr id="comment-1206270" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">My A8-4500M still throttles although the temperature is below 80C since I undervolted it</span>
– <a href="http://askubuntu.com/users/480305/suici-doga" title="437 reputation" class="comment-user">Suici Doga</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment1206270_523690"><span title="2016-07-18 01:20:57Z" class="relativetime-clean">Jul 18 at 1:20</span></a></span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="comments-link-523690" data-rep="50" data-reg="true">
<a class="js-add-link comments-link disabled-link " title="Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.">add a comment</a><span class="js-link-separator dno"> | </span>
<a class="js-show-link comments-link dno" title="expand to show all comments on this post" href="#" onclick=""></a>
</div>
</td>
</tr> </tbody></table>
</div>
<script>
var ados = ados || {}; ados.run = ados.run || [];
ados.run.push(function () { ados_add_placement(22,0,"adzerk1149004439",4).enableDynamicSiteSelection().setZone(30); });
</script>
<div class="everyonelovesstackoverflow adzerk-vote" id="adzerk1149004439"><div style="background-image: url( data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== ); width: 1px; height: 1px; display:none;"></div><div class="adzerk-vote-controls" style="display:none;"><div class="adzerk-vote-option adzerk-vote-up"><div class="adzerk-vote-icon"></div></div><div class="adzerk-vote-option adzerk-vote-down"><div class="adzerk-vote-icon"></div></div></div><div class="adzerk-vote-survey" style="display:none;"><form><span>No problem. We won't show you that ad again. Why didn't you like it?</span><ul><li><label><input value="12" name="downvoteReason" type="radio">Uninteresting</label></li><li><label><input value="13" name="downvoteReason" type="radio">Misleading</label></li><li><label><input value="14" name="downvoteReason" type="radio">Offensive</label></li><li><label><input value="15" name="downvoteReason" type="radio">Repetitive</label></li><li><label><input value="16" name="downvoteReason" type="radio">Other</label></li></ul><a href="#" class="adzerk-vote-cancel">Oops! I didn't mean to do this.</a></form></div><img style="position:absolute;" src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/i_002.gif" border="0" width="0px" height="0px"></div>
<a name="580785"></a>
<div id="answer-580785" class="answer" data-answerid="580785" itemscope="" itemtype="http://schema.org/Answer">
<table>
<tbody><tr>
<td class="votecell">
<div class="vote">
<input name="_id_" value="580785" type="hidden">
<a class="vote-up-off" title="This answer is useful">up vote</a>
<span itemprop="upvoteCount" class="vote-count-post ">8</span>
<a class="vote-down-off" title="This answer is not useful">down vote</a>
</div>
</td>
<td class="answercell">
<div class="post-text" itemprop="text">
<p>I cannot comment, so I had to resort to a new answer. For immediate results, make sure you do <code>sudo /etc/init.d/cpufrequtils restart</code> for the new frequency to kick in after you follow all of Dennie's steps.</p>
</div>
<table class="fw">
<tbody><tr>
<td class="vt">
<div class="post-menu"><a href="http://askubuntu.com/a/580785/558710" title="short permalink to this answer" class="short-link" id="link-post-580785">share</a><span class="lsep">|</span><a href="http://askubuntu.com/posts/580785/edit" class="suggest-edit-post" title="revise and improve this post">edit</a></div> </td>
<td class="post-signature" align="right">
<div class="user-info ">
<div class="user-action-time">
answered <span title="2015-02-02 10:39:32Z" class="relativetime">Feb 2 '15 at 10:39</span>
</div>
<div class="user-gravatar32">
<a href="http://askubuntu.com/users/47361/juanpi"><div class="gravatar-wrapper-32"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/a0a1a1c569677c1d74d957c39edd43df.png" alt="" width="32" height="32"></div></a>
</div>
<div class="user-details">
<a href="http://askubuntu.com/users/47361/juanpi">Juanpi</a>
<div class="-flair">
<span class="reputation-score" title="reputation score " dir="ltr">88</span><span title="1 silver badge"><span class="badge2"></span><span class="badgecount">1</span></span><span title="4 bronze badges"><span class="badge3"></span><span class="badgecount">4</span></span>
</div>
</div>
</div>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td class="votecell"></td>
<td>
<div id="comments-580785" class="comments dno">
<table>
<tbody data-remaining-comments-count="0" data-canpost="false" data-cansee="true" data-comments-unavailable="false" data-addlink-disabled="true">
<tr><td></td><td></td></tr>
</tbody>
</table>
</div>
<div id="comments-link-580785" data-rep="50" data-reg="true">
<a class="js-add-link comments-link disabled-link " title="Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.">add a comment</a><span class="js-link-separator dno"> | </span>
<a class="js-show-link comments-link dno" title="expand to show all comments on this post" href="#" onclick=""></a>
</div>
</td>
</tr> </tbody></table>
</div>
<a name="523645"></a>
<div id="answer-523645" class="answer" data-answerid="523645" itemscope="" itemtype="http://schema.org/Answer">
<table>
<tbody><tr>
<td class="votecell">
<div class="vote">
<input name="_id_" value="523645" type="hidden">
<a class="vote-up-off" title="This answer is useful">up vote</a>
<span itemprop="upvoteCount" class="vote-count-post ">5</span>
<a class="vote-down-off" title="This answer is not useful">down vote</a>
</div>
</td>
<td class="answercell">
<div class="post-text" itemprop="text">
<p>Try this:</p>
<pre><code>gksu gedit /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
</code></pre>
<p>Replace <code>ondemand</code> with <code>performance</code>. Repeat for every core (increase cpu0: cpu1, cpu2).</p>
<p>If you get save errors, use nano editor:</p>
<pre><code>sudo nano /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
</code></pre>
<p>Source: <a href="http://www.servernoobs.com/avoiding-cpu-speed-scaling-in-modern-linux-distributions-running-cpu-at-full-speed-tips/">Avoiding CPU Speed Scaling – Running CPU At Full Speed</a></p>
</div>
<table class="fw">
<tbody><tr>
<td class="vt">
<div class="post-menu"><a href="http://askubuntu.com/a/523645/558710" title="short permalink to this answer" class="short-link" id="link-post-523645">share</a><span class="lsep">|</span><a href="http://askubuntu.com/posts/523645/edit" class="suggest-edit-post" title="revise and improve this post">edit</a></div> </td>
<td class="post-signature" align="right">
<div class="user-info ">
<div class="user-action-time">
answered <span title="2014-09-13 18:39:44Z" class="relativetime">Sep 13 '14 at 18:39</span>
</div>
<div class="user-gravatar32">
<a href="http://askubuntu.com/users/269282/cornelius"><div class="gravatar-wrapper-32"><img src="14.04%20-%20How%20I%20can%20disable%20CPU%20frequency%20scaling%20and%20set%20the%20system%20to%20performance%3F%20-%20Ask%20Ubuntu_files/15894a0d103ab92a2cd3b1000efca418.png" alt="" width="32" height="32"></div></a>
</div>
<div class="user-details">
<a href="http://askubuntu.com/users/269282/cornelius">Cornelius</a>
<div class="-flair">
<span class="reputation-score" title="reputation score " dir="ltr">5,060</span><span title="2 gold badges"><span class="badge1"></span><span class="badgecount">2</span></span><span title="19 silver badges"><span class="badge2"></span><span class="badgecount">19</span></span><span title="45 bronze badges"><span class="badge3"></span><span class="badgecount">45</span></span>
</div>
</div>
</div>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td class="votecell"></td>
<td>
<div id="comments-523645" class="comments ">
<table>
<tbody data-remaining-comments-count="1" data-canpost="false" data-cansee="true" data-comments-unavailable="false" data-addlink-disabled="true">
<tr id="comment-712856" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">I stumbled with this site earlier, I cannot save the file, both mousepad and nano gives me errors.</span>
– <a href="http://askubuntu.com/users/29853/dennis" title="1,653 reputation" class="comment-user owner">Dennis</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment712856_523645"><span title="2014-09-13 19:10:06Z" class="relativetime-clean">Sep 13 '14 at 19:10</span></a></span>
</div>
</td>
</tr>
<tr id="comment-712862" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">@Dennis gedit gave errors to
me too, but the file got saved despite the errors. Close the editor and
open it again to see if it is saved.</span>
– <a href="http://askubuntu.com/users/269282/cornelius" title="5,060 reputation" class="comment-user">Cornelius</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment712862_523645"><span title="2014-09-13 19:12:43Z" class="relativetime-clean">Sep 13 '14 at 19:12</span></a></span>
</div>
</td>
</tr>
<tr id="comment-712873" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">You are right, it was indeed saved. But when I reboot the computer it goes back to ondemand.</span>
– <a href="http://askubuntu.com/users/29853/dennis" title="1,653 reputation" class="comment-user owner">Dennis</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment712873_523645"><span title="2014-09-13 19:25:52Z" class="relativetime-clean">Sep 13 '14 at 19:25</span></a></span>
</div>
</td>
</tr>
<tr id="comment-712874" class="comment ">
<td>
<table>
<tbody>
<tr>
<td class=" comment-score">
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
<td class="comment-text">
<div style="display: block;" class="comment-body">
<span class="comment-copy">@Dennis indeed, the same issue addressed <a href="http://askubuntu.com/questions/181461/cpu-frequency-scaling-methods-not-working-lubuntu-12-04?rq=1">here</a>, but no answer...</span>
– <a href="http://askubuntu.com/users/269282/cornelius" title="5,060 reputation" class="comment-user">Cornelius</a>
<span class="comment-date" dir="ltr"><a class="comment-link" href="#comment712874_523645"><span title="2014-09-13 19:27:22Z" class="relativetime-clean">Sep 13 '14 at 19:27</span></a></span>
</div>
</td>
</tr>
<tr id="comment-712927" class="comment ">
<td class="comment-actions">
<table>
<tbody>
<tr>
<td class=" comment-score">
<span title="number of 'useful comment' votes received" class="cool">1</span>
</td>
<td>