<?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>Anil Konsal</title>
	<atom:link href="http://anilkonsal.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://anilkonsal.com</link>
	<description></description>
	<lastBuildDate>Fri, 20 Aug 2010 11:17:21 +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>Spliiting a Huge text or CSV file into smaller chunks</title>
		<link>http://anilkonsal.com/?p=47</link>
		<comments>http://anilkonsal.com/?p=47#comments</comments>
		<pubDate>Fri, 20 Aug 2010 11:09:00 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=47</guid>
		<description><![CDATA[I got into a situation where i had to import a 10GB CSV file into mysql. I tried to open the file using excel, but it hanged and gave errors of Lesser Resources (RAM).&#160; Then I came to know about &#8230; <a href="http://anilkonsal.com/?p=47">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got into a situation where i had to import a 10GB CSV file into mysql. I tried to open the file using excel, but it hanged and gave errors of Lesser Resources (RAM).&nbsp;</p>
<p>Then I came to know about one less know tools of Linux shell called &#8216;csplit&#8217;.</p>
<p>I ran the command:</p>
<p><strong># csplit -k tenGB.csv +50000 {*}</strong></p>
<p>-k = do not delete &nbsp;the files on error encounter</p>
<p>+50000 = split to a new file after 49999 lines</p>
<p>{*} = repeat the same pattern on next files.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>it created almost 43 files. with pattern xx00, xx01 and so on&#8230;</p>
<p>then i renamed all these files using the command:</p>
<p>#<strong>for f in *; do mv &#8220;$f&#8221; &#8220;${f%}.csv&#8221;; done</strong></p>
<p><strong><span style="font-weight: normal;">and thats it!!</span></strong></p>
<div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Helios key bindigs for SVN stopped after update</title>
		<link>http://anilkonsal.com/?p=45</link>
		<comments>http://anilkonsal.com/?p=45#comments</comments>
		<pubDate>Sat, 07 Aug 2010 12:05:15 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=45</guid>
		<description><![CDATA[Go to Window &#62; Customize Perspective. under the tab &#8216;Command Groups Availability&#8217; check the &#8216;SVN&#8217; checkbox. The keybindings will start working. &#160;]]></description>
			<content:encoded><![CDATA[<p>Go to Window &gt; Customize Perspective.</p>
<p>under the tab &#8216;Command Groups Availability&#8217; check the &#8216;SVN&#8217; checkbox.</p>
<p>The keybindings will start working.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=45</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework long names for Controller Actions</title>
		<link>http://anilkonsal.com/?p=44</link>
		<comments>http://anilkonsal.com/?p=44#comments</comments>
		<pubDate>Sun, 11 Jul 2010 06:53:41 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=44</guid>
		<description><![CDATA[I started working on Zend Framework some days ago. Recently, I encountered an issue with the Controller actions. I wanted to have a controller action with name getRecordsByCountryAction in one of my controllers. To my surprise, this did not work &#8230; <a href="http://anilkonsal.com/?p=44">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I started working on Zend Framework some days ago. Recently, I encountered an issue with the Controller actions.
<div></div>
<div>I wanted to have a controller action with name <b>getRecordsByCountryAction</b> in one of my controllers. To my surprise, this did not work despite the fact that it was in accordance with the camel Case convention of naming.&nbsp;</div>
<div>I spent some hours googling on this issue however could not find the solution, Finally, I found that, the long names will not work as usual short name camel cases.&nbsp;</div>
<div>The long name has to be accessed using &#8216;-&#8217; or &#8216;.&#8217; in the small case words of the action name in browser.</div>
<div></div>
<div>So my action would become <b>&#8216;get-records-by-country</b>&#8216; or &#8216;<b>get.records.by.country</b>&#8216; when I have to access it from browser. My full url request would be <b>&#8216;/admin/country/get-records-by-country/country_id/2&#8242;</b></div>
<div></div>
<div>Somewhat confusing! yet working.</div>
<div></div>
<div>Happy PHPing.</div>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=44</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Vacations at McLeod Ganj</title>
		<link>http://anilkonsal.com/?p=42</link>
		<comments>http://anilkonsal.com/?p=42#comments</comments>
		<pubDate>Mon, 28 Jun 2010 08:45:00 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=42</guid>
		<description><![CDATA[Hi, I just returned from my 2 days short vacations at Dharamshala, McLeodGanj. I really needed a break after so long period of work load and pressure. I with my two friends Anuj Jain (Bonny) and Gaurav Luthra planned the &#8230; <a href="http://anilkonsal.com/?p=42">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi,
<div></div>
<div>I just returned from my 2 days short vacations at Dharamshala, McLeodGanj. I really needed a break after so long period of work load and pressure. I with my two friends Anuj Jain (Bonny) and Gaurav Luthra planned the trip on Wednesday.</div>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Apache Virtual hosts in windows vista</title>
		<link>http://anilkonsal.com/?p=32</link>
		<comments>http://anilkonsal.com/?p=32#comments</comments>
		<pubDate>Sun, 31 Jan 2010 01:31:46 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=32</guid>
		<description><![CDATA[On my way to start Zend Framework development, I found that I have to create the virtual host in my windows vista machine. I Googled for this thing and finally got my virtual host &#8216;zf.local&#8217; working with it document root &#8230; <a href="http://anilkonsal.com/?p=32">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On my way to start Zend Framework development, I found that I have to create the virtual host in my windows vista machine. I Googled for this thing and finally got my virtual host &#8216;zf.local&#8217; working with it document root set to &#8216;D:/htdocs/zf/public&#8217; Directory (Usually, I create my document host D:/htdocs).</p>
<p>The steps needed to accomplish this task are listed below:</p>
<p>As I decided to have my virtual host name as &#8216;zf.local&#8217;, It was neccessary that I put an entry of the same domain the hosts file, otherwise my browser might have requested my ISP&#8217;s DNS server to locate &#8216;zf.local&#8217;. So what I did is I opened my hosts file which is located at &#8216;C:\windows\system32\drivers\etc\&#8217;  folder. I double clicked on that file, I added the line</p>
<blockquote><p>127.0.0.1  zf.local</p></blockquote>
<p>I pressed Ctrl+s to save. But to my surprise, notepad gave an error that the file is opened in read-only mode; so changes cannot be saved. What now??</p>
<p>Then the funda of vista permissions came to my mind and then I opened the notepad as administrator (see pic)</p>
<p><a href="http://anilkonsal.com/wp-content/uploads/2010/01/run_as.jpg"><img class="alignnone size-medium wp-image-33" title="run_as" src="http://anilkonsal.com/wp-content/uploads/2010/01/run_as-234x300.jpg" alt="" width="234" height="300" /></a></p>
<p>So, I opened the notepad as administrator and then browsed to my hosts file which was located at &#8220;c:\windows\system32\drivers\etc\&#8221; folder. When the file got loaded in the notepad, I added one entry for new hostname  as</p>
<blockquote><p>127.0.0.1                    zf.local</p></blockquote>
<p>Saved and quit the notepad. Till this time, I am ready with &#8220;http://zf.local&#8221; showing my localhost listing in apache. Next, its time to add the different document root for this server name. For this, I had to edit two files</p>
<ol>
<li>c:\amp\apache\conf\httpd.conf : in this file, the inclusion of vhosts file is commented by default. So I uncommented that line to become &#8220;Include conf/extra/httpd-vhosts.conf&#8221;</li>
<li>c:\amp\apache\conf\extra\httpd-vhosts.conf : this is the actual file where we will add the virtual hosts entries. I opened the file and put the following para in it</li>
</ol>
<blockquote><p>NameVirtualHost 127.0.0.1</p>
<p>&lt;VirtualHost 127.0.0.1&gt;<br />
ServerName localhost<br />
DocumentRoot &#8220;d:/htdocs&#8221;<br />
&lt;/VirtualHost&gt;<br />
&lt;VirtualHost 127.0.0.1&gt;<br />
ServerName zf.local<br />
ServerAdmin webmaster@dummy-host.localhost<br />
DocumentRoot &#8220;d:/htdocs/zf/public&#8221;<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>Saved the file and restarted my apache server. And that&#8217;s it, I am done.  When I browse &#8220;http://localhost&#8221;, I am getting the listing of localhost and when I am browsing &#8220;http://zf.local&#8221;, I am getting the spash screen of Zend Framework which means I am once again successful. <img src='http://anilkonsal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Remember that the first virtual host entry is quite important coz without it, &#8220;http://zf.local&#8221; will show you the zend framework splash screen only and you will never get the &#8220;http://localhost&#8221; listing.</p>
<p>Thanks to google <img src='http://anilkonsal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Keep PHPing</p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Am Zend Certified Engineer now!</title>
		<link>http://anilkonsal.com/?p=25</link>
		<comments>http://anilkonsal.com/?p=25#comments</comments>
		<pubDate>Wed, 20 Jan 2010 09:42:48 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anilkonsal.com/?p=25</guid>
		<description><![CDATA[Finally, after an experience of 4 years and hours of studying, I am a Zend Certified Engineer today. The exam is not as tough as I expected, at the same time its not an easy one.  For studying, I would &#8230; <a href="http://anilkonsal.com/?p=25">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Finally, after an experience of 4 years and hours of studying, I am a Zend Certified Engineer today. The exam is not as tough as I expected, at the same time its not an easy one.  For studying, I would recommend php|architect ZCE study guide. It covers all the topics, But the one book that helped me a in detail and advanced study in PHP5 unleashed from the author &#8216;John Coggeshall&#8217;. He has covered the more details that any book on PHP on the planet may have covered.</p>
<p>Its worth taking this exam as I learnt a lot new things about PHP now.</p>
<p>Find me on Zend yellow pages @ http://www.zend.com/en/store/education/certification/yellow-pages.php#show-ClientCandidateID=ZEND012882</p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple attachments not going with PHPmailer v5</title>
		<link>http://anilkonsal.com/?p=24</link>
		<comments>http://anilkonsal.com/?p=24#comments</comments>
		<pubDate>Sat, 21 Nov 2009 07:46:19 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[attachment]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[phpmailer]]></category>

		<guid isPermaLink="false">http://anilkonsal.wordpress.com/2009/11/21/multiple-attachments-not-going-with-phpmailer-v5/</guid>
		<description><![CDATA[A bug in the PHPMailer v5 has been stopping me from sending multiple attachments in a mail. It was quite a confusing thing coz it I checked everything in my PHP code time and again. Somehow, after googling for this, &#8230; <a href="http://anilkonsal.com/?p=24">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A bug in the PHPMailer v5 has been stopping me from sending multiple attachments in a mail. It was quite a confusing thing coz it I checked everything in my PHP code time and again. Somehow, after googling for this, i got my answer; it is actually a bug in PHPmailer v5.</p>
<p>This is how I recified the bug.</p>
<ol>
<li>Open the file class.phpmailer.php</li>
<li>Goto line number 1236</li>
<li>Change <br />7=&gt; 0 <br />to <br />7=&gt;count($this-&gt;attachment) </li>
<li>Save the file and try.</li>
</ol>
<p>Thanks for the contributors, it saved my time.</p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planner 0.14.4 complete progress issue</title>
		<link>http://anilkonsal.com/?p=15</link>
		<comments>http://anilkonsal.com/?p=15#comments</comments>
		<pubDate>Fri, 16 Oct 2009 04:11:05 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[75]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[percent]]></category>
		<category><![CDATA[Planner]]></category>

		<guid isPermaLink="false">http://anilkonsal.wordpress.com/2009/10/16/planner-0-14-4-complete-progress-issue1/</guid>
		<description><![CDATA[I have been using the Planner for quite a long time. Its a very good software for Project Management and Planning. Over the time many improvements have been made in the project. The latest stable release you can find at &#8230; <a href="http://anilkonsal.com/?p=15">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been using the Planner for quite a long time. Its a very good software for Project Management and Planning. Over the time many improvements have been made in the project. The latest stable release you can find at <a href="http://live.gnome.org/planner">http://live.gnome.org/planner</a> is 0.14.4. I upgraded from 0.14.2 on my Vista Laptop. Everything is fine, however a strange thing I noted is that the complete progress of any task does not move beyond 75%. I tried on subtasks and individual tasks, but invain.</p>
<p>Finally, I consulted planner development team regarding this issue and Rhian Geleick guided me the temporary solution for the bug. The solution is</p>
<ol>
<li>Go to the installtaion directory of planner <br />&lt;INSTALL DIR&gt;/share/planner/glade. </li>
<li>Edit the file named &#8216;task-dialog.glade&#8217; in this directory, in any of the text editors </li>
<li>Goto Line number 236, and change <br />&lt;property name=&#8221;adjustment&#8221;&gt;0 0 100 10 25 25&lt;/property&gt; <br />To <br />&lt;property name=&#8221;adjustment&#8221;&gt;0 0 100 10 25 0&lt;/property&gt; </li>
<li>Anyone using the priority field should should also change line number 257 <br />From <br />&lt;property name=&#8221;adjustment&#8221;&gt;0 0 9999 1 10 10&lt;/property&gt; <br />To <br />&lt;property name=&#8221;adjustment&#8221;&gt;0 0 9999 1 10 0&lt;/property&gt; </li>
<li>Save the file and then Check in Planner. The bug is rectified.</li>
</ol>
<p>Thanks for the Planner Team for their timely support.</p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable mod_rewrite in apache</title>
		<link>http://anilkonsal.com/?p=13</link>
		<comments>http://anilkonsal.com/?p=13#comments</comments>
		<pubDate>Thu, 15 Oct 2009 05:59:39 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rar]]></category>

		<guid isPermaLink="false">http://anilkonsal.wordpress.com/2009/10/15/enable-mod_rewrite-in-apache/</guid>
		<description><![CDATA[If you are using Windows OS and want to enable mod_rewrite module here is how to do it. This is the general configuration guideline both for Windows and Linux server: QUOTE 1. Find the httpd.conf file (usually you will find &#8230; <a href="http://anilkonsal.com/?p=13">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are using Windows OS and want to enable mod_rewrite module here is how to do it. <br />This is the general configuration guideline both for Windows and Linux <a href="http://www.astahost.com/info.php/Apache-Tutorial-Enable-Mod_rewrite-Windows_t11623.html#">server</a>:</p>
<p>QUOTE</p>
<p>1. Find the httpd.conf file (usually you will find it in a folder called conf, config or something along those lines) <br />2. Inside the httpd.conf file uncomment the line LoadModule rewrite_module modules/mod_rewrite.so (remove the pound &#8216;#&#8217; sign from in front of the line) <br />3. Also find the line ClearModuleList is uncommented then find and make sure that the line AddModule mod_rewrite.c is not commented out.</p>
<p>For Windows, find the following section in httpd.conf file:</p>
<pre style="border-bottom:#cecece 1px solid;border-left:#cecece 1px solid;background-color:#fbfbfb;min-height:40px;width:650px;overflow:auto;border-top:#cecece 1px solid;border-right:#cecece 1px solid;padding:5px;">
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
DocumentRoot "C:/path/to/my/root"
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
# Each directory to which Apache has access, can be configured with respect
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
# to which services and features are allowed and/or disabled in that
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
# directory (and its subdirectories).
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
#
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
# First, we configure the "default" to be a very restrictive set of
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
# permissions.
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,'Courier New',courier,monospace;font-size:12px;margin:0;">
#
</pre>
<p>Now modify the option for AllowOverride to look like this: <br /><strong>&lt;Directory /&gt; <br />Options All <br />AllowOverride All <br />&lt;/Directory&gt;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open rar file or Extract rar files under Linux or UNIX</title>
		<link>http://anilkonsal.com/?p=10</link>
		<comments>http://anilkonsal.com/?p=10#comments</comments>
		<pubDate>Thu, 15 Oct 2009 05:16:44 +0000</pubDate>
		<dc:creator>anil</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rar]]></category>

		<guid isPermaLink="false">http://anilkonsal.wordpress.com/2009/10/15/open-rar-file-or-extract-rar-files-under-linux-or-unix/</guid>
		<description><![CDATA[download binary package from official rarlab site: $ cd /tmp $ wget http://www.rarlab.com/rar/rarlinux-3.6.0.tar.gz Untar file $ tar -zxvf rarlinux-3.6.0.tar.gz Both unrar and rar commands are located in rar sub-directory. Just go to rar directory: $ cd rar $ ./unrar Now &#8230; <a href="http://anilkonsal.com/?p=10">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="margin:0 0 1.57em;padding:0;"><span style="line-height:22px;font-family:Georgia;color:rgb(17,17,17);font-size:14px;">download binary package from official <a style="color:rgb(0,102,153);text-decoration:underline;margin:0;padding:0;" href="http://www.rarlab.com/download.htm">rarlab site</a>: <br /> <code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ cd /tmp <br /> $ wget http://www.rarlab.com/rar/rarlinux-3.6.0.tar.gz</code></span></p>
<p style="margin:0 0 1.57em;padding:0;">Untar file <br /> <code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ tar -zxvf rarlinux-3.6.0.tar.gz</code></p>
<p style="margin:0 0 1.57em;padding:0;">Both unrar and rar commands are located in rar sub-directory. Just go to rar directory: <br /> <code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ cd rar <br /> $ ./unrar</code></p>
<p style="margin:0 0 1.57em;padding:0;">Now copy rar and unrar to /bin directory: <br /> <code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;"># cp rar unrar /bin</code></p>
<h3 style="line-height:1.22em;font-size:1.28em;font-weight:normal;margin:1.83em 0 .61em;padding:0;">How to use unrar</h3>
<p style="margin:0 0 1.57em;padding:0;">unrar command supports various options below are common options that you need to use everyday.</p>
<h3 style="line-height:1.22em;font-size:1.28em;font-weight:normal;margin:1.83em 0 .61em;padding:0;">Task: To open rar (unpack) file in current directory type command:</h3>
<p style="margin:0 0 1.57em;padding:0;"><code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ unrar e file.rar</code></p>
<p style="margin:0 0 1.57em;padding:0;">Please note that replace file.rar filename with your actual filename.</p>
<h3 style="line-height:1.22em;font-size:1.28em;font-weight:normal;margin:1.83em 0 .61em;padding:0;">Task: List (l) file inside rar archive:</h3>
<p style="margin:0 0 1.57em;padding:0;"><code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ unrar l file.rar</code></p>
<h3 style="line-height:1.22em;font-size:1.28em;font-weight:normal;margin:1.83em 0 .61em;padding:0;">Task: To extract (x) files with full path type command:</h3>
<p style="margin:0 0 1.57em;padding:0;"><code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ unrar x file.rar</code></p>
<p style="margin:0 0 1.57em;padding:0;">(D) To test (t) integrity of archive, file type command: <br /> <code style="border-bottom:rgb(221,221,221) 1px solid;border-left:rgb(221,221,221) 1px solid;line-height:1.38em;display:block;font-family:Consolas, 'Andale Mono', Courier, 'Courier New';background:rgb(238,238,238) 0 0;font-size:.92em;border-top:rgb(221,221,221) 1px solid;border-right:rgb(221,221,221) 1px solid;margin:0 0 1.69em;padding:.61em .84em;">$ unrar t file.rar</code></p>
]]></content:encoded>
			<wfw:commentRss>http://anilkonsal.com/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
