<?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>Linux, Hosting tips &#187; Linux</title>
	<atom:link href="http://geobaby.in/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://geobaby.in</link>
	<description>linux, webhosting tutorials, cpanel,whm,plesk,windows,</description>
	<lastBuildDate>Thu, 10 Nov 2011 14:09:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to mount SFTP share in Linux machine</title>
		<link>http://geobaby.in/how-to-mount-sftp-share-in-linux-machine/</link>
		<comments>http://geobaby.in/how-to-mount-sftp-share-in-linux-machine/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 14:09:35 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fuse]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[sftp share]]></category>
		<category><![CDATA[sshfs]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=563</guid>
		<description><![CDATA[This could be implemented using both FUSE and SSHFS. Download both from  http://fuse.sourceforge.net/sshfs.html 1. Install FUSE package: fuse-x.tar.gz Extract and install #tar xvf fuse-x.tar.gz #cd fuse-x #./configure #make #make install After successful installation, install SSHFS package: sshfs-fuse-x.tar.gz Extract and install #tar xvf sshfs-fuse-x.tar.gz #cd sshfs-fuse-x #./configure #make #make install Now we can use sshfs to mount sftp [...]]]></description>
		<wfw:commentRss>http://geobaby.in/how-to-mount-sftp-share-in-linux-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dump Mysql Tables</title>
		<link>http://geobaby.in/dump-mysql-tables/</link>
		<comments>http://geobaby.in/dump-mysql-tables/#comments</comments>
		<pubDate>Sun, 15 May 2011 08:59:10 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dump mysql]]></category>
		<category><![CDATA[dump mysql tables]]></category>
		<category><![CDATA[import database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=554</guid>
		<description><![CDATA[Often you have encountered problems while importing large databases via phpmyadmin. In that case, you can dump the mysql tables by using the following command. for T in `mysql -N -B -e &#8216;show tables from database_name&#8217;`; do echo $T;    mysqldump database_name  $T &#62; database_name_$T.gz ;    done Now you can restore the tables one by one [...]]]></description>
		<wfw:commentRss>http://geobaby.in/dump-mysql-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PTY allocation request failed on channel 0</title>
		<link>http://geobaby.in/pty-allocation-request-failed-on-channel-0/</link>
		<comments>http://geobaby.in/pty-allocation-request-failed-on-channel-0/#comments</comments>
		<pubDate>Sat, 14 May 2011 12:22:44 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[makedev]]></category>
		<category><![CDATA[ptmx]]></category>
		<category><![CDATA[pty]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=551</guid>
		<description><![CDATA[Recently I tried to ssh into a guest in vmware. I was able to authenticate in the server and I was not able to access the console. I was getting the following error. $ ssh x.x.x.x The authenticity of host &#8216;x.x.x.x (x.x.x.x)&#8217; can&#8217;t be established. RSA key fingerprint is 1c:4d:1b:6g:d5:40:db:5b:46:7f:bb:17:b1:1b:41:80. Are you sure you want [...]]]></description>
		<wfw:commentRss>http://geobaby.in/pty-allocation-request-failed-on-channel-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install APC in cPanel server</title>
		<link>http://geobaby.in/install-apc-in-cpanel-server/</link>
		<comments>http://geobaby.in/install-apc-in-cpanel-server/#comments</comments>
		<pubDate>Wed, 11 May 2011 16:01:53 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[compile error]]></category>
		<category><![CDATA[install apc]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=548</guid>
		<description><![CDATA[You can install APC (Alternative PHP Cache) in your cpanel server using the following steps: # pecl install apc Then add the extension in the php.ini file. You can get the php.ini file by # php &#8211;ini Add the following line to it. extension=&#8221;apc.so&#8221; Then, retart apache service and you are good to go. I [...]]]></description>
		<wfw:commentRss>http://geobaby.in/install-apc-in-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion install error</title>
		<link>http://geobaby.in/subversion-install-error/</link>
		<comments>http://geobaby.in/subversion-install-error/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 12:51:50 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[install subversion]]></category>
		<category><![CDATA[perl error]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=531</guid>
		<description><![CDATA[You may get the following error while installing subversion: root@server [/usr/src]# yum install subversion Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.nluug.nl * extras: ftp.nluug.nl * updates: ftp.nluug.nl Excluding Packages in global exclude list Finished Setting up Install Process Resolving Dependencies &#8211;&#62; Running transaction check &#8212;&#62; Package subversion.i386 0:1.6.11-7.el5_6.3 set to [...]]]></description>
		<wfw:commentRss>http://geobaby.in/subversion-install-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel upcp error : Undefined subroutine</title>
		<link>http://geobaby.in/cpanel-upcp-error/</link>
		<comments>http://geobaby.in/cpanel-upcp-error/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 12:12:55 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[futex error]]></category>
		<category><![CDATA[upcp error]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=527</guid>
		<description><![CDATA[I have seen recent cPanel upgrade throwing errors shown below: root@server [~]# /scripts/upcp /scripts/upcp syntax OK Running Futex Check/Fixâ€¦â€¦Done Undefined subroutine &#38;Cpanel::Update::automatic_updates_enabled called at /scripts/upcp line 273. This can be fixed using below steps. wget -O /root/updatenow.static http://httpupdate.cpanel.net/cpanels&#8230;datenow.static &#38;&#38; perl /root/updatenow.static &#8211;manual Now you will be able to upgrade the cPanel using upcp script. /scripts/upcp [...]]]></description>
		<wfw:commentRss>http://geobaby.in/cpanel-upcp-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change MySQL database collation</title>
		<link>http://geobaby.in/change-mysql-database-collation/</link>
		<comments>http://geobaby.in/change-mysql-database-collation/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 22:22:57 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[collation]]></category>
		<category><![CDATA[database collaton]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql collation]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=517</guid>
		<description><![CDATA[You can change database collation from the WHM/cPanel. 1. Enter your WHM/cPanel and select phpMyAdmin. 2. Select the database you wish to manage. 3. Click on the Operations tab in the top menu of your phpMyAdmin 4.  At the bottom of the page you will see the collation option. Select a collation from the drop [...]]]></description>
		<wfw:commentRss>http://geobaby.in/change-mysql-database-collation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Null a file in FreeBSD</title>
		<link>http://geobaby.in/null-a-file-in-freebsd/</link>
		<comments>http://geobaby.in/null-a-file-in-freebsd/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 07:51:14 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[empty file]]></category>
		<category><![CDATA[linux empty file]]></category>
		<category><![CDATA[null file]]></category>
		<category><![CDATA[null file in freebsd]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=508</guid>
		<description><![CDATA[I have to clear a file to create some disk space in my FreeBSD machine. I tried to use &#8220;&#62;&#8221; as usual. Haaa&#8230; it was not working. Then I tried the following and it worked. # touch test # cat test &#62; filetonull Hope you all will also find it useful.]]></description>
		<wfw:commentRss>http://geobaby.in/null-a-file-in-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download RPM packages using YUM</title>
		<link>http://geobaby.in/download-rpm-packages-using-yum/</link>
		<comments>http://geobaby.in/download-rpm-packages-using-yum/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 16:13:10 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[download rpm]]></category>
		<category><![CDATA[downloadonly]]></category>
		<category><![CDATA[rpm download]]></category>
		<category><![CDATA[yum download]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=502</guid>
		<description><![CDATA[You can download packages via yum without installing/updating them. For this, you have to install a plugin named yum-downloadonly.Install the package using yum itself. # yum install -y yum-downmloadonly To download the packages, use the following commands: # yum install package -y &#8211;downloadonly The package will be downloaded and saved to the /var/cache/yum/ directory in [...]]]></description>
		<wfw:commentRss>http://geobaby.in/download-rpm-packages-using-yum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ClamAV ERROR: getfile: Can&#8217;t create new file</title>
		<link>http://geobaby.in/clamav-error-getfile-cant-create-new-file/</link>
		<comments>http://geobaby.in/clamav-error-getfile-cant-create-new-file/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 17:34:27 +0000</pubDate>
		<dc:creator>geobaby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clamav]]></category>
		<category><![CDATA[freshclam]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=476</guid>
		<description><![CDATA[While running freshclam in servers, you may encounter this problem. root@linux [~]# freshclam ClamAV update process started at Fri Jun 11 19:23:37 2010 WARNING: Your ClamAV installation is OUTDATED! WARNING: Local version: 0.95.2 Recommended version: 0.96.1 DON&#8217;T PANIC! Read http://www.clamav.net/support/faq ERROR: chdir_tmp: Can&#8217;t create directory ./clamav-c1140c4846ffa40c2678e2fdcd1221ee WARNING: Incremental update failed, trying to download main.cvd ERROR: [...]]]></description>
		<wfw:commentRss>http://geobaby.in/clamav-error-getfile-cant-create-new-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

