<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CrossNodes &#124; iCafeMinds</title>
	<atom:link href="http://www.crossnodes.net/forum/blog.php/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.crossnodes.net/forum/blog.php</link>
	<description>It&#039;s all about helping and sharing ideas about iCafe business</description>
	<lastBuildDate>Thu, 22 Oct 2009 12:08:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Installing memcached on CentOS 5.3</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=88</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=88#comments</comments>
		<pubDate>Thu, 22 Oct 2009 12:08:44 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[multiple mecached]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=88</guid>
		<description><![CDATA[Memcached is a generic purpose distributed high performance memory object caching system to use in speeding up dynamic database driven websites by caching data and objects in memory to reduce the amount the database needs to be read. Memcached was originally developed by Danga Interactive for LiveJournal but is now used by many popular and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Memcached</strong> is a generic purpose distributed high performance memory object caching system to use in speeding up dynamic database driven websites by caching data and objects in memory to reduce the amount the database needs to be read.</p>
<p>Memcached was originally developed by <a href="http://www.danga.com/">Danga Interactive</a> for <a href="http://www.livejournal.com/">LiveJournal</a> but is now used by many popular and large community driven websites like <a href="http://www.slashdot.org/">Slashdot</a>, <a href="http://www.wikipedia.org/">Wikipedia</a>, <a href="http://sourceforge.net/">SourceForge</a>, <a href="http://www.gamefaqs.com/">GameFAQs</a>, <a href="http://www.facebook.com/">Facebook</a>, <a href="http://digg.com/">Digg</a>, <a href="http://www.fotolog.com/">Fotolog</a>, <a href="http://www.kayak.com/">Kayak</a> and like. It is being distributed under a permissive free software licence. Know more about who all are <a href="http://www.danga.com/memcached/users.bml">using memcached</a></p>
<p><strong>Things to consider before Installing memcached.</strong></p>
<ol>
<li>First, decide how much memory you want to give      memcached to use for caching.</li>
<li>Then decide if you want to run memcached on the default      port (11211) or not.</li>
<li>Next decide if you want memcached to listen to a      specific IP address if you have multiple IP addresses on your server</li>
<li>Finally decide, what user you want to run memcached as;      typically, you want to run it using Apache user so that Apache processes      can access memcache data</li>
</ol>
<p><strong>Installation Process</strong></p>
<p>1. If you don&#8217;t have rpmforge installed, follow this step.</p>
<p>wget http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rpm &#8211;install rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
yum install &#8211;enablerepo=rpmforge memcached</p>
<p>2. Start memcached.</p>
<p>memcached -d -m 512 -l 127.0.0.1 -p 11211 -u nobody</p>
<p>The &#8220;-m SIZE&#8221; is the flag for setting the memory requirements in MBs. Once this cache is filled memcache will just start to overwrite with newer content. Please experiment with this setting to find what works best for you.</p>
<p>3. Install PHP extension.</p>
<p>wget http://pecl.php.net/get/memcache-2.2.5.tgz</p>
<p>4. Extract tar file.</p>
<p>tar -xvf memcache-2.2.5.tgz</p>
<p>5. Open the directory.</p>
<p>cd memcache-2.2.5</p>
<p>6. Install the memchaced PHP extension.</p>
<p>phpize &amp;&amp; ./configure &#8211;enable-memcache &amp;&amp; make</p>
<p>7.  Copy the extension.</p>
<p>cp modules/memcache.so {PHP extension directory}</p>
<p>8. Edit your php.ini and add the following line.</p>
<p>extension=memcache.so</p>
<p>9. Last is restart your webserver.</p>
<p>10. If you check your server using a phpinfo page you should now see a MemCache section on the page. You can now fully use the MemCache functionality in your PHP.</p>
<p><strong>memcached pre-requissites</strong></p>
<p>yum -y install libevent libevent-devel</p>
<p><strong>How to make memcached run automatically when you restart your server?. Add this line to rc.local<br />
</strong></p>
<blockquote><p>#!/bin/sh<br />
echo &#8220;# Start memcached&#8221; &gt;&gt; /etc/rc.local<br />
echo &#8220;/usr/local/bin/memcached -d -m 1024 -u httpd -l 127.0.0.1&#8243; &gt;&gt; /etc/rc.local</p></blockquote>
<p><strong> </strong></p>
<p><strong>How to have a multiple memcached server.</strong></p>
<p>Create LocalSettings.php file and this line.</p>
<p>$wgMainCacheType = CACHE_MEMCACHED;<br />
$wgParserCacheType = CACHE_MEMCACHED; # optional<br />
$wgMessageCacheType = CACHE_MEMCACHED; # optional<br />
$wgMemCachedServers = array( &#8220;127.0.0.1:11211&#8243; );</p>
<p>$wgSessionsInMemcached = true; # optional</p>
<p>To use multiple servers (physically separate boxes or multiple caches on one machine on a large-memory x86 box), just add more items to the array. To increase the weight of a server (say, because it has twice the memory of the others and you want to spread usage evenly), make its entry a subarray:</p>
<blockquote><p>$wgMemCachedServers = array(&#8220;127.0.0.1:11211&#8243;, # one gig on this box<br />
array(&#8220;127.0.0.1:11211&#8243;, 2 ) # two gigs on the other box<br />
);</p></blockquote>
<p><strong>Security Note:</strong></p>
<p>Memcached has no security or authentication. Please ensure that your server is appropriately firewalled,<br />
and that the port(s) used for memcached servers are not publicly accessible. Otherwise, anyone on the internet can put data into and read data from your cache.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking a break</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=84</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=84#comments</comments>
		<pubDate>Mon, 12 Oct 2009 14:04:43 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[CrossNodes News]]></category>
		<category><![CDATA[crossnodes]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[icafe]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=84</guid>
		<description><![CDATA[My head keeps on popping ideas, I couldn&#8217;t sleep thinking the iCafe 2.2 final version. Ok after 2.2 beta I&#8217;ll be taking break for about 2 days then continue on delopment, iCafe final version will have new features and bug fixes which I have seen during my phase 3  testing this weekend. iCafe 2.2 client [...]]]></description>
			<content:encoded><![CDATA[<p>My head keeps on popping ideas, I couldn&#8217;t sleep thinking the iCafe 2.2 final version. Ok after 2.2 beta I&#8217;ll be taking break for about 2 days then continue on delopment, iCafe final version will have new features and bug fixes which I have seen during my phase 3  testing this weekend. iCafe 2.2 client we&#8217;ll have new GUI finishing what I have in mind before which I try to ignore during development. I&#8217;ll be focusing on Server and Client on this development.</p>
<p><strong>2.2 Final version<br />
</strong></p>
<blockquote><p>Check on Time left transfer<br />
Time transfer<br />
Group Payout<br />
Organize some menu<br />
Standard icons<br />
Print Monitoring<br />
Online registration for copy of iCafe timer<br />
Double check functionality of Promo&#8217;s<br />
Set expiration date for Promo&#8217;s<br />
Client Security and Policies will be set to server no more config to client<br />
Auto detect plugin and plugout of usb<br />
Restrict copying of files to USB (Prevent lanshop games to be copied)<br />
More features to be post&#8230;</p></blockquote>
<p>So if you ideas for comments please don&#8217;t hesitate to post it to our forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iCafe phase 2 testing</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=81</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=81#comments</comments>
		<pubDate>Sun, 04 Oct 2009 11:25:40 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[CrossNodes News]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=81</guid>
		<description><![CDATA[I spend my weekend testing and fixing bugs I found on iCafe timer, so releasing beta will not cause so much problem on setup and using it on production. all functionality seems working fine with no error except what I left I didn&#8217;t focus on that for a moment. So tomorrow I&#8217;ll write guide and [...]]]></description>
			<content:encoded><![CDATA[<p>I spend my weekend testing and fixing bugs I found on iCafe timer, so releasing beta will not cause so much problem on setup and using it on production. all functionality seems working fine with no error except what I left I didn&#8217;t focus on that for a moment.</p>
<p>So tomorrow I&#8217;ll write guide and procedure how to setup and used iCafe timer, before I&#8217;ll release beta version.</p>
<p>Hope you like this version as I put so much effort on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iCafe beta release</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=76</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=76#comments</comments>
		<pubDate>Wed, 30 Sep 2009 00:52:55 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[CrossNodes News]]></category>
		<category><![CDATA[2.2]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[icafe]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[server mode]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=76</guid>
		<description><![CDATA[As promised, iCafe timer v2.2 is will be available for preview this month, however I will have one more testing this weekend before preview release will be available. This is a beta release intended for final testing before release, although this is beta release you may used it for production all features working except that [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>As promised, iCafe timer v2.2 is will be available for preview this month, however I will have one more testing this weekend before preview release will be available.</p>
<p>This is a beta release intended for final testing before release, although this is beta release you may used it for production all features working except that features which I left behind that I have posted on forum.</p>
<p>If all goes well, the final v2.2 (Beta) will be released within the week.</p>
<p>I must apologise for the delay in putting this up — as usual, life has been busy.</p>
<p>There are two new features in particular I would like feedback on: To all promo system and remote file browsing, offline server mode.</p>
<p>To see changes please click <a title="iCafe changeslogs" href="http://www.crossnodes.net/forum/viewtopic.php?f=3&amp;t=27">here</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iCafe 2.2 Beta</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=73</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=73#comments</comments>
		<pubDate>Mon, 28 Sep 2009 03:14:45 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[CrossNodes News]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[icafe 2.2]]></category>
		<category><![CDATA[icafe beta]]></category>
		<category><![CDATA[monitoring]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=73</guid>
		<description><![CDATA[iCafe Timer 2.2 Beta version I have put all of my time to make sure all  functionality of iCafe Management software you can see in this software, although this version still in beta it can be used for production I have done almost 80% of testing with this version it seems not issue except features [...]]]></description>
			<content:encoded><![CDATA[<p>iCafe Timer 2.2 Beta version</p>
<p>I have put all of my time to make sure all  functionality of iCafe Management software you can see in this software, although this version still in beta it can be used for production I have done almost 80% of testing with this version it seems not issue except features that I haven&#8217;t finish.</p>
<p>With 2.2 version I have modified a lot of code and added new features which very much usuable. <strong>FREE</strong> version is limited only for 10 workstation all features is enabled.</p>
<p>If you wish to buy unlimited workstation please don&#8217;t hesitate to contact me.</p>
<p>Paid version include <strong>FREE</strong> update and upgrade with 999 workstation support via YM.<br />
iCafe timer cost 5, 000 in PHP.</p>
<p>iCafe timer client is tested running under Deepfreeze 6.0 with no issue.</p>
<p><strong>Features of iCafe timer:</strong></p>
<ul>
<li>Move and switch workstation</li>
<li>Prepaid/Postpay time</li>
<li>Prepaid Ticket</li>
<li>Members ship</li>
<li>Remote file browsing</li>
<li><em>-Browse</em></li>
<li><em>-Copy</em></li>
<li><em>-Delete</em></li>
<li><em>-Up folder</em></li>
<li><em>-rename</em></li>
<li><em>-execute application</em></li>
<li>View client process</li>
<li>Time swithcing prepaid time to postpay</li>
<li>flexible rate switching</li>
<li>timer for phone/mobile phone charging</li>
<li>system logs filtering</li>
<li>Workstation status reporting management center</li>
<li>detail sales report</li>
<li>POS system</li>
<li>Payroll system with time in and timeout</li>
<li>Promo System</li>
<li>iCafe timer DB repair</li>
<li>Enable/disable remote USB</li>
<li>Client Security</li>
<li>remotely control volume</li>
<li>remotely shutdown/restart/locked/unlocked</li>
<li>time pause/resume</li>
<li>Quick link to eload sites</li>
<li>Quick link to forums</li>
</ul>
<p>Timer sucessfully tested on this games:</p>
<p>LAN GAMES<br />
=========<br />
Counter Strike 1.3<br />
Counter Strike 1.6<br />
Battle Realms<br />
Starcraft<br />
Warcraft 3<br />
Bid for Power<br />
GTA IV<br />
GTA III<br />
Need for speed undercover<br />
Red Alert 2<br />
Red Alert 3</p>
<p>ONLINE GAMES:<br />
=============<br />
abs-cbn games<br />
e-games games<br />
mobius games<br />
Level up games<br />
line age III<br />
Xteel<br />
Gunz</p>
<p>List of features and bugs left for 2.2 Final Release:<br />
Remote Screenshot<br />
Download and upload from remote client<br />
workstation status<br />
Icons on pop up menu and pull down menu<br />
Print monitoring<br />
for the time consume add bonus time<br />
crash or power shutdown time auto pause</p>
<p>Please register to download free icafe timer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to secure OpenSSH</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=62</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=62#comments</comments>
		<pubDate>Wed, 02 Sep 2009 05:24:22 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[secure]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=62</guid>
		<description><![CDATA[People used telnet to connect to their machines, but the whole communication between their computers and the remote machine was sent in clear text(unencrypted), making sensitive information available to anyone who knew how to monitor their traffic. They had to find a way to prevent this. So SSH was born. OpenSSH originally, was created as [...]]]></description>
			<content:encoded><![CDATA[<p>People used telnet to connect to their machines, but the whole communication between their computers and the remote machine was sent in clear text(unencrypted), making sensitive information available to anyone who knew how to monitor their traffic. They had to find a way to prevent this. So SSH was born.</p>
<p><a onclick="javascript:urchinTracker('/outbound/article/www.openssh.org');" href="http://www.openssh.org/" target="_blank"><strong>O</strong>penSSH</a> originally, was  created as an open source alternative to the proprietary SSH offered by the  Finish company <a onclick="javascript:urchinTracker('/outbound/article/www.ssh.com');" href="http://www.ssh.com/" target="_blank">SSH Communications Security</a> but it  became very fast a de-facto standard in remote server management in access.  Unlike telnet, the whole communication is encrypted, making the process of  finding sensitive information by unauthorized people (almost) impossible. Even  if someone is able to decrypt the information, that will take a very long period  of time (and I&#8217;m talking about years and tens of years), making the information  useless when the decryption is done.</p>
<p>OpenSSH has many configuration options and authorization mechanisms. Below some config that need to change for secure SSH server.</p>
<p>Login to your shell remote server as root or sudo account.</p>
<p><em>Let&#8217;s check if Openssh is already installed into your machine, execute below command if installed it should give some output with installed version in your system.</em></p>
<p>rpm -qa | grep ssh</p>
<p>Let&#8217;s Close everything on SSH connection.</p>
<p><strong>Edit /etc/hosts.deny</strong></p>
<p>Copy paste shell command:</p>
<p>vi /etc/hosts.deny</p>
<p>#Block SSH except from hosts.allow<br />
sshd: ALL</p>
<p>Save and Quit editor</p>
<p><strong>Now edit /etc/hosts.allow</strong></p>
<p># Allow this IP to connect to this machine<br />
sshd: 192.168.0.222 (Change this to your IP address)</p>
<p>Save and Quit editor</p>
<p><strong>Now edit /etc/ssh/sshd_config</strong></p>
<p>Change default PORT 22</p>
<p><em>I suggest you to change to something randomly and higher than 1023, and also make sure that port is not a standard port for another service. You can do this by looking at <a onclick="javascript:urchinTracker('/outbound/article/www.iana.org');" href="http://www.iana.org/assignments/port-numbers" target="_blank">IANA&#8217;s Port Assignments</a>. This will prevent most scriptkiddies from attacking your SSH server and/or generating extra traffic.</em></p>
<p>Port 1024 (Up to you what port your going to used make sure to check above link)</p>
<p><strong>Change Protocol</strong></p>
<p>Protocol 2</p>
<p><strong>Do not allow root login</strong></p>
<p><em>Every attacker will want to gain root access into your box. Disabling root access will make the attacker&#8217;s life harder, because he first has to find an authorized user, crack into the box, then he has to make smooth to gain root access.</em></p>
<p>PermitRootlogin no</p>
<p><strong>Make use of Allow/Deny Users/Groups</strong></p>
<p><strong></strong><em>In most cases, not everyone should access your server remotely. <strong>AllowUsers</strong>, <strong>AllowGroups</strong>, <strong>DenyUsers</strong> and <strong>DenyGroups</strong> directives helps you to control better who&#8217;s going to have remote access to that box.</em></p>
<p>AllowUsers Juan Bitoy Steve</p>
<p>Save and Quit Editor</p>
<p><strong>Last thing restart sshd service</strong></p>
<p>/etc/init.d/sshd restart</p>
<p>If something missing from the guide let me know.</p>
<p><strong>Note:</strong> <em>Everytime you change config to your sshd_config always restart your sshd service so that your new configuration will take effect.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to prevent DoS denial attacks</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=59</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=59#comments</comments>
		<pubDate>Tue, 01 Sep 2009 01:41:25 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[denial of service]]></category>
		<category><![CDATA[dos]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=59</guid>
		<description><![CDATA[A denial-of-service attack (DoS attack) or distributed denial-of-service attack (DDoS attack) is an attempt to make a computer resource unavailable to its intended users. Source info here Add these lines to the end of /etc/rc.d/rc.local ################################### # Prevent DOS to our System ################################### echo 1 &#62; /proc/sys/net/ipv4/tcp_syncookies echo 1 &#62; /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses echo 1 &#62; /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts [...]]]></description>
			<content:encoded><![CDATA[<p>A <strong>denial-of-service attack</strong> (<strong>DoS attack</strong>) or <strong>distributed denial-of-service attack</strong> (<strong>DDoS attack</strong>) is an attempt to make a computer resource unavailable to its intended users. Source info <a title="Wiki" href="http://en.wikipedia.org/wiki/Denial-of-service_attack">here</a></p>
<p>Add these lines to the end of <strong>/etc/rc.d/rc.local</strong></p>
<p>###################################<br />
# Prevent DOS to our System<br />
###################################</p>
<p><tt>echo 1 &gt; /proc/sys/net/ipv4/tcp_syncookies<br />
echo 1 &gt; /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses<br />
echo 1 &gt; /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts</p>
<p></tt><tt># increase the SYN backlog queue<br />
echo 2048 &gt; /proc/sys/net/ipv4/tcp_max_syn_backlog<br />
</tt><tt>echo 0 &gt; /proc/sys/net/ipv4/tcp_sack<br />
echo 0 &gt; /proc/sys/net/ipv4/tcp_timestamps</p>
<p>echo 64000 &gt; /proc/sys/fs/file-max</p>
<p>ulimit -n 64000</tt><br />
<tt><br />
</tt><tt># increase the local port range<br />
echo 1024 65535 &gt; /proc/sys/net/ipv4/ip_local_port_range</p>
<p></tt><tt># stop source routing<br />
for i in /proc/sys/net/ipv4/conf/*/accept_source_route<br />
do<br />
echo 0 &gt; $i<br />
done</p>
<p># enable reverse-path filtering<br />
for i in /proc/sys/net/ipv4/conf/*/rp_filter<br />
do<br />
echo 1 &gt; $i<br />
done<br />
########################<br />
# End of Script<br />
########################</tt></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=59</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to auto backup using rsync</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=54</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=54#comments</comments>
		<pubDate>Tue, 01 Sep 2009 01:28:42 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=54</guid>
		<description><![CDATA[This guide will auto backup folder within same machine using rsync and crontab. You must be login as sudo account or root. Creating script vi /root/rsync.sh Copy paste this script. Remember to change the source folder or target folder folder=`date +%Y_%m_%d` rsync -avH  /folder/to/backup /backup/$folder &#62;&#62; /var/log/rsync/acc Make script executable. chmod +x rsync.sh or chmod [...]]]></description>
			<content:encoded><![CDATA[<p>This guide will auto backup folder within same machine using rsync and crontab. You must be login as sudo account or root.</p>
<p>Creating script</p>
<blockquote><p>vi /root/rsync.sh</p></blockquote>
<p>Copy paste this script. <em>Remember to change the source folder or target folder</em></p>
<blockquote><p>folder=`date +%Y_%m_%d`<br />
rsync -avH  /folder/to/backup /backup/$folder &gt;&gt; /var/log/rsync/acc</p></blockquote>
<p>Make script executable.</p>
<blockquote><p>chmod +x rsync.sh</p></blockquote>
<p>or</p>
<blockquote><p>chmod 755 rsync.sh</p></blockquote>
<p>Create the folder rsync in /var/log</p>
<blockquote><p>mkdir /var/log/rsync</p></blockquote>
<p>Now add this script to your crontab. (Check this <a title="Crontab" href="http://geekzine.org/2007/09/28/crontab/">link</a> for crontab reference)</p>
<p>crontab -e</p>
<blockquote><p># Run auto backup everynight<br />
0 4 * * * /root/rsync.sh</p></blockquote>
<p>Save the file&#8230; Hope this little guide helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=54</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to consider in starting iCafe business</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=49</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=49#comments</comments>
		<pubDate>Thu, 27 Aug 2009 15:01:06 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[iCafe Tips]]></category>
		<category><![CDATA[business tips]]></category>
		<category><![CDATA[expenses]]></category>
		<category><![CDATA[internet cafe]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=49</guid>
		<description><![CDATA[1. LEGAL SOFTWARE- yes customers wouldn&#8217;t care if your software is legal or not BUT authorities do. Remember this: using pirated software is equal to stealing, gusto mo bang matawag kang magnanakaw? 2. Registering your business is a MUST, and its not cheap. I suggest prepare at least 10K for this. If you have more [...]]]></description>
			<content:encoded><![CDATA[<p>1. LEGAL SOFTWARE- yes customers wouldn&#8217;t care if your software is legal or not BUT authorities do. Remember this: using pirated software is equal to stealing, gusto mo bang matawag kang magnanakaw?</p>
<p>2. Registering your business is a MUST, and its not cheap. I suggest prepare at least 10K for this. If you have more than than 10 pcs. of computer, then expect to pay more. At syempre depende rin ang cost ng permits and licenses sa amount na idedeclare mo as capital at sa dami ng computers mo., sometimes pati number of aircons, hubs, modem at xerox machine me additional na bayad din.</p>
<p>3. Don&#8217;t kill your competition by going on a price war, it will kill their business yes but in the end it would also kill yours.</p>
<p>4. Mind your overhead, bago ka magbitaw ng kahit singko have a projection how much you have to earn to break even.</p>
<p><strong>Possible Monthly expenses:</strong></p>
<ul>
<li> Rental (If your renting the space)</li>
<li> Electricity</li>
<li> Salary (for your self and your staff)</li>
<li> Telephone</li>
<li> Internet Connection</li>
<li> BIR Monthly Payment</li>
<li> Incidental Expenses</li>
<li> Repair and Maintenance</li>
<li> Supplies (Papers, Ink, Toners, Alcohol, atbpa)</li>
</ul>
<p>5. Check your location. Baka naman sankaterba na ang internet shop sa lugar nyo. Kapag tabi tabi kayo the tendency is cut throat ang competition. Also check the target market, lumalaki ba ang population sa lugar nyo o steady lang ang growth.</p>
<p>6. Maximize your space by offering additional products and services pero dapat connected somehow or need ng market mo.</p>
<p><em>Just found this tips while googling I found it useful so I post it here.</em></p>
<p>Real Author: <em>missywitchy</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=49</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking diskspace in linux</title>
		<link>http://www.crossnodes.net/forum/blog.php/?p=43</link>
		<comments>http://www.crossnodes.net/forum/blog.php/?p=43#comments</comments>
		<pubDate>Thu, 27 Aug 2009 14:47:28 +0000</pubDate>
		<dc:creator>CrossNodes</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[checking]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[diskspace]]></category>

		<guid isPermaLink="false">http://www.crossnodes.net/forum/blog.php/?p=43</guid>
		<description><![CDATA[Some command that you can execute to check for linux diskspace. ls –lSr (it will Show files by size, biggest last) du -s * &#124; sort -k1,1rn &#124; head (Show top disk users in current dir) df –h (Show free space on mounted filesystems) df –i (Show free inodes on mounted filesystems) fdisk –l (Show [...]]]></description>
			<content:encoded><![CDATA[<p>Some command that you can execute to check for linux diskspace.</p>
<p>ls –lSr (it will Show files by size, biggest last)<br />
du -s * | sort -k1,1rn | head (Show top disk users in current dir)<br />
df –h (Show free space on mounted filesystems)<br />
df –i (Show free inodes on mounted filesystems)<br />
fdisk –l (Show disks partitions sizes and types (run as root))<br />
rpm -q -a &#8211;qf &#8216;%10{SIZE}\t%{NAME}\n&#8217; | sort -k1,1n (List all packages by installed size)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crossnodes.net/forum/blog.php/?feed=rss2&amp;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">

	<title>CrossNodes | iCafeMinds</title>

	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />	
	<meta name="generator" content="WordPress 3.0" /> <!-- leave this for stats please -->

	<link rel="stylesheet" href="http://www.crossnodes.net/wp-content/themes/crossnodes/style.css" type="text/css" media="screen" />
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.crossnodes.net/forum/blog.php/?feed=rss2" />
	<link rel="alternate" type="text/xml" title="RSS .92" href="http://www.crossnodes.net/forum/blog.php/?feed=rss" />
	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://www.crossnodes.net/forum/blog.php/?feed=atom" />
	<link rel="pingback" href="http://www.crossnodes.net/xmlrpc.php" />

		<link rel='archives' title='October 2009' href='http://www.crossnodes.net/forum/blog.php/?m=200910' />
	<link rel='archives' title='September 2009' href='http://www.crossnodes.net/forum/blog.php/?m=200909' />
	<link rel='archives' title='August 2009' href='http://www.crossnodes.net/forum/blog.php/?m=200908' />
		<link rel='stylesheet' id='wp_dlmp_styles-css'  href='http://www.crossnodes.net/wp-content/plugins/download-monitor/page-addon/styles.css?ver=3.0' type='text/css' media='all' />
<script type='text/javascript' src='http://www.crossnodes.net/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
<script type='text/javascript' src='http://www.crossnodes.net/wp-content/plugins/wordpress-flickr-manager/js/jquery.lightbox.js?ver=3.0'></script>
<script type='text/javascript' src='http://www.crossnodes.net/wp-content/plugins/wordpress-flickr-manager/js/wfm-lightbox.php?ver=3.0'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.crossnodes.net/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.crossnodes.net/wp-includes/wlwmanifest.xml" /> 
<link rel='index' title='CrossNodes | iCafeMinds' href='http://www.crossnodes.net/forum/blog.php' />
<meta name="generator" content="WordPress 3.0" />
<link rel="stylesheet" href="http://www.crossnodes.net/wp-content/plugins/ajaxContact/acf_style.css" type="text/css" media="screen" />
<!-- WFM INSERT LIGHTBOX FILES -->
<link rel="stylesheet" href="http://www.crossnodes.net/wp-content/plugins/wordpress-flickr-manager/css/lightbox.css" type="text/css" />
<!-- WFM END INSERT -->

			
<script language="javascript">
	//<![CDATA[
	function insert_text(text, spaces, popup) {
		var tb = document.getElementById('comment');
		if (document.selection) { // IE
			tb.focus();
			sel = document.selection.createRange();
			sel.text = ' ' + text + ' ';
		} else if (tb.selectionStart || tb.selectionStart == 0) { //compliant browsers
			tb.value = tb.value.substring(0, tb.selectionStart) + ' ' + text + ' ' + tb.value.substring(tb.selectionEnd,tb.value.length);
		} else { //fallback
		 tb.value += ' ' + text + ' ';
		}
		return false;
	}

	function moreSmilies() {
		document.getElementById('wpu-smiley-more').style.display = 'inline';
		var toggle = document.getElementById('wpu-smiley-toggle');
		toggle.setAttribute("onclick", "return lessSmilies();");
		toggle.firstChild.nodeValue ="\u00AB\u00A0Less smilies"
		return false;
	}
    
	function lessSmilies() {
		document.getElementById('wpu-smiley-more').style.display = 'none';
		var toggle = document.getElementById('wpu-smiley-toggle');
		toggle.setAttribute("onclick", "return moreSmilies();");
		toggle.firstChild.nodeValue ="More smilies\u00A0\u00BB";
		return false;
	}
	// ]]>
</script>
	
</head>
<body>

<div id="bodywrap">
    <div id="container">
    
        <!-- main wrapper -->
        <div id="header">
          <h1><a href="http://www.crossnodes.net/forum/blog.php">CrossNodes | iCafeMinds</a></h1>
          <div id="navigation">
              <ul>
                <li class="page_item page-item-3"><a href="http://www.crossnodes.net/forum/blog.php/" title="Home">Home</a></li>
<li class="page_item page-item-2"><a href="http://www.crossnodes.net/forum/blog.php/?page_id=2" title="About Us">About Us</a></li>
<li class="page_item page-item-6 current_page_parent"><a href="http://www.crossnodes.net/forum/blog.php/?page_id=6" title="News">News</a></li>
<li class="page_item page-item-8"><a href="http://www.crossnodes.net/forum/blog.php/?page_id=8" title="Download">Download</a></li>
<li class="page_item page-item-11"><a href="http://www.crossnodes.net/forum/blog.php/?page_id=11" title="Contact Us">Contact Us</a></li>
<li class="page_item page-item-13"><a href="http://www.crossnodes.net/forum/blog.php/?page_id=13" title="Forum">Forum</a></li>
              </ul>
			                <form method="get" id="searchform" action="http://www.crossnodes.net/forum/blog.php/">
              <div id="searchbox">
                <div class="txta"><input type="text" value="" name="s" id="s" /></div>
                <input type="submit" id="searchsubmit" value="Search" /></span>
              </div>
              </form>
          </div>
        </div>      
       <!-- content -->
       <div id="content">
       
       		<div id="top"></div>
            <div id="mcontent">
            
            	<div id="post-wrapper">
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=88" rel="bookmark" title="Permanent Link to Installing memcached on CentOS 5.3">Installing memcached on CentOS 5.3</a></span>
                        <span class="post-date">October 22, 2009 @ 8:08 pm &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=apache" rel="tag">apache</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=memcached" rel="tag">memcached</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=multiple-mecached" rel="tag">multiple mecached</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=security" rel="tag">security</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=web-server" rel="tag">web server</a><br /></span>

						<div class="post-box">
							<p><strong>Memcached</strong> is a generic purpose distributed high performance memory object caching system to use in speeding up dynamic database driven websites by caching data and objects in memory to reduce the amount the database needs to be read.</p>
<p>Memcached was originally developed by <a href="http://www.danga.com/">Danga Interactive</a> for <a href="http://www.livejournal.com/">LiveJournal</a> but is now used by many popular and large community driven websites like <a href="http://www.slashdot.org/">Slashdot</a>, <a href="http://www.wikipedia.org/">Wikipedia</a>, <a href="http://sourceforge.net/">SourceForge</a>, <a href="http://www.gamefaqs.com/">GameFAQs</a>, <a href="http://www.facebook.com/">Facebook</a>, <a href="http://digg.com/">Digg</a>, <a href="http://www.fotolog.com/">Fotolog</a>, <a href="http://www.kayak.com/">Kayak</a> and like. It is being distributed under a permissive free software licence. Know more about who all are <a href="http://www.danga.com/memcached/users.bml">using memcached</a></p>
<p><strong>Things to consider before Installing memcached.</strong></p>
<ol>
<li>First, decide how much memory you want to give      memcached to use for caching.</li>
<li>Then decide if you want to run memcached on the default      port (11211) or not.</li>
<li>Next decide if you want memcached to listen to a      specific IP address if you have multiple IP addresses on your server</li>
<li>Finally decide, what user you want to run memcached as;      typically, you want to run it using Apache user so that Apache processes      can access memcache data</li>
</ol>
<p><strong>Installation Process</strong></p>
<p>1. If you don&#8217;t have rpmforge installed, follow this step.</p>
<p>wget http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rpm &#8211;install rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
yum install &#8211;enablerepo=rpmforge memcached</p>
<p>2. Start memcached.</p>
<p>memcached -d -m 512 -l 127.0.0.1 -p 11211 -u nobody</p>
<p>The &#8220;-m SIZE&#8221; is the flag for setting the memory requirements in MBs. Once this cache is filled memcache will just start to overwrite with newer content. Please experiment with this setting to find what works best for you.</p>
<p>3. Install PHP extension.</p>
<p>wget http://pecl.php.net/get/memcache-2.2.5.tgz</p>
<p>4. Extract tar file.</p>
<p>tar -xvf memcache-2.2.5.tgz</p>
<p>5. Open the directory.</p>
<p>cd memcache-2.2.5</p>
<p>6. Install the memchaced PHP extension.</p>
<p>phpize &amp;&amp; ./configure &#8211;enable-memcache &amp;&amp; make</p>
<p>7.  Copy the extension.</p>
<p>cp modules/memcache.so {PHP extension directory}</p>
<p>8. Edit your php.ini and add the following line.</p>
<p>extension=memcache.so</p>
<p>9. Last is restart your webserver.</p>
<p>10. If you check your server using a phpinfo page you should now see a MemCache section on the page. You can now fully use the MemCache functionality in your PHP.</p>
<p><strong>memcached pre-requissites</strong></p>
<p>yum -y install libevent libevent-devel</p>
<p><strong>How to make memcached run automatically when you restart your server?. Add this line to rc.local<br />
</strong></p>
<blockquote><p>#!/bin/sh<br />
echo &#8220;# Start memcached&#8221; &gt;&gt; /etc/rc.local<br />
echo &#8220;/usr/local/bin/memcached -d -m 1024 -u httpd -l 127.0.0.1&#8243; &gt;&gt; /etc/rc.local</p></blockquote>
<p><strong> </strong></p>
<p><strong>How to have a multiple memcached server.</strong></p>
<p>Create LocalSettings.php file and this line.</p>
<p>$wgMainCacheType = CACHE_MEMCACHED;<br />
$wgParserCacheType = CACHE_MEMCACHED; # optional<br />
$wgMessageCacheType = CACHE_MEMCACHED; # optional<br />
$wgMemCachedServers = array( &#8220;127.0.0.1:11211&#8243; );</p>
<p>$wgSessionsInMemcached = true; # optional</p>
<p>To use multiple servers (physically separate boxes or multiple caches on one machine on a large-memory x86 box), just add more items to the array. To increase the weight of a server (say, because it has twice the memory of the others and you want to spread usage evenly), make its entry a subarray:</p>
<blockquote><p>$wgMemCachedServers = array(&#8220;127.0.0.1:11211&#8243;, # one gig on this box<br />
array(&#8220;127.0.0.1:11211&#8243;, 2 ) # two gigs on the other box<br />
);</p></blockquote>
<p><strong>Security Note:</strong></p>
<p>Memcached has no security or authentication. Please ensure that your server is appropriately firewalled,<br />
and that the port(s) used for memcached servers are not publicly accessible. Otherwise, anyone on the internet can put data into and read data from your cache.</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=88" rel="bookmark" title="Permanent Link to Installing memcached on CentOS 5.3" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=88#respond" title="Comment on Installing memcached on CentOS 5.3">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="View all posts in Linux Tips &amp; Tricks" rel="category">Linux Tips &amp; Tricks</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=84" rel="bookmark" title="Permanent Link to Taking a break">Taking a break</a></span>
                        <span class="post-date">October 12, 2009 @ 10:04 pm &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=crossnodes" rel="tag">crossnodes</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=features" rel="tag">features</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=final" rel="tag">final</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=icafe" rel="tag">icafe</a><br /></span>

						<div class="post-box">
							<p>My head keeps on popping ideas, I couldn&#8217;t sleep thinking the iCafe 2.2 final version. Ok after 2.2 beta I&#8217;ll be taking break for about 2 days then continue on delopment, iCafe final version will have new features and bug fixes which I have seen during my phase 3  testing this weekend. iCafe 2.2 client we&#8217;ll have new GUI finishing what I have in mind before which I try to ignore during development. I&#8217;ll be focusing on Server and Client on this development.</p>
<p><strong>2.2 Final version<br />
</strong></p>
<blockquote><p>Check on Time left transfer<br />
Time transfer<br />
Group Payout<br />
Organize some menu<br />
Standard icons<br />
Print Monitoring<br />
Online registration for copy of iCafe timer<br />
Double check functionality of Promo&#8217;s<br />
Set expiration date for Promo&#8217;s<br />
Client Security and Policies will be set to server no more config to client<br />
Auto detect plugin and plugout of usb<br />
Restrict copying of files to USB (Prevent lanshop games to be copied)<br />
More features to be post&#8230;</p></blockquote>
<p>So if you ideas for comments please don&#8217;t hesitate to post it to our forum.</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=84" rel="bookmark" title="Permanent Link to Taking a break" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=84#respond" title="Comment on Taking a break">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=1" title="View all posts in CrossNodes News" rel="category">CrossNodes News</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=81" rel="bookmark" title="Permanent Link to iCafe phase 2 testing">iCafe phase 2 testing</a></span>
                        <span class="post-date">October 4, 2009 @ 7:25 pm &nbsp; </span>

						<div class="post-box">
							<p>I spend my weekend testing and fixing bugs I found on iCafe timer, so releasing beta will not cause so much problem on setup and using it on production. all functionality seems working fine with no error except what I left I didn&#8217;t focus on that for a moment.</p>
<p>So tomorrow I&#8217;ll write guide and procedure how to setup and used iCafe timer, before I&#8217;ll release beta version.</p>
<p>Hope you like this version as I put so much effort on it.</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=81" rel="bookmark" title="Permanent Link to iCafe phase 2 testing" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=81#respond" title="Comment on iCafe phase 2 testing">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=1" title="View all posts in CrossNodes News" rel="category">CrossNodes News</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=76" rel="bookmark" title="Permanent Link to iCafe beta release">iCafe beta release</a></span>
                        <span class="post-date">September 30, 2009 @ 8:52 am &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=2-2" rel="tag">2.2</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=beta" rel="tag">beta</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=icafe" rel="tag">icafe</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=offline" rel="tag">offline</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=server-mode" rel="tag">server mode</a><br /></span>

						<div class="post-box">
							<div>
<p>As promised, iCafe timer v2.2 is will be available for preview this month, however I will have one more testing this weekend before preview release will be available.</p>
<p>This is a beta release intended for final testing before release, although this is beta release you may used it for production all features working except that features which I left behind that I have posted on forum.</p>
<p>If all goes well, the final v2.2 (Beta) will be released within the week.</p>
<p>I must apologise for the delay in putting this up — as usual, life has been busy.</p>
<p>There are two new features in particular I would like feedback on: To all promo system and remote file browsing, offline server mode.</p>
<p>To see changes please click <a title="iCafe changeslogs" href="http://www.crossnodes.net/forum/viewtopic.php?f=3&amp;t=27">here</a></div>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=76" rel="bookmark" title="Permanent Link to iCafe beta release" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=76#respond" title="Comment on iCafe beta release">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=1" title="View all posts in CrossNodes News" rel="category">CrossNodes News</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=73" rel="bookmark" title="Permanent Link to iCafe 2.2 Beta">iCafe 2.2 Beta</a></span>
                        <span class="post-date">September 28, 2009 @ 11:14 am &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=features" rel="tag">features</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=icafe-2-2" rel="tag">icafe 2.2</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=icafe-beta" rel="tag">icafe beta</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=monitoring" rel="tag">monitoring</a><br /></span>

						<div class="post-box">
							<p>iCafe Timer 2.2 Beta version</p>
<p>I have put all of my time to make sure all  functionality of iCafe Management software you can see in this software, although this version still in beta it can be used for production I have done almost 80% of testing with this version it seems not issue except features that I haven&#8217;t finish.</p>
<p>With 2.2 version I have modified a lot of code and added new features which very much usuable. <strong>FREE</strong> version is limited only for 10 workstation all features is enabled.</p>
<p>If you wish to buy unlimited workstation please don&#8217;t hesitate to contact me.</p>
<p>Paid version include <strong>FREE</strong> update and upgrade with 999 workstation support via YM.<br />
iCafe timer cost 5, 000 in PHP.</p>
<p>iCafe timer client is tested running under Deepfreeze 6.0 with no issue.</p>
<p><strong>Features of iCafe timer:</strong></p>
<ul>
<li>Move and switch workstation</li>
<li>Prepaid/Postpay time</li>
<li>Prepaid Ticket</li>
<li>Members ship</li>
<li>Remote file browsing</li>
<li><em>-Browse</em></li>
<li><em>-Copy</em></li>
<li><em>-Delete</em></li>
<li><em>-Up folder</em></li>
<li><em>-rename</em></li>
<li><em>-execute application</em></li>
<li>View client process</li>
<li>Time swithcing prepaid time to postpay</li>
<li>flexible rate switching</li>
<li>timer for phone/mobile phone charging</li>
<li>system logs filtering</li>
<li>Workstation status reporting management center</li>
<li>detail sales report</li>
<li>POS system</li>
<li>Payroll system with time in and timeout</li>
<li>Promo System</li>
<li>iCafe timer DB repair</li>
<li>Enable/disable remote USB</li>
<li>Client Security</li>
<li>remotely control volume</li>
<li>remotely shutdown/restart/locked/unlocked</li>
<li>time pause/resume</li>
<li>Quick link to eload sites</li>
<li>Quick link to forums</li>
</ul>
<p>Timer sucessfully tested on this games:</p>
<p>LAN GAMES<br />
=========<br />
Counter Strike 1.3<br />
Counter Strike 1.6<br />
Battle Realms<br />
Starcraft<br />
Warcraft 3<br />
Bid for Power<br />
GTA IV<br />
GTA III<br />
Need for speed undercover<br />
Red Alert 2<br />
Red Alert 3</p>
<p>ONLINE GAMES:<br />
=============<br />
abs-cbn games<br />
e-games games<br />
mobius games<br />
Level up games<br />
line age III<br />
Xteel<br />
Gunz</p>
<p>List of features and bugs left for 2.2 Final Release:<br />
Remote Screenshot<br />
Download and upload from remote client<br />
workstation status<br />
Icons on pop up menu and pull down menu<br />
Print monitoring<br />
for the time consume add bonus time<br />
crash or power shutdown time auto pause</p>
<p>Please register to download free icafe timer.</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=73" rel="bookmark" title="Permanent Link to iCafe 2.2 Beta" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=73#comments" title="Comment on iCafe 2.2 Beta">1 </a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=1" title="View all posts in CrossNodes News" rel="category">CrossNodes News</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=62" rel="bookmark" title="Permanent Link to How to secure OpenSSH">How to secure OpenSSH</a></span>
                        <span class="post-date">September 2, 2009 @ 1:24 pm &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=hosts" rel="tag">hosts</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=openssh" rel="tag">openssh</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=secure" rel="tag">secure</a><br /></span>

						<div class="post-box">
							<p>People used telnet to connect to their machines, but the whole communication between their computers and the remote machine was sent in clear text(unencrypted), making sensitive information available to anyone who knew how to monitor their traffic. They had to find a way to prevent this. So SSH was born.</p>
<p><a onclick="javascript:urchinTracker('/outbound/article/www.openssh.org');" href="http://www.openssh.org/" target="_blank"><strong>O</strong>penSSH</a> originally, was  created as an open source alternative to the proprietary SSH offered by the  Finish company <a onclick="javascript:urchinTracker('/outbound/article/www.ssh.com');" href="http://www.ssh.com/" target="_blank">SSH Communications Security</a> but it  became very fast a de-facto standard in remote server management in access.  Unlike telnet, the whole communication is encrypted, making the process of  finding sensitive information by unauthorized people (almost) impossible. Even  if someone is able to decrypt the information, that will take a very long period  of time (and I&#8217;m talking about years and tens of years), making the information  useless when the decryption is done.</p>
<p>OpenSSH has many configuration options and authorization mechanisms. Below some config that need to change for secure SSH server.</p>
<p>Login to your shell remote server as root or sudo account.</p>
<p><em>Let&#8217;s check if Openssh is already installed into your machine, execute below command if installed it should give some output with installed version in your system.</em></p>
<p>rpm -qa | grep ssh</p>
<p>Let&#8217;s Close everything on SSH connection.</p>
<p><strong>Edit /etc/hosts.deny</strong></p>
<p>Copy paste shell command:</p>
<p>vi /etc/hosts.deny</p>
<p>#Block SSH except from hosts.allow<br />
sshd: ALL</p>
<p>Save and Quit editor</p>
<p><strong>Now edit /etc/hosts.allow</strong></p>
<p># Allow this IP to connect to this machine<br />
sshd: 192.168.0.222 (Change this to your IP address)</p>
<p>Save and Quit editor</p>
<p><strong>Now edit /etc/ssh/sshd_config</strong></p>
<p>Change default PORT 22</p>
<p><em>I suggest you to change to something randomly and higher than 1023, and also make sure that port is not a standard port for another service. You can do this by looking at <a onclick="javascript:urchinTracker('/outbound/article/www.iana.org');" href="http://www.iana.org/assignments/port-numbers" target="_blank">IANA&#8217;s Port Assignments</a>. This will prevent most scriptkiddies from attacking your SSH server and/or generating extra traffic.</em></p>
<p>Port 1024 (Up to you what port your going to used make sure to check above link)</p>
<p><strong>Change Protocol</strong></p>
<p>Protocol 2</p>
<p><strong>Do not allow root login</strong></p>
<p><em>Every attacker will want to gain root access into your box. Disabling root access will make the attacker&#8217;s life harder, because he first has to find an authorized user, crack into the box, then he has to make smooth to gain root access.</em></p>
<p>PermitRootlogin no</p>
<p><strong>Make use of Allow/Deny Users/Groups</strong></p>
<p><strong></strong><em>In most cases, not everyone should access your server remotely. <strong>AllowUsers</strong>, <strong>AllowGroups</strong>, <strong>DenyUsers</strong> and <strong>DenyGroups</strong> directives helps you to control better who&#8217;s going to have remote access to that box.</em></p>
<p>AllowUsers Juan Bitoy Steve</p>
<p>Save and Quit Editor</p>
<p><strong>Last thing restart sshd service</strong></p>
<p>/etc/init.d/sshd restart</p>
<p>If something missing from the guide let me know.</p>
<p><strong>Note:</strong> <em>Everytime you change config to your sshd_config always restart your sshd service so that your new configuration will take effect.</em></p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=62" rel="bookmark" title="Permanent Link to How to secure OpenSSH" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=62#respond" title="Comment on How to secure OpenSSH">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="View all posts in Linux Tips &amp; Tricks" rel="category">Linux Tips &amp; Tricks</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=59" rel="bookmark" title="Permanent Link to How to prevent DoS denial attacks">How to prevent DoS denial attacks</a></span>
                        <span class="post-date">September 1, 2009 @ 9:41 am &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=attack" rel="tag">attack</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=denial-of-service" rel="tag">denial of service</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=dos" rel="tag">dos</a><br /></span>

						<div class="post-box">
							<p>A <strong>denial-of-service attack</strong> (<strong>DoS attack</strong>) or <strong>distributed denial-of-service attack</strong> (<strong>DDoS attack</strong>) is an attempt to make a computer resource unavailable to its intended users. Source info <a title="Wiki" href="http://en.wikipedia.org/wiki/Denial-of-service_attack">here</a></p>
<p>Add these lines to the end of <strong>/etc/rc.d/rc.local</strong></p>
<p>###################################<br />
# Prevent DOS to our System<br />
###################################</p>
<p><tt>echo 1 &gt; /proc/sys/net/ipv4/tcp_syncookies<br />
echo 1 &gt; /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses<br />
echo 1 &gt; /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts</p>
<p></tt><tt># increase the SYN backlog queue<br />
echo 2048 &gt; /proc/sys/net/ipv4/tcp_max_syn_backlog<br />
</tt><tt>echo 0 &gt; /proc/sys/net/ipv4/tcp_sack<br />
echo 0 &gt; /proc/sys/net/ipv4/tcp_timestamps</p>
<p>echo 64000 &gt; /proc/sys/fs/file-max</p>
<p>ulimit -n 64000</tt><br />
<tt><br />
</tt><tt># increase the local port range<br />
echo 1024 65535 &gt; /proc/sys/net/ipv4/ip_local_port_range</p>
<p></tt><tt># stop source routing<br />
for i in /proc/sys/net/ipv4/conf/*/accept_source_route<br />
do<br />
echo 0 &gt; $i<br />
done</p>
<p># enable reverse-path filtering<br />
for i in /proc/sys/net/ipv4/conf/*/rp_filter<br />
do<br />
echo 1 &gt; $i<br />
done<br />
########################<br />
# End of Script<br />
########################</tt></p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=59" rel="bookmark" title="Permanent Link to How to prevent DoS denial attacks" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=59#respond" title="Comment on How to prevent DoS denial attacks">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="View all posts in Linux Tips &amp; Tricks" rel="category">Linux Tips &amp; Tricks</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=54" rel="bookmark" title="Permanent Link to How to auto backup using rsync">How to auto backup using rsync</a></span>
                        <span class="post-date">September 1, 2009 @ 9:28 am &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=auto" rel="tag">auto</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=backup" rel="tag">backup</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=crontab" rel="tag">crontab</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=rsync" rel="tag">rsync</a><br /></span>

						<div class="post-box">
							<p>This guide will auto backup folder within same machine using rsync and crontab. You must be login as sudo account or root.</p>
<p>Creating script</p>
<blockquote><p>vi /root/rsync.sh</p></blockquote>
<p>Copy paste this script. <em>Remember to change the source folder or target folder</em></p>
<blockquote><p>folder=`date +%Y_%m_%d`<br />
rsync -avH  /folder/to/backup /backup/$folder &gt;&gt; /var/log/rsync/acc</p></blockquote>
<p>Make script executable.</p>
<blockquote><p>chmod +x rsync.sh</p></blockquote>
<p>or</p>
<blockquote><p>chmod 755 rsync.sh</p></blockquote>
<p>Create the folder rsync in /var/log</p>
<blockquote><p>mkdir /var/log/rsync</p></blockquote>
<p>Now add this script to your crontab. (Check this <a title="Crontab" href="http://geekzine.org/2007/09/28/crontab/">link</a> for crontab reference)</p>
<p>crontab -e</p>
<blockquote><p># Run auto backup everynight<br />
0 4 * * * /root/rsync.sh</p></blockquote>
<p>Save the file&#8230; Hope this little guide helps!</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=54" rel="bookmark" title="Permanent Link to How to auto backup using rsync" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=54#respond" title="Comment on How to auto backup using rsync">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="View all posts in Linux Tips &amp; Tricks" rel="category">Linux Tips &amp; Tricks</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=49" rel="bookmark" title="Permanent Link to What to consider in starting iCafe business">What to consider in starting iCafe business</a></span>
                        <span class="post-date">August 27, 2009 @ 11:01 pm &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=business-tips" rel="tag">business tips</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=expenses" rel="tag">expenses</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=internet-cafe" rel="tag">internet cafe</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=software" rel="tag">software</a><br /></span>

						<div class="post-box">
							<p>1. LEGAL SOFTWARE- yes customers wouldn&#8217;t care if your software is legal or not BUT authorities do. Remember this: using pirated software is equal to stealing, gusto mo bang matawag kang magnanakaw?</p>
<p>2. Registering your business is a MUST, and its not cheap. I suggest prepare at least 10K for this. If you have more than than 10 pcs. of computer, then expect to pay more. At syempre depende rin ang cost ng permits and licenses sa amount na idedeclare mo as capital at sa dami ng computers mo., sometimes pati number of aircons, hubs, modem at xerox machine me additional na bayad din.</p>
<p>3. Don&#8217;t kill your competition by going on a price war, it will kill their business yes but in the end it would also kill yours.</p>
<p>4. Mind your overhead, bago ka magbitaw ng kahit singko have a projection how much you have to earn to break even.</p>
<p><strong>Possible Monthly expenses:</strong></p>
<ul>
<li> Rental (If your renting the space)</li>
<li> Electricity</li>
<li> Salary (for your self and your staff)</li>
<li> Telephone</li>
<li> Internet Connection</li>
<li> BIR Monthly Payment</li>
<li> Incidental Expenses</li>
<li> Repair and Maintenance</li>
<li> Supplies (Papers, Ink, Toners, Alcohol, atbpa)</li>
</ul>
<p>5. Check your location. Baka naman sankaterba na ang internet shop sa lugar nyo. Kapag tabi tabi kayo the tendency is cut throat ang competition. Also check the target market, lumalaki ba ang population sa lugar nyo o steady lang ang growth.</p>
<p>6. Maximize your space by offering additional products and services pero dapat connected somehow or need ng market mo.</p>
<p><em>Just found this tips while googling I found it useful so I post it here.</em></p>
<p>Real Author: <em>missywitchy</em></p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=49" rel="bookmark" title="Permanent Link to What to consider in starting iCafe business" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=49#comments" title="Comment on What to consider in starting iCafe business">1 </a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=13" title="View all posts in iCafe Tips" rel="category">iCafe Tips</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                
                		<span class="post-h1"><a href="http://www.crossnodes.net/forum/blog.php/?p=43" rel="bookmark" title="Permanent Link to Checking diskspace in linux">Checking diskspace in linux</a></span>
                        <span class="post-date">August 27, 2009 @ 10:47 pm &nbsp; <strong>Tags: &nbsp; </strong><a href="http://www.crossnodes.net/forum/blog.php/?tag=checking" rel="tag">checking</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=command" rel="tag">command</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=diskspace" rel="tag">diskspace</a>, <a href="http://www.crossnodes.net/forum/blog.php/?tag=linux-tips-tricks" rel="tag">Linux Tips &amp; Tricks</a><br /></span>

						<div class="post-box">
							<p>Some command that you can execute to check for linux diskspace.</p>
<p>ls –lSr (it will Show files by size, biggest last)<br />
du -s * | sort -k1,1rn | head (Show top disk users in current dir)<br />
df –h (Show free space on mounted filesystems)<br />
df –i (Show free inodes on mounted filesystems)<br />
fdisk –l (Show disks partitions sizes and types (run as root))<br />
rpm -q -a &#8211;qf &#8216;%10{SIZE}\t%{NAME}\n&#8217; | sort -k1,1n (List all packages by installed size)</p>
                        </div>
                        
                        <div class="post-bot">
                        
								<a href="http://www.crossnodes.net/forum/blog.php/?p=43" rel="bookmark" title="Permanent Link to Checking diskspace in linux" class="post-perma">Permalink</a> 
								
								<span class="post-comments"><a href="http://www.crossnodes.net/forum/blog.php/?p=43#respond" title="Comment on Checking diskspace in linux">0</a></span> 
								
                                <span class="post-ftrtxt">Comments</span>

                                <span class="post-ftrtxt"></span>
                                                        
                                <span class="post-cat">Posted in <a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="View all posts in Linux Tips &amp; Tricks" rel="category">Linux Tips &amp; Tricks</a></span>
                                                        
                           <br class="clear" />                  
                     
                        </div>

                       <div class="post-comments-template">
                                                 </div>   
                   
                    
				                                </div>
                
                <div id="sidebar">
                	<div id="sb-top"></div>
                    <div id="sb-content">
                    	<ul>
                        	<li>
                            	<h4><strong>*</strong> Recent Posts</h4>
                                <ul>
                                	<li><a href="http://www.crossnodes.net/forum/blog.php/?p=88" rel="bookmark" title=" Link: Installing memcached on CentOS 5.3">Installing memcached on CentOS 5.3</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=84" rel="bookmark" title=" Link: Taking a break">Taking a break</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=81" rel="bookmark" title=" Link: iCafe phase 2 testing">iCafe phase 2 testing</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=76" rel="bookmark" title=" Link: iCafe beta release">iCafe beta release</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=73" rel="bookmark" title=" Link: iCafe 2.2 Beta">iCafe 2.2 Beta</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=62" rel="bookmark" title=" Link: How to secure OpenSSH">How to secure OpenSSH</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=59" rel="bookmark" title=" Link: How to prevent DoS denial attacks">How to prevent DoS denial attacks</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=54" rel="bookmark" title=" Link: How to auto backup using rsync">How to auto backup using rsync</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=49" rel="bookmark" title=" Link: What to consider in starting iCafe business">What to consider in starting iCafe business</a></li><li><a href="http://www.crossnodes.net/forum/blog.php/?p=43" rel="bookmark" title=" Link: Checking diskspace in linux">Checking diskspace in linux</a></li>                                </ul>
                            </li>
                            <li>
                            	<h4><strong>*</strong> Archives</h4>
                                <ul>
                                		<li><a href='http://www.crossnodes.net/forum/blog.php/?m=200910' title='October 2009'>October 2009</a></li>
	<li><a href='http://www.crossnodes.net/forum/blog.php/?m=200909' title='September 2009'>September 2009</a></li>
	<li><a href='http://www.crossnodes.net/forum/blog.php/?m=200908' title='August 2009'>August 2009</a></li>
                                </ul>
                            </li>
                            <li>
                            	<h4><strong>*</strong> Categories</h4>
                                <ul>
                                    	<li class="cat-item cat-item-1"><a href="http://www.crossnodes.net/forum/blog.php/?cat=1" title="All news related to CrossNodes.net and iCafeMinds.net">CrossNodes News</a> (5)
</li>
	<li class="cat-item cat-item-13"><a href="http://www.crossnodes.net/forum/blog.php/?cat=13" title="Tips and articles related to iCafe business">iCafe Tips</a> (1)
</li>
	<li class="cat-item cat-item-3"><a href="http://www.crossnodes.net/forum/blog.php/?cat=3" title="Tips &amp; tricks regarding setting up linux box.">Linux Tips &amp; Tricks</a> (7)
</li>
                                </ul>
                            </li>
                            <li>
                            	<h4><strong>*</strong> Tags</h4>
                            <div id="cloud">
                                <a href='http://www.crossnodes.net/forum/blog.php/?tag=2-2' class='tag-link-42' title='1 topic' style='font-size: 7pt;'>2.2</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=apache' class='tag-link-48' title='1 topic' style='font-size: 7pt;'>apache</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=attack' class='tag-link-30' title='1 topic' style='font-size: 7pt;'>attack</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=auto' class='tag-link-28' title='1 topic' style='font-size: 7pt;'>auto</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=backup' class='tag-link-25' title='1 topic' style='font-size: 7pt;'>backup</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=beta' class='tag-link-41' title='1 topic' style='font-size: 7pt;'>beta</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=business-tips' class='tag-link-22' title='1 topic' style='font-size: 7pt;'>business tips</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=centos' class='tag-link-15' title='1 topic' style='font-size: 7pt;'>centos</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=checking' class='tag-link-19' title='1 topic' style='font-size: 7pt;'>checking</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=command' class='tag-link-9' title='2 topics' style='font-size: 22pt;'>command</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=crontab' class='tag-link-26' title='1 topic' style='font-size: 7pt;'>crontab</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=crossnodes' class='tag-link-5' title='2 topics' style='font-size: 22pt;'>crossnodes</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=news' class='tag-link-1' title='1 topic' style='font-size: 7pt;'>CrossNodes News</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=denial-of-service' class='tag-link-31' title='1 topic' style='font-size: 7pt;'>denial of service</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=diskspace' class='tag-link-35' title='1 topic' style='font-size: 7pt;'>diskspace</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=dos' class='tag-link-29' title='1 topic' style='font-size: 7pt;'>dos</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=execute' class='tag-link-10' title='1 topic' style='font-size: 7pt;'>execute</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=expenses' class='tag-link-24' title='1 topic' style='font-size: 7pt;'>expenses</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=features' class='tag-link-38' title='2 topics' style='font-size: 22pt;'>features</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=final' class='tag-link-45' title='1 topic' style='font-size: 7pt;'>final</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=hosts' class='tag-link-34' title='1 topic' style='font-size: 7pt;'>hosts</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=icafe' class='tag-link-40' title='2 topics' style='font-size: 22pt;'>icafe</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=icafe-2-2' class='tag-link-36' title='1 topic' style='font-size: 7pt;'>icafe 2.2</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=icafe-beta' class='tag-link-37' title='1 topic' style='font-size: 7pt;'>icafe beta</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=icafe-communities' class='tag-link-6' title='1 topic' style='font-size: 7pt;'>icafe communities</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=internet-cafe' class='tag-link-21' title='1 topic' style='font-size: 7pt;'>internet cafe</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=linux-tips-tricks' class='tag-link-20' title='1 topic' style='font-size: 7pt;'>Linux Tips &amp; Tricks</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=linux' class='tag-link-3' title='1 topic' style='font-size: 7pt;'>Linux Tips &amp; Tricks</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=memcached' class='tag-link-46' title='1 topic' style='font-size: 7pt;'>memcached</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=monitoring' class='tag-link-39' title='1 topic' style='font-size: 7pt;'>monitoring</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=mysql' class='tag-link-14' title='1 topic' style='font-size: 7pt;'>mysql</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=offline' class='tag-link-43' title='1 topic' style='font-size: 7pt;'>offline</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=openssh' class='tag-link-32' title='1 topic' style='font-size: 7pt;'>openssh</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=php' class='tag-link-16' title='1 topic' style='font-size: 7pt;'>php</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=pongstr' class='tag-link-4' title='1 topic' style='font-size: 7pt;'>pongstr</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=register' class='tag-link-7' title='1 topic' style='font-size: 7pt;'>register</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=rsync' class='tag-link-27' title='1 topic' style='font-size: 7pt;'>rsync</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=sbin' class='tag-link-11' title='1 topic' style='font-size: 7pt;'>sbin</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=secure' class='tag-link-33' title='1 topic' style='font-size: 7pt;'>secure</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=server-mode' class='tag-link-44' title='1 topic' style='font-size: 7pt;'>server mode</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=services' class='tag-link-8' title='1 topic' style='font-size: 7pt;'>services</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=software' class='tag-link-23' title='1 topic' style='font-size: 7pt;'>software</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=webserver' class='tag-link-12' title='1 topic' style='font-size: 7pt;'>webserver</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=web-server' class='tag-link-47' title='1 topic' style='font-size: 7pt;'>web server</a>
<a href='http://www.crossnodes.net/forum/blog.php/?tag=yum' class='tag-link-17' title='1 topic' style='font-size: 7pt;'>yum</a>                            </div>
                            </li>
                            <li>
                            	<h4>Recent Comments:</h4>
                                <ul>
                                		<li><a href="http://www.crossnodes.net/forum/blog.php/?p=73#comment-4" title="iCafe 2.2 Beta, September 28, 2009">afdoal</a>: where link to download???</li>
	<li><a href="http://www.crossnodes.net/forum/blog.php/?p=49#comment-3" title="What to consider in starting iCafe business, August 27, 2009">BulletsComputer</a>: Legal Software &#8211; Meaning not only OS but Office, Antivirus, Lan Games, and any other software...</li>
                                </ul>
                            </li>
                        </ul>
                    </div>
                    <div id="sb-bot"></div>
                </div> 
               
               	<br class="clear"> 
                
                <div id="post-navigation">
                    <br />
<b>Fatal error</b>:  Call to undefined function  get_pagination() in <b>/home/.seurat/h_ronald/crossnodes.net/wp-content/themes/crossnodes/index.php</b> on line <b>99</b><br />
