<?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>Fri, 13 Apr 2012 10:11:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Glipper crashed with ValueError in load()</title>
		<link>http://geobaby.in/glipper-crashed-with-valueerror-in-load/</link>
		<comments>http://geobaby.in/glipper-crashed-with-valueerror-in-load/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 08:06:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[glipper]]></category>
		<category><![CDATA[klipper]]></category>
		<category><![CDATA[rm]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=586</guid>
		<description><![CDATA[I found out that klipper is not working well in Ubuntu 11.10 version. I installed glipper in my machine and after a reboot, met with this error. glipper crashed with ValueError in load(): invalid literal for int() with base 10: &#8220;\xcb#W\x84\xb0\x0e [...] \r&#8221; The workaround appears to be to just forget about the invalid history [...]]]></description>
		<wfw:commentRss>http://geobaby.in/glipper-crashed-with-valueerror-in-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Find Large Files and Directories in Unix</title>
		<link>http://geobaby.in/how-to-find-large-files-and-directories-in-unix/</link>
		<comments>http://geobaby.in/how-to-find-large-files-and-directories-in-unix/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 07:54:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[dirextory size]]></category>
		<category><![CDATA[disk space]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[size]]></category>

		<guid isPermaLink="false">http://geobaby.in/?p=579</guid>
		<description><![CDATA[Sometimes we need to find larger files in a file system when theres is a disk space issue. This example finds all the files under /etc directory which are larger than 1000k: geobaby@ubuntu:~$ find /etc -size +1000k /etc/brltty/zh-tw.ctb If you look at the file, the size if above 1000k: geobaby@ubuntu:~$ ls -l /etc/brltty/zh-tw.ctb -rw-r&#8211;r&#8211; 1 [...]]]></description>
		<wfw:commentRss>http://geobaby.in/how-to-find-large-files-and-directories-in-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Geo</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>Geo</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>Geo</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>Geo</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></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>Geo</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>Geo</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></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>Geo</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></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>Geo</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>
	</channel>
</rss>

