Talk:Computing Resources: Difference between revisions

From VrlWiki
Jump to navigation Jump to search
Jadrian Miles (talk | contribs)
No edit summary
Jadrian Miles (talk | contribs)
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
We should generate a standard-form table for this info by parsing <tt>/proc/cpuinfo</tt>, <tt>/proc/meminfo</tt>, and <tt>ping</tt>. We should also provide a table of resource consumption for common programs for comparison; for example, <tt>pitman</tt> and <tt>sargent</tt> appear not to be able to handle two simultaneous runs of the [[Diffusion Processing Pipeline]] each.  --[[User:Jadrian Miles|Jadrian Miles]] 15:38, 10 November 2008 (UTC)
We should generate a standard-form table for this info by parsing <tt>/proc/cpuinfo</tt>, <tt>/proc/meminfo</tt>, and <tt>ping</tt>. We should also provide a table of resource consumption for common programs for comparison; for example, <tt>pitman</tt> and <tt>sargent</tt> appear not to be able to handle two simultaneous runs of the [[Diffusion Processing Pipeline]] each.  --[[User:Jadrian Miles|Jadrian Miles]] 15:38, 10 November 2008 (UTC)


:{{infobox|<tt>ssh scope "grep -c processor /proc/cpuinfo; grep -m1 cpu\ MHz /proc/cpuinfo; grep -m1 model\ name /proc/cpuinfo; grep -m1 cache\ size /proc/cpuinfo; grep -m1 MemTotal /proc/meminfo"; ping -c1 $remotehost <nowiki>|</nowiki> head -1</tt>}}
:{{infobox|<tt>echo $remotehost; ssh $remotehost "grep -c processor /proc/cpuinfo; grep -m1 cpu\ MHz /proc/cpuinfo; grep -m1 model\ name /proc/cpuinfo; grep -m1 cache\ size /proc/cpuinfo; grep -m1 MemTotal /proc/meminfo"; ping -c1 $remotehost <nowiki>|</nowiki> head -1</tt>}}
:gives all the necessary info. --- [[User:Jadrian Miles|Jadrian Miles]] 17:06, 16 July 2009 (EDT)
:gives all the necessary info. --- [[User:Jadrian Miles|Jadrian Miles]] 17:06, 16 July 2009 (EDT)

Latest revision as of 21:06, 16 July 2009

We should generate a standard-form table for this info by parsing /proc/cpuinfo, /proc/meminfo, and ping. We should also provide a table of resource consumption for common programs for comparison; for example, pitman and sargent appear not to be able to handle two simultaneous runs of the Diffusion Processing Pipeline each. --Jadrian Miles 15:38, 10 November 2008 (UTC)

echo $remotehost; ssh $remotehost "grep -c processor /proc/cpuinfo; grep -m1 cpu\ MHz /proc/cpuinfo; grep -m1 model\ name /proc/cpuinfo; grep -m1 cache\ size /proc/cpuinfo; grep -m1 MemTotal /proc/meminfo"; ping -c1 $remotehost | head -1
gives all the necessary info. --- Jadrian Miles 17:06, 16 July 2009 (EDT)