<?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>Kurinchi Blogger Scribbles ... &#187; General</title>
	<atom:link href="http://kurinchilamp.kurinchilion.com/category/general/feed" rel="self" type="application/rss+xml" />
	<link>http://kurinchilamp.kurinchilion.com</link>
	<description>On Open Source Technologies</description>
	<lastBuildDate>Mon, 02 Jan 2012 06:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>PHP Excel reader</title>
		<link>http://kurinchilamp.kurinchilion.com/2011/01/php-excel-reader.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2011/01/php-excel-reader.html#comments</comments>
		<pubDate>Thu, 27 Jan 2011 00:11:59 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[excel reader]]></category>
		<category><![CDATA[new by reference]]></category>
		<category><![CDATA[php excel reader]]></category>
		<category><![CDATA[php xls reader]]></category>
		<category><![CDATA[split deprecated]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=879</guid>
		<description><![CDATA[php-excel-reader Parse and retrieve information from XLS files Download from Code Google When the excel reader is run on PHP 5.3, below mentioned deprecated warning messages gets shown. i) Assigning the return value of new by reference is deprecated Remove &#038; from the line below $this->_ole =&#038; new OLERead(); and have $this->_ole = new OLERead(); [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/php-excel-reader/" target="_blank">php-excel-reader</a> Parse and retrieve information from XLS files</p>
<p><a href="http://code.google.com/p/php-excel-reader/downloads/list" target="_blank">Download from Code Google</a></p>
<p>When the excel reader is run on <strong>PHP 5.3</strong>, below mentioned deprecated warning messages gets shown.</p>
<p><strong>i) Assigning the return value of new by reference is deprecated</strong></p>
<p>Remove &#038; from the line below</p>
<p><strong>$this->_ole =&#038; new OLERead();</strong></p>
<p>and have </p>
<p><strong>$this->_ole = new OLERead();</strong></p>
<p>instead.</p>
<p><strong>ii) Function split() is deprecated</strong></p>
<p>Function split() is deprecated and we can use explode() instead of that.</p>
<p><strong>$parts = split(&#8220;;&#8221;,$format); </strong></p>
<p>change it to</p>
<p><strong>$parts = explode(&#8220;;&#8221;,$format);</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2011/01/php-excel-reader.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux hosting and Vendors in the market</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/12/linux-hosting-and-vendors-in-the-market.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/12/linux-hosting-and-vendors-in-the-market.html#comments</comments>
		<pubDate>Thu, 30 Dec 2010 17:20:41 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=866</guid>
		<description><![CDATA[Some hosting providers Dedicated or Virtual Server Options Monthly or yearly rental charge Pre-configured hosts Rackspace Linode UK2]]></description>
			<content:encoded><![CDATA[<p>Some hosting providers</p>
<p>Dedicated or Virtual Server Options<br />
Monthly or yearly rental charge<br />
Pre-configured hosts</p>
<p>Rackspace</p>
<p>Linode</p>
<p>UK2</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/12/linux-hosting-and-vendors-in-the-market.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP: 530 login authentication failed</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/07/ftp-530-login-authentication-failed.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/07/ftp-530-login-authentication-failed.html#comments</comments>
		<pubDate>Wed, 14 Jul 2010 16:01:10 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[530 login error]]></category>
		<category><![CDATA[cuteftp]]></category>
		<category><![CDATA[filezilla]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[smartftp]]></category>
		<category><![CDATA[ws-ftp]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=856</guid>
		<description><![CDATA[In certain scenarios, users encounter above message when they try to connect to their web hosting accounting using one of their ftp programs like filezilla, ws-ftp, cuteftp, smartftp Solutions that seemed to have worked for me i) Host name: Try adding ftp://www.mysite.com and set the port to 21 ii) User name: Try typing username@domain.com instead [...]]]></description>
			<content:encoded><![CDATA[<p>In certain scenarios, users encounter above message when they try to connect to their web hosting accounting using one of their ftp programs like filezilla, ws-ftp, cuteftp, smartftp</p>
<p><em>Solutions</em> that seemed to have worked for me </p>
<p>i) <strong>Host name</strong>: Try adding ftp://www.mysite.com and set the port to 21<br />
ii) <strong>User name</strong>: Try typing username@domain.com instead of just the user name of the ftp user</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/07/ftp-530-login-authentication-failed.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASTERISK Configuration: for beginners</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/05/asterisk-configuration-for-beginners.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/05/asterisk-configuration-for-beginners.html#comments</comments>
		<pubDate>Tue, 11 May 2010 02:13:35 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux Server]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[asterisk centOS]]></category>
		<category><![CDATA[asterisk softphone]]></category>
		<category><![CDATA[IAX]]></category>
		<category><![CDATA[IAX2]]></category>
		<category><![CDATA[SIP]]></category>
		<category><![CDATA[softphone win XP]]></category>
		<category><![CDATA[softphone windows XP]]></category>
		<category><![CDATA[zoiper]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=837</guid>
		<description><![CDATA[This will be a simple step by step tutorial to help beginners catch up with ASTERISK &#8211; an open source tool for voice communication. It is a software installation of PBX connecting even the PSTN and VOIP networks. Originally developed for Linux, Asterisk now runs on a variety of operating systems including Solaris, Windows and [...]]]></description>
			<content:encoded><![CDATA[<p>This will be a simple step by step tutorial to help beginners catch up with ASTERISK &#8211; an open source tool for voice communication. It is a software installation of PBX connecting even the PSTN and VOIP networks. </p>
<p>Originally developed for Linux, Asterisk now runs on a variety of operating systems including Solaris, Windows and MacOS.</p>
<p><strong>Environment setup</strong><br />
<a href="http://kurinchilamp.kurinchilion.com/wp-content/uploads/2010/05/asterisk-home-networking.jpg"><img src="http://kurinchilamp.kurinchilion.com/wp-content/uploads/2010/05/asterisk-home-networking-300x147.jpg" alt="" title="asterisk-home-networking" width="300" height="147" class="aligncenter size-medium wp-image-839" /></a><br />
<span id="more-837"></span><br />
Asterisk server is configured on a <em>HP dx5150 AMD Athlon, 512 MB RAM, 40 GB machine running CentOS</em>.<br />
<em>Softphones used in the tutorial</em>: Zoiper is used for IAX2 communication and X-Lite for SIP. Both the softphones are configured on Windows XP.</p>
<p><strong>Asterisk: Step by Step</strong><br />
<strong>1) Download the asterisk software</strong> from <a href="http://www.asterisk.org/downloads">asterisk.org</a>. We will be going with the base build and not use other softwares like AsteriskNow or PBXinaFlash for the moment.</p>
<p><strong>2) Setup asterisk repo to ease future upgrades to asterisk</strong><br />
$ cd /etc<br />
$ touch asterisk.repo<br />
$ vi asterisk.repo<br />
<em><br />
[asterisk-tested]<br />
name=CentOS-$releasever &#8211; Asterisk &#8211; Tested<br />
baseurl=http://packages.asterisk.org/centos/$releasever/tested/$basearch/<br />
enabled=0<br />
gpgcheck=0<br />
#gpgkey=http://packages.asterisk.org/RPM-GPG-KEY-Digium</p>
<p>[asterisk-current]<br />
name=CentOS-$releasever &#8211; Asterisk &#8211; Current<br />
baseurl=http://packages.asterisk.org/centos/$releasever/current/$basearch/<br />
enabled=1<br />
gpgcheck=0<br />
#gpgkey=http://packages.asterisk.org/RPM-GPG-KEY-Digium</em></p>
<p><strong>3) Install asterisk on CentOS and start up asterisk</strong><br />
$ yum install asterisk16 asterisk16-configs asterisk16-voicemail libpri</p>
<p>[Source: Check <a href="http://www.asterisk.org/downloads/yum">asterisk.org</a>]</p>
<p>To enable auto start of asterisk<br />
$ chkconfig asterisk on</p>
<p>Start/stop/restart asterisk using the commands<br />
$ service asterisk start<br />
$ /etc/init.d/asterisk restart<br />
$ service asterisk stop</p>
<p>To test asterisk service type<br />
$ asterisk -r</p>
<p><strong>4) Register with a VOIP Service provider</strong><br />
To search for the <a href="http://www.voip-info.org/wiki/view/VOIP+Service+Providers">VOIP provider </a> you can use<br />
voip-info.org which has an extensive list of service proivders categorized by region based on different<br />
market segmentation. </p>
<p>Once you have registered with a VOIP Service provider, they will give you<br />
<strong>IAX2/SIP Account (your phone number) : NNNNNNNNNN<br />
Account password : PPPPPPPP<br />
IAX2/SIP Server name : myiax.voipprovider.org</strong></p>
<p>So far, we have detailed the environment, setup asterisk on a CentOS server and have registered for an account with a VOIP provider. In the next tutorial, we will see how to configure asterisk settings and to setup an IAX extension for a softphone (soft client) running on windows XP.</p>
<p><strong>Best resources on the internet</strong><br />
asterisk.org <a href="http://www.asterisk.org/node">http://www.asterisk.org/node</a><br />
voip-info.org <a href="http://www.voip-info.org">http://www.voip-info.org</a><br />
asteriskguru.com <a href="http://www.asteriskguru.com/">http://www.asteriskguru.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/05/asterisk-configuration-for-beginners.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to move the SSL certificates?</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/05/how-to-move-the-ssl-certificates.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/05/how-to-move-the-ssl-certificates.html#comments</comments>
		<pubDate>Thu, 06 May 2010 00:29:01 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[migrating ssl]]></category>
		<category><![CDATA[moving SSL certs]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[ssl certificates]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=831</guid>
		<description><![CDATA[Migrating SSL certificates: CPanel, WHM Possible Scenarios i) Server load balancing ii) Moving web sites between servers Find where the SSL certificates, private keys are installed in the old server and gzip the certs $ tar -zxcf /tmp/crt.tar.gz /etc/ssl/certs $ tar -zxcf /tmp/priv.tar.gz /etc/ssl/private In the new server, extract the certificates and keys to its [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Migrating SSL certificates: CPanel, WHM</strong></p>
<p>Possible Scenarios<br />
i) Server load balancing<br />
ii) Moving web sites between servers</p>
<p>Find where the SSL certificates, private keys are installed in the old server and gzip the certs<br />
<strong>$ tar -zxcf /tmp/crt.tar.gz /etc/ssl/certs<br />
$ tar -zxcf /tmp/priv.tar.gz /etc/ssl/private</strong></p>
<p>In the new server, extract the certificates and keys to its respective folder location. Edit<strong> httpd.conf </strong>file and add the following lines<br />
<strong><br />
SSLEngine on<br />
SSLCertificateFile /etc/ssl/certs/example.com.crt<br />
SSLCertificateKeyFile /etc/ssl/private/example.com.key<br />
SSLCACertificateFile /etc/ssl/certs/example.com.cabundle<br />
CustomLog /usr/local/apache/domlogs/exampleuser-ssl_log combined</strong></p>
<p>Sample virtual host configuration setting</p>
<pre>
&lt;VirtualHost xxx.xxx.xxx.xxx:443&gt;
    ServerName subdomain.example.com
    ServerAlias www.subdomain.example.com
    DocumentRoot /home/emaple/public_html
    ScriptAlias /cgi-bin/ /home/example/public_html/cgi-bin/
    SSLEngine on
    SSLCertificateFile /etc/ssl/certs/example.com.crt
    SSLCertificateKeyFile /etc/ssl/private/example.com.key
   SSLCACertificateFile /etc/ssl/certs/example.com.cabundle
  CustomLog /usr/local/apache/domlogs/exampleuser-ssl_log combined
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    &lt;Directory "/home/example.com/public_html/cgi-bin"&gt;
        SSLOptions +StdEnvVars
    &lt;/Directory&gt;

    # To customize this VirtualHost use an include file at the following location
    # Include "/usr/local/apache/conf/userdata/ssl/2/exampleuser/example.com/*.conf"
&lt;/VirtualHost&gt;
</pre>
<p>Restart apache<br />
<strong>$ /etc/init.d/httpd restart</strong><br />
(or)<br />
<strong>$ /sbin/service httpd restart</strong></p>
<p>Note: Once moving the SSL certificates to the new server, you can also use WHM or CPanel to configure the certs.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/05/how-to-move-the-ssl-certificates.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ANSWER: Failed to open a secure file transfer session</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/05/answer-failed-to-open-a-secure-file-transfer-session.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/05/answer-failed-to-open-a-secure-file-transfer-session.html#comments</comments>
		<pubDate>Mon, 03 May 2010 00:24:43 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[secure file transfer]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[sftp server]]></category>
		<category><![CDATA[sftp setting]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh daemon]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=828</guid>
		<description><![CDATA[Check for the existence of the file sshd_config (/etc/ssh/sshd_config). Before editing the file check that path settings for sftp-server $ locate sftp-server /usr/libexec/openssh/sftp-server Check for the existence of following line in sshd_config Subsystem sftp /usr/libexec/openssh/sftp-server Incorrect path settings to sftp server causes the above message. Once the path is set correctly, you will no longer [...]]]></description>
			<content:encoded><![CDATA[<p>Check for the existence of the file <strong>sshd_config (/etc/ssh/sshd_config).</strong></p>
<p>Before editing the file check that path settings for sftp-server<br />
<strong>$ locate sftp-server</strong><br />
/usr/libexec/openssh/sftp-server</p>
<p>Check for the existence of following line in sshd_config<br />
<em>Subsystem sftp /usr/libexec/openssh/sftp-server</em><br />
<span id="more-828"></span><br />
Incorrect path settings to sftp server causes the above message. Once the path is set correctly, you will no longer see that error message</p>
<p><strong>$ /etc/init.d/sshd restart</strong><br />
to restart the ssh services.</p>
<p>Other such error message related to the above scenario<br />
<strong><em>File transfer server could not be started or it exited unexpectedly.<br />
Exit value 0 was returned. </em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/05/answer-failed-to-open-a-secure-file-transfer-session.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl: How to debug in Perl?</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/04/perl-how-to-debug-in-perl.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/04/perl-how-to-debug-in-perl.html#comments</comments>
		<pubDate>Fri, 30 Apr 2010 10:38:11 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[cgi application misbehaved]]></category>
		<category><![CDATA[cgi header]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[perl error]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=826</guid>
		<description><![CDATA[Turn on warnings by use warning; To run a perl script with warnings, type -w with the shebang as in #!/usr/bin/perl -w print &#8220;Content-type: text/html\n\n&#8221;; print &#8220;Hello World\n&#8221;; Check if you have the following line in the program print &#8220;Content-type: text/html\n\n&#8221;; This will output the text to the browser from the server. Print error messages [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Turn on warnings by </strong><br />
use warning;</p>
<p><strong>To run a perl script with warnings, type -w with the shebang as in</strong><br />
#!/usr/bin/perl -w<br />
print &#8220;Content-type: text/html\n\n&#8221;;<br />
print &#8220;Hello World\n&#8221;;</p>
<p><strong>Check if you have the following line in the program</strong><br />
print &#8220;Content-type: text/html\n\n&#8221;;<br />
This will output the text to the browser from the server.</p>
<p>Print error messages to the browser using<br />
use CGI::Carp qw(fatalsToBrowser);</p>
<p>The other way is to use the print command to debug your program.</p>
<p><strong>Common error messages</strong><br />
<em>&raquo; The specified CGI application misbehaved by not returning a complete set of HTTP headers.<br />
&raquo; Can&#8217;t locate missing-file.pm in @INC (@INC contains: &#8230;.. )</em></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/04/perl-how-to-debug-in-perl.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Types</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/04/backup-types.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/04/backup-types.html#comments</comments>
		<pubDate>Wed, 28 Apr 2010 06:49:03 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup type]]></category>
		<category><![CDATA[differential backup]]></category>
		<category><![CDATA[full backup]]></category>
		<category><![CDATA[incremental backup]]></category>
		<category><![CDATA[mirror backup]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=823</guid>
		<description><![CDATA[Full backup Full backup is process of backing up ALL data. First step towards all other types of backup Backup time will be longer Restore operation takes less time Differential backup Differential backup is the process of backing up data that has changed since the last FULL backup. Requires file maintenance as the backup file [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Full backup</strong><br />
Full backup is process of backing up ALL data.<br />
First step towards all other types of backup<br />
Backup time will be longer<br />
Restore operation takes less time</p>
<p><strong>Differential backup</strong><br />
Differential backup is the process of backing up data that has changed since the last FULL backup.<br />
Requires file maintenance as the backup file will be of similar size or larger than its previous backup<br />
Longer backup time than incremental backup<br />
Faster restoration than incremental backup</p>
<p><strong>Incremental backup</strong><br />
Incremental backup is the process of backing up data that has changed since the last Full, Incremental or Differential backup<br />
Takes lesser backup time as it will have small data to archive<br />
Takes longer restoration time</p>
<p><strong>Mirror backup</strong><br />
Mirror backup is similar to full backup and is a direct copy of the files/folders<br />
Files are not compressed in zip files and are not protected with password. They remain the mirror or exact copy of the source.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/04/backup-types.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert mp3 to audio (cda) format?</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/04/how-to-convert-mp3-to-audio-cda-format.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/04/how-to-convert-mp3-to-audio-cda-format.html#comments</comments>
		<pubDate>Wed, 07 Apr 2010 11:25:21 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Free Download]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[cda]]></category>
		<category><![CDATA[convert mp3 to audio]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[infra recorder]]></category>
		<category><![CDATA[infrarecorder]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mp3 to audio]]></category>
		<category><![CDATA[mp3 to cda]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=818</guid>
		<description><![CDATA[InfraRecorder &#8211; available under GPL license and can be used to convert MP3 music to audio (cda) format in Microsoft Windows. To convert mp3 to audio (cda) format, all you need to do is to select InfraRecorder &#187; choose Audio Disc &#187; drag the MP3 file to file list &#187; Click Burn the current compilation [...]]]></description>
			<content:encoded><![CDATA[<p><strong>InfraRecorder</strong> &#8211; available under GPL license and can be used to convert MP3 music to audio (cda) format in Microsoft Windows.</p>
<p>To convert mp3 to audio (cda) format, all you need to do is to select InfraRecorder &raquo; choose Audio Disc &raquo; drag the MP3 file to file list &raquo; Click Burn the current compilation to disc </p>
<p>Using InfraRecorder, you can also compile a CD/DVD, record disc images (ISO, BIN, CUE), record dual layer DVD&#8217;s, fixate discs and many such features.</p>
<p>You can check InfraRecorder at <a href="http://infrarecorder.org">http://infrarecorder.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/04/how-to-convert-mp3-to-audio-cda-format.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to import mysql dump (.gz or .sql) into a database?</title>
		<link>http://kurinchilamp.kurinchilion.com/2010/04/how-to-import-mysql-dump-gz-or-sql-into-a-database.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2010/04/how-to-import-mysql-dump-gz-or-sql-into-a-database.html#comments</comments>
		<pubDate>Mon, 05 Apr 2010 15:40:29 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[decompress]]></category>
		<category><![CDATA[Gunzip]]></category>
		<category><![CDATA[mysql dump]]></category>
		<category><![CDATA[mysql uncompress]]></category>
		<category><![CDATA[uncompress .gz]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=815</guid>
		<description><![CDATA[When moving mysql database from one server to another or, to test that the data backup works as expected we need to import mysql dump file in the testing environment. Create the database (test-database) in the testing environment and identify the location of the .gz or .sql file. If the mysql dump was a .gz [...]]]></description>
			<content:encoded><![CDATA[<p>When moving mysql database from one server to another or, to test that the data backup works as expected we need to import mysql dump file in the testing environment.</p>
<p>Create the database (test-database) in the testing environment and identify the location of the .gz or .sql file.</p>
<p>If the mysql dump was a .gz file, you need to gunzip to uncompress the file by typing<br />
<strong>$ gunzip mysqldump.sql.gz</strong></p>
<p>This will uncompress the .gz file and will just store mysqldump.sql in the same location.<br />
<span id="more-815"></span><br />
Type the following command to import sql data file:</p>
<p><strong>$ mysql -u username -p -h localhost test-database < mysqldump.sql<br />
password: _</strong></p>
<p>For the hostname part, you need to give the respective hostname of the mysql server depending on how it was configured (some times it may be just an IP, some times it may be an IP with port number)</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2010/04/how-to-import-mysql-dump-gz-or-sql-into-a-database.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

