A *real* simple solution that would give you the very basic information about a system would be PHPSysAdmin.<br><br><div class="gmail_quote">On Fri, May 13, 2011 at 9:23 PM, JD <span dir="ltr">&lt;<a href="mailto:jdp@algoloma.com">jdp@algoloma.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On 05/13/2011 03:51 PM, Omar Chanouha wrote:<br>
&gt; Hello Everyone,<br>
&gt;<br>
&gt;     I have 2 ubuntu servers that I maintain at work. I would like some<br>
&gt; way to be able to monitor them in order to detect intruders.<br>
&gt; Specifically things like CPU usage, RAM usage, HD usage, currently<br>
&gt; logged in users, running processes and IP connections. There seems to<br>
&gt; be a lot of options out there, but I am wondering what the people on<br>
&gt; this list use/would recommend because I know many on this list are<br>
&gt; seasoned sys admins. Command line tools are just as welcome as GUI<br>
&gt; apps, as long as they get the job done.<br>
<br>
</div>For 2 boxes, it would be hard to justify the effort for Nagios.  I&#39;d do<br>
something really easy like SysUsage. <a href="http://sysusage.darold.net/" target="_blank">http://sysusage.darold.net/</a>  You<br>
could deploy this in under 5 minutes.<br>
<br>
<br>
Anyway, go grab a copy of the source tgz and follow along.<br>
<br>
 tar zxvf SysUsage-Sar-3.0.tar.gz<br>
 cd Sys*0<br>
 sudo apt-get install sysstat rrdtool librrds-perl<br>
 perl Makefile.PL<br>
 make<br>
 sudo make install<br>
 sudo crontab -e<br>
<br>
Drop these lines into the root crontab.<br>
<br>
<br>
<br>
*/1 * * * * /usr/local/sysusage/bin/sysusage &gt; /dev/null 2&gt;&amp;1<br>
<br>
*/5 * * * * /usr/local/sysusage/bin/sysusagegraph &gt; /dev/null 2&gt;&amp;1<br>
<br>
I performed these steps using Cluster SSH on almost all our Ubuntu<br>
8.04.x servers; each installation worked.<br>
<div><div></div><div class="h5">_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
</div></div></blockquote></div><br>