<?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; ubuntu</title>
	<atom:link href="http://vinsol.com/blog/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://vinsol.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 11 Jan 2012 06:07:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu Hardy Heron: A great synch with whats in demand</title>
		<link>http://vinsol.com/blog/2008/06/04/ubuntu-hardy-heron-a-great-synch-with-whats-in-demand/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ubuntu-hardy-heron-a-great-synch-with-whats-in-demand</link>
		<comments>http://vinsol.com/blog/2008/06/04/ubuntu-hardy-heron-a-great-synch-with-whats-in-demand/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 05:47:41 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[hard_heron]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/?p=65</guid>
		<description><![CDATA[I upgraded the dist to Hardy Heron, the Ubuntu 8.04. And my experience with it so far has been very satisfactory.
Its much more stable now. I found various stuff already bundled which previously I had to explicitly install. For me the good things bundled&#8230;
Firefox 3
Hardy provides Firefox 3(beta) by default, comparatively its a super fast [...]


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>I upgraded the dist to Hardy Heron, the Ubuntu 8.04. And my experience with it so far has been very satisfactory.<br />
Its much more stable now. I found various stuff already bundled which previously I had to explicitly install. For me the good things bundled&#8230;</p>
<h4>Firefox 3</h4>
<p>Hardy provides Firefox 3(beta) by default, comparatively its a super fast browser now. I am desperately waiting for Firfox 3 final release. Once I was a bit upset to see that the Firbug is no more compatible with Firefox3 but then I found <a href="http://getfirebug.com/releases/firebug/1.2/firebug-1.2.0b2.xpi">Firebug&#8217;s release 1.2</a> which works fine with Firefox3. Till yet have not found any problem and both are working fine. Firefox3 is certainly quite faster.</p>
<h4>Ruby 1.8.6</h4>
<p>Provides Ruby 1.8.6 (patchlevel 111). Good!<br />
The libmagick is also available but still the RMagick needs to be installed the way <a href="http://expressica.com/2007/07/04/how-to-install-rmagick-gem-on-linuxubuntu/">I posted here</a>.</p>
<h4>Pidgin</h4>
<p>A one stop shop for almost all the messenger services like gtalk, aim, yahoo, irc and many more. In previous dist I had to install gaim.</p>
<p>This new ubuntu is operating quite faster and I am enjoying it a lot.</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/06/04/ubuntu-hardy-heron-a-great-synch-with-whats-in-demand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby interface for OpenSSL</title>
		<link>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ruby-interface-for-openssl</link>
		<comments>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 00:57:20 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[openssl]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2008/03/04/ruby-interface-for-openssl/</guid>
		<description><![CDATA[If you have installed ruby using apt-get or if you have not mentioned the configuration option for openssl while installing from source, you can expect openssl will not work with ruby.
Here is the solution for the same&#8230;
Step 1
Install gcc and make(if you don&#8217;t have already on your box)

  sudo apt-get install gcc make

Step 2
Install [...]


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>If you have installed ruby using apt-get or if you have not mentioned the configuration option for openssl while installing from source, you can expect openssl will not work with ruby.</p>
<p>Here is the solution for the same&#8230;</p>
<h4>Step 1</h4>
<p>Install gcc and make(if you don&#8217;t have already on your box)</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install gcc make
</textarea>
<h4>Step 2</h4>
<p>Install the system level OpenSSL and dev libraries</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install openssl libssl-dev
</textarea>
<h4>Step 3</h4>
<p>Install the ruby&#8217;s openssl interface to the system&#8217;s openssl</p>
<p>switch the directory to the ruby&#8217;s source code&#8217;s openssl</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  cd /usr/local/src/ruby1.8.6/ext/openssl
</textarea>
<p>install the ruby&#8217;s openssl interface</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo ruby extconf.rb
  make
  make install
</textarea>
<p>try requiring the openssl in irb</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  require 'openssl'
</textarea>
<p>if returns true, installed successfully!</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup locales in Ubuntu</title>
		<link>http://vinsol.com/blog/2008/03/04/setup-locales-in-ubuntu/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=setup-locales-in-ubuntu</link>
		<comments>http://vinsol.com/blog/2008/03/04/setup-locales-in-ubuntu/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 00:17:17 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[locales]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2008/03/04/setup-locales-in-ubuntu/</guid>
		<description><![CDATA[In a fresh Ubuntu, not having the locales setup, it shows warning every time while installing any software/library and while stopping/restarting too.
The simple way to setup the locales you need is&#8230;
e.g. &#8220;en_IN UTF-8&#8243;
Step 1
Edit or Create the file /var/lib/locales/supported.d/local and add the required local in the file as&#8230;

  en_IN UTF-8

you can add more locales [...]


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>In a fresh Ubuntu, not having the locales setup, it shows warning every time while installing any software/library and while stopping/restarting too.<br />
The simple way to setup the locales you need is&#8230;<br />
e.g. &#8220;en_IN UTF-8&#8243;</p>
<h4>Step 1</h4>
<p>Edit or Create the file /var/lib/locales/supported.d/local and add the required local in the file as&#8230;</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  en_IN UTF-8
</textarea>
<p>you can add more locales in new lines.</p>
<h4>Step 2</h4>
<p>reconfigure your system&#8217;s locales by issuing the command</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  dpkg-reconfigure locales
</textarea>
<p>Thats done!</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/03/04/setup-locales-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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&amp;utm_medium=rss&amp;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&amp;utm_medium=rss&amp;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[RubyonRails]]></category>
		<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[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&amp;utm_medium=rss&amp;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&amp;utm_medium=rss&amp;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>

