It's a harmless warning.mechilless wrote:i got this error when i set turbo. and even with a load on it is seems to stay at 700MHz
update-rc.d: using dependency based boot sequencing
update-rc.d: warning: default start runlevel arguments (2 3 4 5) do not match switch_cpu_governor Default-Start values (S)
update-rc.d: warning: default stop runlevel arguments (0 1 6) do not match switch_cpu_governor Default-Stop values (none)
asb wrote:It's a harmless warning.mechilless wrote:i got this error when i set turbo. and even with a load on it is seems to stay at 700MHz
update-rc.d: using dependency based boot sequencing
update-rc.d: warning: default start runlevel arguments (2 3 4 5) do not match switch_cpu_governor Default-Start values (S)
update-rc.d: warning: default stop runlevel arguments (0 1 6) do not match switch_cpu_governor Default-Stop values (none)
Code: Select all
sudo apt-get install stressCode: Select all
stress -c 1 & sleep 3 ; echo "CPU freq :" ; cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq ; killall stress
Code: Select all
Current core temperature: <?php
$temp = intval(file_get_contents("/sys/class/thermal/thermal_zone0/temp")); // read the file as a string[file_get_contents()], and convert to an int [intval()]so we can do math functions with it
$color = "#060"; // default colour
if($temp >= 60000) { $color = "#F00"; } //set to red if over 60 degrees (is in milliDegrees)
elseif($temp >= 50000) { $color = "#FC0"; } // set to yellow if over 50 degrees
echo "<span style=\"color:".$color.";\">".($temp/1000)."°C / ".(($temp/1000)+271.15)."K</span>";
?><br />// display in correct colour and convert to degrees. Also in Kelvin because why not?! :)
Current core frequency: <?php
$freq = intval(file_get_contents("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq"));
echo ($freq/1000)."MHz"; // covert to MHz from kHz
?><br />After 6hrs the apt-get upgrade is still running. This is nothing fancy, just the default configuration with X running.williamhbell wrote:Hi,
During the update, the Pi was turned off so that the update many not have completed correctly. How can the update be re-run? Is it enough to force the script in the deb file to re-run?
On the second Pi the update script is still running after 2hrs.
Thanks and best regards,
Will
dom wrote:RaTTuS wrote:/opt/vc/bin/vcgencmd measure_temp
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freqis a better way. Temperature is in milli-degrees C. Freq in kHz.Code: Select all
cat /sys/class/thermal/thermal_zone0/temp cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
Yes, here's how:nummy wrote:how do we do the nbench?
I downloaded nbench 2.2.3 from http://www.tux.org/~mayer/linux/bmark.html
do I just do "make" in the directory?
Code: Select all
cd
wget http://www.tux.org/~mayer/linux/nbench-byte-2.2.3.tar.gz
tar xvzf nbench-byte-2.2.3.tar.gz
cd nbench-byte-2.2.3/
make
./nbench
Code: Select all
TEST : Iterations/sec. : Old Index : New Index
: : Pentium 90* : AMD K6/233*
--------------------:------------------:-------------:------------
NUMERIC SORT : 216.6 : 5.55 : 1.82
STRING SORT : 30.711 : 13.72 : 2.12
dom wrote:RaTTuS wrote:/opt/vc/bin/vcgencmd measure_temp
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freqis a better way. Temperature is in milli-degrees C. Freq in kHz.Code: Select all
cat /sys/class/thermal/thermal_zone0/temp cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq

I built mine on linux PC with this toolchain:Sander wrote:FWIW: I was not yet able to reach higher performance![]()

It suggests you haven't done one of: updating, enabling overclock or rebooting.sghazagh wrote:I cannot run this two command!
It says, " No such file or directory"
Nope totally forgot!asb wrote:tytoons: did you reboot?
Code: Select all
update-rc.d: using dependency based boot sequencing
update-rc.d: warning: default start runlevel arguments (2 3 4 5) do not match switch_cpu_governor Default-Start values (S)
update-rc.d: warning: default stop runlevel arguments (0 1 6) do not match switch_cpu_governor Default-Stop values (none)
insserv: warning: script 'K01mountdisk' missing LSB tags and overrides
insserv: warning: script 'mountdisk' missing LSB tags and overrides
in terminal type - sudo raspi-configpygmy_giant wrote:How do you enable overclock - I just updated and rebooted - should I do something else to feel the benefits of turbo mode?