I'm interested in seeing the %CPU use of an idle xbmc on other people's RPis. Here is a simple command that will look at the %CPU use of xbmc.bin once every 15 seconds for 1 min and log the output to a nice file.
Connect via ssh and look at the output of the following command:
$this->bbcode_second_pass_code('', 'for i in {1..4}; do ps -eo pcpu,args | sort -k 1 -r | head -2 | grep xbmc.bin>>xbmc_usage.log && sleep 15s; done && cat xbmc_usage.log')
Please post the output of xbmc_usage.log to this thread. Note that xbmc should be running but not playing a video or having RSS feeds running.
$this->bbcode_second_pass_code('', '% for i in {1..4}; do NOW=$(date) ; PERCENT=$(ps -eo pcpu,args | sort -k 1 -r | head -2 | grep xbmc.bin | sed 's/\/.*/%/') ; printf '%s\t%s\n' "$NOW" "$PERCENT">>xbmc_usage.log && sleep 15s; done && cat xbmc_usage.log
Tue May 14 15:01:11 EDT 2013 48.7 %
Tue May 14 15:01:12 EDT 2013 48.7 %
Tue May 14 15:01:14 EDT 2013 48.7 %
Tue May 14 15:01:15 EDT 2013 48.6 %')
