<?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>Vinsol - Leading Ruby on Rails Development and Consulting Firm in India &#187; feisty fawn</title>
	<atom:link href="http://vinsol.com/blog/category/feisty-fawn/feed/" rel="self" type="application/rss+xml" />
	<link>http://vinsol.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 21 May 2012 13:11:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to make arrow keys working in irb in Linux/Ubuntu</title>
		<link>http://vinsol.com/blog/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-make-arrow-keys-working-in-irb-in-linuxubuntu</link>
		<comments>http://vinsol.com/blog/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 11:02:32 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[feisty fawn]]></category>
		<category><![CDATA[irb]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/</guid>
		<description><![CDATA[It was ruining all my mood and concentration when i was trying some sample ruby code in irb and again and again i had to retype the things because the arrow keys were not working there. I searched the problem on net and found that i need to have readline library on my linux and [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>It was ruining all my mood and concentration when i was trying some sample ruby code in irb and again and again i had to retype the things because the arrow keys were not working there. I searched the problem on net and found that i need to have <b>readline</b> library on my linux and in ruby as well. Now the point is readline should be available on the linux before you compile ruby so as you can give the readline option while compiling ruby. BUT we have ruby already installed !! Now What ?</p>
<p>Now, first you will need to install system based readline libraries as</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install libreadline5 libreadline5-dev
</textarea>
<p>If you are not able to install linux based readline with the above method the <a href="http://greenprogrammer.blogspot.com/2006/05/ruby-wreadline-on-ubuntu.html">refer this</a> for more details.</p>
<p>Now you will need to compile the ruby based <b>readline</b> interface to let you readline library available in <b>irb</b>.<br />
Do it by this&#8230;</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  cd /usr/local/src/ruby-1.8.6/ext/readline
  sudo ruby extconf.rb
  sudo make
  sudo make install
</textarea>
<p>thats it, all done!!<br />
Try your tips on arrow keys in irb, it should work now.<br />
enjoy!!</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install RMagick Gem on Linux/Ubuntu</title>
		<link>http://vinsol.com/blog/2007/07/04/how-to-install-rmagick-gem-on-linuxubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-rmagick-gem-on-linuxubuntu</link>
		<comments>http://vinsol.com/blog/2007/07/04/how-to-install-rmagick-gem-on-linuxubuntu/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 12:08:55 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[feisty fawn]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[RubyonRails]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2007/07/04/how-to-install-rmagick-gem-on-linuxubuntu/</guid>
		<description><![CDATA[While installing RMagick on Linux, if you are getting errors like this
&#8220;GraphicsMagick-config&#8230; no configure: error: Can&#8217;t install RMagick. Can&#8217;t find Magick-config or GraphicsMagick-config program. &#8230;&#8221;,
below is the solution for this error.
RMagick requires ImageMagick and which further requires loads of dependencies already available to get installed and work properly. I was figuring out of those all, [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>While installing RMagick on Linux, if you are getting errors like this<br />
&#8220;GraphicsMagick-config&#8230; no configure: error: Can&#8217;t install RMagick. Can&#8217;t find Magick-config or GraphicsMagick-config program. &#8230;&#8221;,<br />
below is the solution for this error.</p>
<p>RMagick requires ImageMagick and which further requires loads of dependencies already available to get installed and work properly. I was figuring out of those all, and thank god got a quite simple and elegant way to do all that in just three commands.<br />
First you will have to install imagemagick then libmagick9-dev and then finally you can install rmagick. </p>
<p>Here are the commands&#8230;</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install imagemagick
  sudo apt-get install libmagick9-dev
  sudo gem install rmagick
</textarea>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2007/07/04/how-to-install-rmagick-gem-on-linuxubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GUI based FTP client for Ubuntu FeistyFawn</title>
		<link>http://vinsol.com/blog/2007/07/03/gui-based-ftp-client-for-ubuntu-feistyfawn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gui-based-ftp-client-for-ubuntu-feistyfawn</link>
		<comments>http://vinsol.com/blog/2007/07/03/gui-based-ftp-client-for-ubuntu-feistyfawn/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 16:03:35 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[feisty fawn]]></category>
		<category><![CDATA[gFTP]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2007/07/03/gui-based-ftp-client-for-ubuntu-feistyfawn/</guid>
		<description><![CDATA[Working on command line SSH is quite natural but FTP is a bit heck.
I found it hard to work on command line FTP for my godaddy account specially for removing the remote files and uploading the directories. I found the gFTP very much useful GUI based Ftp client. You can install it from the console [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Working on command line SSH is quite natural but FTP is a bit heck.<br />
I found it hard to work on command line FTP for my godaddy account specially for removing the remote files and uploading the directories. I found the gFTP very much useful GUI based Ftp client. You can install it from the console by issuing this command&#8230;</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
    sudo apt-get install gftp
</textarea>
<p>After successful installation we can launch the gFTP application from the menu Applications->Internet->gFtp.</p>
<p>We can launch the application from the command line as <b>sudo gftp</b></p>
<p>In the GUI of gFTP we will required to provide the information of Host, Port, User and Pass&#8230; In host we need to give the IP address of the remote machine, we can do it better by adding the IP-Alias entry on the system&#8230; From the menu select System->Administration->Network &#8230; This is the Network Admin UI &#8230; Under the Hosts tab click on <b>Add</b> to add a new entry. Provide the IP and the unique alias.</p>
<p>Now in gFTP we can give this alias instead of the IP.</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2007/07/03/gui-based-ftp-client-for-ubuntu-feistyfawn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved fully on Ubuntu FeistyFawn</title>
		<link>http://vinsol.com/blog/2007/07/03/moved-fully-on-ubuntu-feistyfawn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=moved-fully-on-ubuntu-feistyfawn</link>
		<comments>http://vinsol.com/blog/2007/07/03/moved-fully-on-ubuntu-feistyfawn/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 11:33:13 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[feisty fawn]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2007/07/03/moved-fully-on-ubuntu-feistyfawn/</guid>
		<description><![CDATA[Hi everybody,
I have moved fully on Ubuntu FeistyFawn
There are lots of cool features in it like &#8230;. Run Application(the application launcher, hotkey alt+f2), the DesktopBar(full web and system search including files and folders, hotkey alt+f3) &#8230; and the TomBoy notes.
Use ctl+l to open explorer in specific location 



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi everybody,</p>
<p>I have moved fully on <a href="https://wiki.ubuntu.com/FeistyFawn">Ubuntu FeistyFawn</a></p>
<p>There are lots of cool features in it like &#8230;. <b>Run Application</b>(the application launcher, hotkey alt+f2), the <b>DesktopBar</b>(full web and system search including files and folders, hotkey alt+f3) &#8230; and the <b>TomBoy notes</b>.</p>
<p>Use <b>ctl+l</b> to open explorer in specific location </p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2007/07/03/moved-fully-on-ubuntu-feistyfawn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

