<?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 &#187; sps</title>
	<atom:link href="http://www.gossiplime.com/author/sps/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>53</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>23</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>Exim Failed &#8211; Exim is not running</title>
		<link>http://www.gossiplime.com/2009/02/exim-failed-exim-is-not-running/</link>
		<comments>http://www.gossiplime.com/2009/02/exim-failed-exim-is-not-running/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 08:00:34 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=277</guid>
		<description><![CDATA[A restart was attempted automagically. Service Check Method: [check command] Cmd Service Check Raw Output: Exim is not running This is a bug in Exim here are the steps how i fix this problem Hello friends you can doit by SSH I first ran: /scripts/eximup &#8211;force &#8211;source I then removed the old exim RPM, which [...]]]></description>
			<content:encoded><![CDATA[<p>A restart was attempted automagically.<br />
Service Check Method:  [check command]</p>
<p>Cmd Service Check Raw Output: Exim is not running</p>
<p>This is a bug in Exim<br />
here are the steps how i fix this problem</p>
<p> Hello friends<br />
you can doit by SSH<br />
 I first ran:</p>
<p> /scripts/eximup &#8211;force &#8211;source</p>
<p> I then removed the old exim RPM, which was preventing the correct one from</p>
<p> being updated.</p>
<p> I then ran:</p>
<p> /scripts/eximup &#8211;force</p>
<p> Exim is now up well.</p>
<p> Thank you. <img src='http://www.gossiplime.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/exim-failed-exim-is-not-running/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Restart Mysql from ssh</title>
		<link>http://www.gossiplime.com/2009/02/restart-mysql-from-ssh/</link>
		<comments>http://www.gossiplime.com/2009/02/restart-mysql-from-ssh/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 11:13:12 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=265</guid>
		<description><![CDATA[To restart mysql service from command line (ssh) * Login to SSH as root using a program like putty. * Type the following command, /scripts/restartsrv_mysql Hope you all enjoy this command.]]></description>
			<content:encoded><![CDATA[<p>To restart mysql service from command line (ssh)</p>
<p>* Login to SSH as root using a program like putty.<br />
* Type the following command,</p>
<blockquote><p>/scripts/restartsrv_mysql</p></blockquote>
<p>Hope you all enjoy this command.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/restart-mysql-from-ssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IP script php</title>
		<link>http://www.gossiplime.com/2009/02/ip-script-php/</link>
		<comments>http://www.gossiplime.com/2009/02/ip-script-php/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 15:17:36 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=230</guid>
		<description><![CDATA[Hi this is a script to show your ip address &#60;?php $ip = getenv(&#8220;REMOTE_ADDR&#8221;) ; Echo &#8220;Your IP is &#8221; . $ip; ?&#62; and save it with any name like file.php]]></description>
			<content:encoded><![CDATA[<p>Hi this is a script to show your ip address</p>
<p>&lt;?php<br />
$ip = getenv(&#8220;REMOTE_ADDR&#8221;) ;<br />
Echo &#8220;Your IP is &#8221; . $ip;<br />
?&gt;</p>
<p>and save it with any name like file.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/ip-script-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable caching in MySQL</title>
		<link>http://www.gossiplime.com/2009/02/enable-caching-in-mysql/</link>
		<comments>http://www.gossiplime.com/2009/02/enable-caching-in-mysql/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 08:52:05 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[mysql tuning]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=212</guid>
		<description><![CDATA[Log into your mysql $ mysql -u root –p Output: Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 16 to server version: 4.1.15-Debian_1-log Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer. mysql&#62; Now setup cache size 32Mb: mysql&#62; SET GLOBAL query_cache_size [...]]]></description>
			<content:encoded><![CDATA[<p>Log into your mysql</p>
<blockquote><p><code>$ mysql -u root –p</code></p></blockquote>
<p>Output:</p>
<blockquote><p>Enter password:</p>
<p>Welcome to the MySQL monitor.  Commands end with ; or \g.</p>
<p>Your MySQL connection id is 16 to server version: 4.1.15-Debian_1-log<br />
Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt;</p>
<pre>
Now setup cache size 32Mb:
mysql&gt; SET GLOBAL query_cache_size = 33554432;    

Query OK, 0 rows affected (0.00 sec)</pre>
</blockquote>
<pre>mysql&gt; SHOW VARIABLES LIKE 'query_cache_size';</pre>
<p>Output:</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+</p>
<p>| Variable_name    | Value    |</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+</p>
<p>| query_cache_size | 16777216 |</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+</p>
<blockquote><p>You can setup them in /etc/my.cnf (Red Hat) or /etc/mysql/my.cnf (Debian) file:<br />
<code># vi /etc/my.cnf</code><br />
Append config directives as follows:</p></blockquote>
<blockquote>
<pre>query_cache_size = 33554432
query_cache_type=1
query_cache_limit=2096576</pre>
</blockquote>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2009/02/enable-caching-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using SSH by Putty</title>
		<link>http://www.gossiplime.com/2008/12/using-ssh-by-putty/</link>
		<comments>http://www.gossiplime.com/2008/12/using-ssh-by-putty/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 04:17:05 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=122</guid>
		<description><![CDATA[Putty is a free software application for Windows 95,98, XP, &#38; Vista which can be used to make a SSH Connection. You can find the application at Click here http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe Download it on your pc. Double-click on the putty.exe program to open. Next fill in the appropriate SSH settings for your service: Next fill in [...]]]></description>
			<content:encoded><![CDATA[<p><span class="HelpLink">Putty</span> is a free  software application for Windows 95,98, XP, &amp; Vista which can be used to  make a <span class="HelpLink">SSH</span> Connection. You can find the application at <a title="Download Putty" href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">Click here</a></p>
<p>http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe</p>
<ol>
<li>Download it on your pc.</li>
<li>Double-click on the <span class="screenshot_callout">putty.exe</span> program to open.</li>
<li>Next fill in the appropriate SSH settings for your service:</li>
</ol>
<div id="attachment_124" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-124" title="puttyssh" src="http://www.gossiplime.com/wp-content/uploads/2009/01/puttyssh-300x290.png" alt="Putty" width="300" height="290" /><p class="wp-caption-text">Putty</p></div>
<p>Next fill in the appropriate SSH settings for your service:</p>
<p><span class="screenshot_callout">Host Name: </span></p>
<ol>
<li>
<ul>
<li>
<div id="attachment_125" class="wp-caption alignnone" style="width: 217px"><img class="size-full wp-image-125" title="puttyhostname" src="http://www.gossiplime.com/wp-content/uploads/2009/01/puttyhostname.png" alt="Host name" width="207" height="43" /><p class="wp-caption-text">Host name</p></div>
<ul>
<li>(gs) Grid-Service &#8211; <span class="ac_replace ac_service_access_domain">s#####.gridserver.com</span> or  <span class="ac_replace ac_service_primary_domain">mt-example.com</span></li>
<li>(dv) Dedicated-Virtual -<span class="ac_replace ac_service_primary_domain">mt-example.com</span> or <span class="ac_replace ac_service_ip">xxx.xxx.xxx.xxx</span></li>
<li>(ss) Shared-Server &#8211; <span class="ac_replace ac_service_primary_domain">mt-example.com</span> or <span class="ac_replace ac_service_ip">xxx.xxx.xxx.xxx</span></li>
</ul>
</li>
<li><span class="screenshot_callout">Port:</span> 22
<div id="attachment_126" class="wp-caption alignnone" style="width: 87px"><img class="size-full wp-image-126" title="port" src="http://www.gossiplime.com/wp-content/uploads/2009/01/port.png" alt="port 22" width="77" height="44" /><p class="wp-caption-text">port 22</p></div></li>
<li><span class="screenshot_callout">Connection Type:</span> SSH
<p><div id="attachment_127" class="wp-caption alignnone" style="width: 286px"><img class="size-full wp-image-127" title="connection-type" src="http://www.gossiplime.com/wp-content/uploads/2009/01/connection-type.png" alt="Connection Type" width="276" height="33" /><p class="wp-caption-text">Connection Type</p></div></li>
<li>Next click Open to start the SSH Connection:</li>
</ul>
<p><div id="attachment_128" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-128" title="puttyopen" src="http://www.gossiplime.com/wp-content/uploads/2009/01/puttyopen-300x291.png" alt="putty open" width="300" height="291" /><p class="wp-caption-text">putty open</p></div>
<p>Once the SSH Connection is open you should see a terminal prompt saying <span class="screenshot_callout">login as:</span> Please provide your full username:</li>
</ol>
<div id="attachment_129" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-129" title="loginas" src="http://www.gossiplime.com/wp-content/uploads/2009/01/loginas-300x186.png" alt="Login" width="300" height="186" /><p class="wp-caption-text">Login Screen</p></div>
<ol>
<li>
<ul>
<li><span class="screenshot_callout">(gs) Grid-Service</span> &#8211; The default should  be <span class="screenshot_callout">s</span><span class="screenshot_callout">erveradmin</span>@<span class="ac_replace ac_service_primary_domain">mt-example.com</span>, however you  may also login as <a href="mailto:username@mt-example.com"><span class="ac_replace ac_mailbox_email_address">username@mt-example.com</span></a>.
<div class="note">
<h3>NOTE:</h3>
<p>Please make sure SSH is enabled for the user. SSH can be enabled from within  the (ac) AccountCenter.</p></div>
</li>
<li><span class="screenshot_callout">(dv) Dedicated-Virtual</span> &#8211; You may login  as the root user, or as a domain&#8217;s <span class="HelpLink">FTP</span> user which has SSH access enabled</li>
<li>Next provide your password. Please note that you will not see any typing  such as *** when providing your password. Once you hit enter you should now be  connected to your service.</li>
</ul>
<p><a title="ssh commands" href="http://www.gossiplime.com/2008/09/common-ssh-commands/"><strong>Common SSH Command</strong></a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2008/12/using-ssh-by-putty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install Skype API Plugin for Pidgin in Ubuntu</title>
		<link>http://www.gossiplime.com/2008/11/install-skype-api-plugin-for-pidgin-in-ubuntu/</link>
		<comments>http://www.gossiplime.com/2008/11/install-skype-api-plugin-for-pidgin-in-ubuntu/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 19:34:31 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=72</guid>
		<description><![CDATA[This is the Skype API Plugin for Pidgin/libpurple/Adium. If you’re already running Skype, you can have your Skype contacts displayed with your Pidgin/libpurple/Adium contacts. It is intended as a complete replacement for the Skype user interface, hopefully everything you can do in Skype you can do with this plugin. Install Skype API Plugin for Pidgin [...]]]></description>
			<content:encoded><![CDATA[<p>This is the Skype API Plugin for Pidgin/libpurple/Adium. If you’re already running Skype, you can have your Skype contacts displayed with your Pidgin/libpurple/Adium contacts. It is intended as a complete replacement for the Skype user interface, hopefully everything you can do in Skype you can do with this plugin.</p>
<p><strong>Install Skype API Plugin for Pidgin in Ubuntu</strong></p>
<p>First you need to download the plugin using the following command</p>
<blockquote><p>wget http://eion.robbmob.com/skype4pidgin.deb</p></blockquote>
<p>Now you should have skype4pidgin.deb package.Install this .deb package using the following command</p>
<blockquote><p>sudo dpkg -i skype4pidgin.deb</p></blockquote>
<p>or you can download the following libskype.so file to the plugins directory, normally /usr/lib/purple-2/ or ~/.purple/plugins</p>
<p><strong>For 32 bit users</strong> download this</p>
<blockquote><p>wget http://eion.robbmob.com/libskype.so</p></blockquote>
<p><strong>For 64 bit users</strong> download this</p>
<blockquote><p>wget http://eion.robbmob.com/libskype64.so</p></blockquote>
<p>This will complete the installation.After installation you need to restart Pidgin! You will then have a skype option enabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2008/11/install-skype-api-plugin-for-pidgin-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use SSH Via HTTP Proxy using Corkscrew in Ubuntu</title>
		<link>http://www.gossiplime.com/2008/10/how-to-use-ssh-via-http-proxy-using-corkscrew-in-ubuntu/</link>
		<comments>http://www.gossiplime.com/2008/10/how-to-use-ssh-via-http-proxy-using-corkscrew-in-ubuntu/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 01:45:09 +0000</pubDate>
		<dc:creator>sps</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.gossiplime.com/?p=66</guid>
		<description><![CDATA[If you want to ssh your vps server or your home computer from your work place (assuming you are using http proxy).You need to use Corkscrew. corkscrew is a simple tool to tunnel TCP connections through an HTTP proxy supporting the CONNECT method. It reads stdin and writes to stdout during the connection, just like [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to ssh your vps server or your home computer from your work place (assuming you are using http proxy).You need to use Corkscrew.</p>
<p>corkscrew is a simple tool to tunnel TCP connections through an HTTP proxy supporting the CONNECT method. It reads stdin and writes to stdout during the connection, just like netcat.</p>
<p>It can be used for instance to connect to an SSH server running on a remote 443 port through a strict HTTPS proxy.</p>
<p>Install corkscrew in ubuntu using the following command</p>
<blockquote><p>sudo aptitude install corkscrew</p></blockquote>
<p>This will complete the installation.</p>
<p><strong>Configue corkscrew</strong></p>
<p>If your HTTP proxy uses authentication, then you’ll need to tell it about the username and password to use This is where the concept of ‘auth-file’ comes into play. All you have to do is put your username &amp; password, separated by a colon, into a textfile. Once you’ve done this, you just have to tell corkscrew where to find the auth-file. Create a file called .corkscrew-auth in your home directory</p>
<blockquote><p>$touch .corkscrew-auth</p></blockquote>
<blockquote><p>$gedit .corkscrew-auth</p></blockquote>
<p>and place your username and password in the following format</p>
<blockquote><p>username:password</p></blockquote>
<p>Save and exit the file.</p>
<p><strong>Configure ssh For Tunneling</strong></p>
<p>Now we’ll tell ssh what to do when connecting to all or specific hosts. Open up ~/.ssh/config (that’s /home/yourusername/.ssh/config) in your favourite text editor (gedit,nano,vim etc)</p>
<blockquote><p>$gedit /home/yourusername/.ssh/config</p></blockquote>
<p>and add the following lines</p>
<blockquote><p>Host *</p>
<p>ProxyCommand corkscrew proxyhostname proxyport %h %p /home/username/.corkscrew-auth</p></blockquote>
<p>Save and exit the file</p>
<p>Note: replace proxyhostname and proxyport with the equivalents for your network.</p>
<p>Note: you won’t need to add the last section, ‘/home/username/.corkscrew-auth’, if your HTTP proxy doesn’t use authentication.</p>
<p>What we’ve just told ssh to do is for all hostnames (’Host *’), use the following proxy command to route the connection.If you want more secure connections you can also list of hosts.</p>
<p><strong>Corkscrew Syntax</strong></p>
<blockquote><p>corkscrew proxy proxyport targethost targetport [ authfile ]</p></blockquote>
<p>proxy &#8211; This is the name of the host running the HTTP proxy.</p>
<p>proxyport &#8211; This is the port on which to connect on the proxy.</p>
<p>target &#8211; This is the host to reach through the proxy.</p>
<p>targetport &#8211; This is the port to connect to on the target host.</p>
<p><strong>Test your SSH connection</strong></p>
<blockquote><p>ssh serverip</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.gossiplime.com/2008/10/how-to-use-ssh-via-http-proxy-using-corkscrew-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

