<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>I haven&#039;t yet decided on the title</title>
	<atom:link href="http://asilearnit.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://asilearnit.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 20 Dec 2011 22:52:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='asilearnit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>I haven&#039;t yet decided on the title</title>
		<link>http://asilearnit.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://asilearnit.wordpress.com/osd.xml" title="I haven&#039;t yet decided on the title" />
	<atom:link rel='hub' href='http://asilearnit.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Server Hardening guidelines</title>
		<link>http://asilearnit.wordpress.com/2011/12/20/server-hardening-guidelines/</link>
		<comments>http://asilearnit.wordpress.com/2011/12/20/server-hardening-guidelines/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 22:52:06 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/12/20/server-hardening-guidelines/</guid>
		<description><![CDATA[1) Proactively prevent hacks from happening * First &#38; foremost, create a normal user &#38; disable remote root log in &#8230;<p><a href="http://asilearnit.wordpress.com/2011/12/20/server-hardening-guidelines/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=145&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1) Proactively prevent hacks from happening</p>
<p>* First &amp; foremost, create a normal user &amp; disable remote root log in via SSH:<br />Remove unwanted users &amp; change the unnecessary users shell to /bin/false. Shell access has to be restricted to users/services who really need it. You need to make sure that no other accounts have a UID &#8217;0&#8242;.</p>
<p>* Encrypt the data communication to &amp; from the server:<br />Using tools like scp, ssh, rsync &amp; encrypting web traffic using Apache SSL greatly reduces the risks of sniffing data in transit. OpenVPN is a good choice to encrypt data within a VPN and it is also a lightweight application. Protocols like FTP, telnet have to be striclty avoided.</p>
<p>As a part of this security measure, it is advisable to use SSH key-based authentication if you have a limited and specific set of users that might need the server access. Also, make use of the hosts.allow/deny service to specifically allow services based on hosts.</p>
<p>* Remove unnecessary software &amp; allow protocol specific hosts to greatly minimize security risks:<br />The server needs to have only the necessary software &amp; services running on it to minimize the risks involved. Turn off services that are not required at boot time using chkconfig. If its unnecessary, remove the X-Windows system from the server. Another good advice is to never run the services on their default ports to avoid risk.</p>
<p>The more number of applications a single server has the more is it vulnerable. Hence, share the load of different applications between different servers.</p>
<p>* Regular updates to kernel &amp; OS<br />Regular updates &amp; patches to the server keep it safe &amp; protected from the vulnerabilities found from time to time. Try to avoid to using third party repositories.</p>
<p>* Use SELinux &amp; Install a proactive firewall like CSF:<br />Make use of the in-built security policy CentOS gives us to allow access based on a controlled list that can be tailor-made to suit the needs of the server/applications.</p>
<p>CSF has always been one of my favorite applications as it drastically reduces the work for a monitoring administrator. It can ban, suspend, deny access to suspicious services or hosts based on their prior behavior. It can be extensively modified and customized based on our needs.</p>
<p>* User accounts &amp; strong password policy<br />As a system administrator I cannot stress enough the necessity that the users not save passwords within their browsers or any other physical material. Frequent changing of passwords, locking accounts for &#8216;n&#8217; failed log in attemtps, long and combination passwords, reject dictionary passwords are an essential part of a strong password policy.</p>
<p>* Password protect the boot loader</p>
<p>* Physical Security for the server</p>
<p>2) Test for security flaws on the server or in PHP code.<br />* Penetration testing<br />Scanning &amp; testing web applications before they go live is an absolute necessity. Web server, network vulnerability scanners like Nikito2, Nessus, Snort, Tripwire come in handy. My personal favourite to find SQL Injections &amp; XSS attacks on PHP malicious scripts in recent times has been the &#8220;Malware Detect Scanner&#8221; from rxfn.com. It has been remarkable in finding XSS attacks &amp; I cannot seem to be able to work without it each day.</p>
<p>3) Regularly create useable backups<br />I personally prefer using rsync. But heard great features about fwbackups &amp; bacula too. Incorporating rsync on NFS shares using bash scripts is what I prefer and can handle.</p>
<p>4) Increase server or application efficiency<br />* Install application monitoring and server monitoring tools like the &#8216;sysstat&#8217; package. I always tend to use sar &amp; /var/log/messages/ combination to check &amp; narrow down on the cause of an unresponsive server or a shutdown. Also, vmstat gives a very detailed report of the processor &amp; memory usage which helps to determine the idle time. Though &#8216;top&#8217; gives a realtime picture of the processor/memory consuming processes I tend to use it with the command: ps -eo user,pcpu,pid,pmem,command | sort -r -k4 | head -11</p>
<p>Also the python memory analysing script from pixelbeat.org is also very useful in finding memory leaks. Applications that run on java can be restricted to use memory [memory heap Xms] between an interval so that it does not affect the performance of the other applications.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=145&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/12/20/server-hardening-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 10 Processes CPU, memory wise</title>
		<link>http://asilearnit.wordpress.com/2011/12/10/top-10-processes-cpu-memory-wise/</link>
		<comments>http://asilearnit.wordpress.com/2011/12/10/top-10-processes-cpu-memory-wise/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 12:11:09 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/12/10/top-10-processes-cpu-memory-wise/</guid>
		<description><![CDATA[ps -eo user,pcpu,pid,pmem,command &#124; sort -r -k4 &#124; head -11 watch -n 2 ps -eo user,pcpu,pid,pmem,command &#124; sort -r -k4 &#8230;<p><a href="http://asilearnit.wordpress.com/2011/12/10/top-10-processes-cpu-memory-wise/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=142&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ps -eo user,pcpu,pid,pmem,command | sort -r -k4 | head -11</p>
<p>watch -n 2 ps -eo user,pcpu,pid,pmem,command | sort -r -k4 | head -11</p>
<p>Also you can check using ps_mem.py from www.pixelbeat.org/scripts/ps_mem.py</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=142&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/12/10/top-10-processes-cpu-memory-wise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>Fastestway to find files/directories consuming disk space on Linux</title>
		<link>http://asilearnit.wordpress.com/2011/12/10/fastestway-to-find-filesdirectories-consuming-disk-space-on-linux/</link>
		<comments>http://asilearnit.wordpress.com/2011/12/10/fastestway-to-find-filesdirectories-consuming-disk-space-on-linux/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 03:39:38 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/12/10/fastestway-to-find-filesdirectories-consuming-disk-space-on-linux/</guid>
		<description><![CDATA[du -a / 1&#62;output.txt 2&#62;errors.txt &#124; uniq &#124; grep "^[0-9]*[G]" &#124; sort -nr<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=128&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>du -a / 1&gt;output.txt   2&gt;errors.txt | uniq |  grep "^[0-9]*[G]" | sort -nr</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=128&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/12/10/fastestway-to-find-filesdirectories-consuming-disk-space-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>Looking up a value for one cell in another array</title>
		<link>http://asilearnit.wordpress.com/2011/12/03/looking-up-a-value-for-one-cell-in-another-array/</link>
		<comments>http://asilearnit.wordpress.com/2011/12/03/looking-up-a-value-for-one-cell-in-another-array/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 16:42:09 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/12/03/looking-up-a-value-for-one-cell-in-another-array/</guid>
		<description><![CDATA[If you want to check for a particular cell value in a column, then this is the formula you will &#8230;<p><a href="http://asilearnit.wordpress.com/2011/12/03/looking-up-a-value-for-one-cell-in-another-array/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=113&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to check for a particular cell value in a column, then this is the formula you will have to use.</p>
<p>=IF(ISNA(MATCH(C3,F3:F96,0)),&#8221;T&#8221;,&#8221;F&#8221;)</p>
<p> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=113&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/12/03/looking-up-a-value-for-one-cell-in-another-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>How to clear qmail queue the safe way?</title>
		<link>http://asilearnit.wordpress.com/2011/09/28/how-to-clear-qmail-queue-the-safe-way/</link>
		<comments>http://asilearnit.wordpress.com/2011/09/28/how-to-clear-qmail-queue-the-safe-way/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 00:22:22 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/?p=106</guid>
		<description><![CDATA[Sometimes it may be desirable to delete all items from qmali’s mail queue. The safest way to clean the outbound &#8230;<p><a href="http://asilearnit.wordpress.com/2011/09/28/how-to-clear-qmail-queue-the-safe-way/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=106&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes it may be desirable to delete all items from qmali’s mail queue. The safest way to clean the outbound queue in qmail is to trick qmail into thinking the messages have been around for too long, so it’ll give up and discard the messages. This can be done using find in conjunction with touch:</p>
<pre>find /var/qmail/queue/ -type f -depth | xargs touch -t 200001010101 {} ;</pre>
<p>Once we’ve touched the messages we then need to signal qmail to re-run the queue :</p>
<pre>killall -ALRM qmail-send</pre>
<p>Keep an eye on /var/log/maillog to check the progress:</p>
<pre>tail -F /var/log/maillog</pre>
<p>And that’s it!</p>
<p>Source: http://jerrywalsh.org/how-to-empty-purge-the-qmail-outbound-queue-12.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=106&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/09/28/how-to-clear-qmail-queue-the-safe-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>The easy way to add JAVA path in Linux</title>
		<link>http://asilearnit.wordpress.com/2011/09/19/the-easy-way-to-add-java-path-in-linux/</link>
		<comments>http://asilearnit.wordpress.com/2011/09/19/the-easy-way-to-add-java-path-in-linux/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 22:51:03 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/09/19/the-easy-way-to-add-java-path-in-linux/</guid>
		<description><![CDATA[echo &#8216;export JAVA_HOME=/usr/java/bin/&#8217; &#62; /etc/profile.d/jdk.sh echo ‘export PATH=$JAVA_HOME/bin:$PATH’ &#62;&#62; /etc/profile.d/jdk.sh source /etc/profile.d/jdk.sh<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=102&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>echo &#8216;export JAVA_HOME=/usr/java/bin/&#8217; &gt; /etc/profile.d/jdk.sh<br />
echo ‘export PATH=$JAVA_HOME/bin:$PATH’ &gt;&gt; /etc/profile.d/jdk.sh</p>
<p>source /etc/profile.d/jdk.sh</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=102&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/09/19/the-easy-way-to-add-java-path-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>How to hack Premium accounts for one click hosters</title>
		<link>http://asilearnit.wordpress.com/2011/09/13/how-to-hack-premium-accounts-for-one-click-hosters/</link>
		<comments>http://asilearnit.wordpress.com/2011/09/13/how-to-hack-premium-accounts-for-one-click-hosters/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 23:30:52 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[premium]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/09/13/how-to-hack-premium-accounts-for-one-click-hosters/</guid>
		<description><![CDATA[Source: http://www.hackingloops.com/2011/07/hacking-filesonic-premium-account-video.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=101&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Source: http://www.hackingloops.com/2011/07/hacking-filesonic-premium-account-video.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=101&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/09/13/how-to-hack-premium-accounts-for-one-click-hosters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>Redirect traffic HTTP [port 80] to SSL/HTTPS [port 443]</title>
		<link>http://asilearnit.wordpress.com/2011/09/04/redirect-traffic-http-port-80-to-sslhttps-port-443/</link>
		<comments>http://asilearnit.wordpress.com/2011/09/04/redirect-traffic-http-port-80-to-sslhttps-port-443/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 13:14:50 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/09/04/redirect-traffic-http-port-80-to-sslhttps-port-443/</guid>
		<description><![CDATA[Your .htaccess should read: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} The same can be written in httpd.conf in &#8230;<p><a href="http://asilearnit.wordpress.com/2011/09/04/redirect-traffic-http-port-80-to-sslhttps-port-443/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=100&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Your .htaccess should read:</p>
<p>RewriteEngine On<br />
RewriteCond     %{HTTPS}        off<br />
RewriteRule     (.*)     https://%{HTTP_HOST}%{REQUEST_URI}</p>
<p>The same can be written in httpd.conf in your virtual host but .htaccess is more preferable. After all, its apache&#8217;s flexibility.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=100&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/09/04/redirect-traffic-http-port-80-to-sslhttps-port-443/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>How to cut/copy/paste between two files using vi?</title>
		<link>http://asilearnit.wordpress.com/2011/08/31/how-to-cutcopypaste-between-two-files-using-vi/</link>
		<comments>http://asilearnit.wordpress.com/2011/08/31/how-to-cutcopypaste-between-two-files-using-vi/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 12:47:35 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/08/31/how-to-cutcopypaste-between-two-files-using-vi/</guid>
		<description><![CDATA[Lets say you have a file named file1.txt You can enable the line number (as example above) by using the &#8230;<p><a href="http://asilearnit.wordpress.com/2011/08/31/how-to-cutcopypaste-between-two-files-using-vi/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=99&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lets say you have a file named file1.txt </p>
<p>You can enable the line number (as example above) by using the command &#8220;:set nu&#8221; in vi&#8217;s command mode. first we need to do copy paragraph 1. Press Esc to make sure you&#8217;re in the command mode, then position your cursor at line 1 (column is not important as you&#8217;ll copy the whole line anyway), and type:</p>
<p>mk</p>
<p>Then move your cursor to line 4 and type:</p>
<p>&#8220;ay&#8217;k</p>
<p>If successful, the cursor will move automatically to line 1 (where you do the mk earlier).</p>
<p>The Explanation: mk is to mark the beginning text block that you want to copy, and the &#8220;ay&#8217;k is to mark the end of the text block. The a is the buffer tag, you can store another text block into another buffer for example buffer b, or c or so on. Now lets continue our example. </p>
<p>Still in VI&#8217;s command mode, type : (colon) (the cursor will move to the bottom-left of the screen) and followed by e file2.txt as shown below, and then press &#8216;Enter&#8217; key.</p>
<p>This will open file2.txt. Then press &#8216;ap&#8217; to paste the content from the &#8216;a&#8217; buffer to the file.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=99&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/08/31/how-to-cutcopypaste-between-two-files-using-vi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
		<item>
		<title>The right way to initiate a resumable copy on Linux</title>
		<link>http://asilearnit.wordpress.com/2011/08/20/the-right-way-to-initiate-a-resumable-copy-on-linux/</link>
		<comments>http://asilearnit.wordpress.com/2011/08/20/the-right-way-to-initiate-a-resumable-copy-on-linux/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 04:37:04 +0000</pubDate>
		<dc:creator>deppfx</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[append]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[partial]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://asilearnit.wordpress.com/2011/08/20/the-right-way-to-initiate-a-resumable-copy-on-linux/</guid>
		<description><![CDATA[First since the copy operation is going to take a considerable time, I would suggest to use either nohup or &#8230;<p><a href="http://asilearnit.wordpress.com/2011/08/20/the-right-way-to-initiate-a-resumable-copy-on-linux/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=98&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First since the copy operation is going to take a considerable time, I would suggest to use either nohup or screen utility. Personally I like the screen utility. Hence,</p>
<p># screen -S screen1<br />
# rsync &#8211;append &#8211;partial &#8211;progress httpdocs_19Aug.tar.gz :/home/</p>
<p>OR</p>
<p># nohup  rsync &#8211;append &#8211;partial &#8211;progress httpdocs_19Aug.tar.gz :/home/  &gt; nohup.out &amp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asilearnit.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asilearnit.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asilearnit.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asilearnit.wordpress.com&amp;blog=9867440&amp;post=98&amp;subd=asilearnit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asilearnit.wordpress.com/2011/08/20/the-right-way-to-initiate-a-resumable-copy-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d957fea337558cdd106a21dc2a006e63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">deppfx</media:title>
		</media:content>
	</item>
	</channel>
</rss>
