Don't like ads? PRO users don't see any ads ;-)
Guest

dean

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #! /bin/sh
  2. # Set the CPU Frequency Scaling governor to "performance"
  3.  
  4.  
  5. for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
  6.         do
  7.                 [ -f $CPUFREQ ] || continue
  8.                 echo -n performance > $CPUFREQ
  9.         done