<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8989646463837915</id><updated>2011-11-27T15:27:26.315-08:00</updated><category term='Ruby on Rails'/><category term='Debian/Ubuntu'/><category term='Virtualization'/><category term='Ubuntu/Debian'/><title type='text'>/home/saurabh</title><subtitle type='html'>Software Libre,Linux,Rails,VMs and More</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-4568066545078003673</id><published>2008-09-03T07:19:00.000-07:00</published><updated>2008-09-03T07:29:00.754-07:00</updated><title type='text'>/usr/bin/gem:23: uninitialized constant Gem::GemRunner (NameError)</title><content type='html'>Recently I ran an update to my Ruby Gems using the following command&lt;br /&gt;&lt;br /&gt;sudo gem update --system&lt;br /&gt;&lt;br /&gt;and I got this strange Error:&lt;br /&gt;&lt;br /&gt;/usr/bin/gem:23: uninitialized constant Gem::GemRunner(NameError)&lt;br /&gt;&lt;br /&gt;I googled and found a fix to this problem.&lt;br /&gt;Add the line in bold to the file /usr/bin/gem:&lt;br /&gt;&lt;br /&gt;#!/usr/bin/env ruby&lt;br /&gt;#--&lt;br /&gt;# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.&lt;br /&gt;# All rights reserved.&lt;br /&gt;# See LICENSE.txt for permissions.&lt;br /&gt;#++&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;require 'rubygems/gem_runner'&lt;/span&gt;&lt;br /&gt;require 'rubygems'&lt;br /&gt;Gem.manage_gems&lt;br /&gt;&lt;br /&gt;required_version = Gem::Version::Requirement.new("&gt;= 1.8.0")&lt;br /&gt;unless  required_version.satisfied_by?(Gem::Version.new(RUBY_VERSION))&lt;br /&gt;  puts "Expected Ruby Version #{required_version}, was #{RUBY_VERSION}"&lt;br /&gt;  exit(1)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;# We need to preserve the original ARGV to use for passing gem options&lt;br /&gt;# to source gems.  If there is a -- in the line, strip all options after&lt;br /&gt;# it...its for the source building process.&lt;br /&gt;args = !ARGV.include?("--") ? ARGV.clone : ARGV[0...ARGV.index("--")]&lt;br /&gt;&lt;br /&gt;Gem::GemRunner.new.run(args)&lt;br /&gt;&lt;br /&gt;And it works perfectly&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-4568066545078003673?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/4568066545078003673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=4568066545078003673' title='44 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/4568066545078003673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/4568066545078003673'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/09/usrbingem23-uninitialized-constant.html' title='/usr/bin/gem:23: uninitialized constant Gem::GemRunner (NameError)'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>44</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-7498040969783095876</id><published>2008-08-29T03:07:00.000-07:00</published><updated>2008-08-29T04:42:04.568-07:00</updated><title type='text'>Ruby Script to pull documents over http</title><content type='html'>I Recently Got a Strange problem, quite a strange requirement from one of the clients.They needed to build a query whose result will be an XML. We need to get that XML on the local system over HTTP without any login credentials.&lt;br /&gt;The Biggest catch was, apart from the files themselves, we even had to fetch the metadata along with the documents.&lt;br /&gt;Here is a Ruby Script that helped us:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;require 'net/http'&lt;br /&gt;&lt;br /&gt;Net::HTTP.start("www.safewlabs.com") { |http|&lt;br /&gt;  resp = http.get("/images/SAFEW.jpg")&lt;br /&gt;  open("safewlogo.jpg", "wb") { |file|&lt;br /&gt;    file.write(resp.body)&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;puts "File Copied"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Description:&lt;/span&gt; The Script above uses the net/http library of Ruby. &lt;a href="http://www.ruby-doc.org/stdlib/libdoc/net/http/rdoc/index.html"&gt;Ruby Net HTTP API&lt;/a&gt; resides here. We first access the URL of the server where the Particular file is hosted.Then in the variable put the response of the getmethod of the http protocol.In this case it uses the absolute path of the file.Once done, Ruby file I/O method open is used, where we open a new file on our local system and write the fetched information into it (file.write(resp.body)).&lt;br /&gt;&lt;br /&gt;The Copied file is stored in the same folder as the script.You can also set a target folder for it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-7498040969783095876?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/7498040969783095876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=7498040969783095876' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/7498040969783095876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/7498040969783095876'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/08/ruby-script-to.html' title='Ruby Script to pull documents over http'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-8654133342162162672</id><published>2008-06-02T03:55:00.000-07:00</published><updated>2008-06-02T05:02:09.530-07:00</updated><title type='text'>Bangalore RUG gets a site at sploup.com</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_8j1QXOC-o8s/SEPX2sOT2nI/AAAAAAAAA84/lOyv6i4JTzY/s1600-h/brugsite.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_8j1QXOC-o8s/SEPX2sOT2nI/AAAAAAAAA84/lOyv6i4JTzY/s400/brugsite.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5207242928754514546" /&gt;&lt;/a&gt;&lt;br /&gt;Bangalore RUG recently got a site for the first time.This came out of the need to set the ball rolling for activity more than just a discussion group.As agreed by fellow moderators,Sidu and Satish, this group is a knowledge centric group and there needs to be a central place for all Ruby, Rails knowledge.Then I think the group might serve it's right purpose.I googled for a such a place to create site,and it stumbled upon sploup.com. Which is a place where you can create sites for groups.&lt;br /&gt;&lt;br /&gt;In this place I could:&lt;br /&gt;1.Get a place to share the code (Download Section)&lt;br /&gt;2.Calender to Mark the calenders&lt;br /&gt;3.Direct connect for the community members&lt;br /&gt;4.Share Photos and Publicize the group.&lt;br /&gt;&lt;br /&gt;Well the only thing which I felt was strongly missing is the Blogging part.I wanted to run a community blog,a much better resource center for Ruby and Rails ,anything for that matter than books.&lt;br /&gt;&lt;br /&gt;The interface comes with a dashboard and a lot of good features though,select themes,customize them considerably,manage users,manage content,create pages.You can add questions for people who want to join new.&lt;br /&gt;&lt;br /&gt;This is a good option to keep the site for a group or a community.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-8654133342162162672?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/8654133342162162672/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=8654133342162162672' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8654133342162162672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8654133342162162672'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/06/bangalore-rug-gets-site-at-sploupcom.html' title='Bangalore RUG gets a site at sploup.com'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_8j1QXOC-o8s/SEPX2sOT2nI/AAAAAAAAA84/lOyv6i4JTzY/s72-c/brugsite.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-1384176200256817963</id><published>2008-05-22T09:03:00.000-07:00</published><updated>2008-05-22T09:39:17.477-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Debian/Ubuntu'/><title type='text'>Hardy Heron comes to the town</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_8j1QXOC-o8s/SDWhA8OT2mI/AAAAAAAAA8g/eKU-x8wNlmI/s1600-h/Screenshot.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_8j1QXOC-o8s/SDWhA8OT2mI/AAAAAAAAA8g/eKU-x8wNlmI/s400/Screenshot.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5203241982034696802" /&gt;&lt;/a&gt;&lt;br /&gt;As you can see from my previous posts, I like to review each version of Ubuntu sooner or later.Now, this is quite early, as we are only a month old into Hardy Heron the latest offering of Ubuntu from Canonical. This thing runs like a complete treat to the eyes of the user and you can easily make out that this has been made to make linux reach out to the desktop users, who want a virus free but user friendly interface.&lt;br /&gt;Now, whats so special about this version.Well I feel the best thing about the server is inbuilt KVM support and incorporation of JeOS, a version with which you can make virtual appliances using VMware.It has firefox 3 beta 5 installed looks good.&lt;br /&gt;&lt;br /&gt;However,desktop has all the offerings similar to Gutsy.The number of free and third party software have increased in the repositories.There was a major security vulnerability discovered in the Open SSL key but that was fixed, a fix was provided as a part of the update package.&lt;br /&gt;&lt;br /&gt;Now,about the device support, its really amazing as the case with all other distros. I even tried Kubuntu, and a remixed KDE 4 version of Kubuntu, but KDE 4 still has sometime before it gets fully adopted.At least thats what I feld after using it. The management of desktop is much beautiful and easy with the plasma and widget fundamantals, a completely new concept in the world of desktops, but loses on stability and is still buggy.In sometime however,it is going to rule the desktops for sure.&lt;br /&gt;&lt;br /&gt;I think my discussion went off the track to review KDE4 instead of Hardy.So things are much the same now, except for educational and accessibility software.Edubuntu now comes as an add on instead of a separate distro and accessibility things like Orca comes pre-installed, you just need to configure it.&lt;br /&gt;&lt;br /&gt;The screenshot shows the preference settings for accessibility software.All in all this is a great distro for desktop users.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-1384176200256817963?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/1384176200256817963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=1384176200256817963' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1384176200256817963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1384176200256817963'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/05/hardy-heron-comes-to-town.html' title='Hardy Heron comes to the town'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_8j1QXOC-o8s/SDWhA8OT2mI/AAAAAAAAA8g/eKU-x8wNlmI/s72-c/Screenshot.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-8745429136861651977</id><published>2008-03-20T09:54:00.000-07:00</published><updated>2008-03-20T11:49:11.609-07:00</updated><title type='text'>Why is Debian and Ubuntu a cut above others ?</title><content type='html'>Debian and Ubuntu is definitely a cut above all the distros.They are the true symbol of freedom provided by the Open Source software.&lt;br /&gt;Debian for instance is the most robust OS on earth.A very long testing cycle and a stringent process for certifying the software, a super process and yes the end result is satisfying.When you look at etch, its a a marvel , a masterpiece of software and Debian community.It comes with 18,733 software declared stable by the master team and an ever reliable word.I have been using the system for months without a single malfunction or strange behavior or even a single crash or hang.Effortless is what i can say and smooth in use.No hassles of compatibility of Software and everything is available in the 3 DVDs.Install it and fetch the updates.&lt;br /&gt;&lt;br /&gt;Ubuntu, comes with a special spirit, a spirit of humanity and a great community to backup.I thank Mr Shuttleworth to be upto his commitment and promises of Software Libre.The people behind Ubuntu and the users,that have shown the response to it.The way they have eased the desktop computing in Linux is commendable,and now forms a serious threat to windows.See the trend, people have already voted and asked Dell to bring out PCs with Ubuntu.Dell responded superbly and XPS I tell you has amazing device drivers compatibility.Even the remote control for presentation works out of the box.&lt;br /&gt;&lt;br /&gt;The way they Ubuntu is expanding its business all over the world will see it become a software for human beings, from Linux for human beings.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-8745429136861651977?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/8745429136861651977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=8745429136861651977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8745429136861651977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8745429136861651977'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/03/why-is-debian-and-ubuntu-cut-above.html' title='Why is Debian and Ubuntu a cut above others ?'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-6726570670032332819</id><published>2008-03-16T22:47:00.000-07:00</published><updated>2008-03-16T23:34:54.771-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ruby on Rails'/><title type='text'>Installing RMagick and ImageMagick  on Linux</title><content type='html'>Many of the Rails applications in today's scenario are web based applications and are mostly ecommerce, social networking products or concepts pertaining web 2.0 domain.Images and their manipulation form an integral part of these applications.Imagemagick is a library which reads the image formats and encodings.RMagick is a library written in Ruby for reading and manipulating Images  in your rails applications.&lt;br /&gt;&lt;br /&gt;It's actually a challange to Install the versions of ImageMagick and RMagick which are exactly compantible with each other.Doing this on Ubuntu is another pain.However after a lot of trial and error,I figured out the most simple way to install ImageMagick and RMagick.I have Feisty,Gutsy and Etch with me and I had a hard time finding a suitable RMagick for them.&lt;br /&gt;&lt;br /&gt;I would always reccomend the source installation of Imagemagick, because we just can trust that the version available in the Festy,Gutsy or Etch repos are the ones we want and whether it is compatible or not.So leave "sudo apt-get install imagemagick" and even "gem install rmagick" out of question.&lt;br /&gt;&lt;br /&gt;To download Imagemagick goto &lt;a href="http://www.imagemagick.org/script/download.php"&gt;ImageMagick Dowload Page&lt;/a&gt; and select a suitable mirror for download.After a lot of "Head Banging"  or listening to Dreamtheater Songs,I concluded that the version "ImageMagick-6.3.8-11.tar.gz" is the one which we should ideally download.&lt;br /&gt;Once downloaded, unzip the file:&lt;br /&gt;&lt;br /&gt;tar xvzf ImageMagick-6.3.8-11.tar.gz&lt;br /&gt;&lt;br /&gt;Then,chandge the directory and goto ImageMagick Directory:&lt;br /&gt;&lt;br /&gt;cd ImageMagick-6.3.8-11&lt;br /&gt;./configure&lt;br /&gt;&lt;br /&gt;Once configured it will list the Image formats.&lt;br /&gt;then do a make by&lt;br /&gt;&lt;br /&gt;make&lt;br /&gt;sudo make install&lt;br /&gt;&lt;br /&gt;Once this is over we go over to install RMagick.Goto &lt;a href="http://rubyforge.org/projects/rmagick/"&gt;RMagick Download Page&lt;/a&gt; and download RMagick-2.2.2.tar.gz from the site. After all the trials, these versions of RMagick and Imagemagick are well compatible with each other and also work well on Rails version 2.0.2.&lt;br /&gt;&lt;br /&gt;Untar the RMagick, and follow the commands:&lt;br /&gt;&lt;br /&gt;tar xvzf RMagick-2.2.2.tar.gz&lt;br /&gt;cd RMagick-2.2.2&lt;br /&gt;ruby setup.rb&lt;br /&gt;ruby setup.rb install&lt;br /&gt;&lt;br /&gt;Once this is over,you can check the configuration by writing the command:&lt;br /&gt;&lt;br /&gt;identify -list format&lt;br /&gt;&lt;br /&gt;The Ideal output is :&lt;br /&gt;&lt;br /&gt;saurabh@localhost:/etc/ld.so.conf.d$ identify -list format&lt;br /&gt;   Format  Module    Mode  Description&lt;br /&gt;-------------------------------------------------------------------------------&lt;br /&gt;        A* RAW       rw+   Raw alpha samples&lt;br /&gt;       AI  PDF       rw-   Adobe Illustrator CS2&lt;br /&gt;      ART* ART       rw-   PFS: 1st Publisher Clip Art&lt;br /&gt;      ARW  DNG       r--   Sony Alpha Raw Image Format&lt;br /&gt;      AVI* AVI       r--   Microsoft Audio/Visual Interleaved&lt;br /&gt;      AVS* AVS       rw+   AVS X image&lt;br /&gt;        B* RAW       rw+   Raw blue samples&lt;br /&gt;      BMP* BMP       rw-   Microsoft Windows bitmap image&lt;br /&gt;     BMP2* BMP       -w-   Microsoft Windows bitmap image v2&lt;br /&gt;     BMP3* BMP       -w-   Microsoft Windows bitmap image v3&lt;br /&gt;        C* RAW       rw+   Raw cyan samples&lt;br /&gt;  CAPTION* CAPTION   r--   Image caption&lt;br /&gt;      CIN* CIN       rw+   Cineon Image File&lt;br /&gt;      CIP* CIP       -w-   Cisco IP phone image format&lt;br /&gt;     CLIP* CLIP      -w+   Image Clip Mask&lt;br /&gt;     CMYK* CMYK      rw+   Raw cyan, magenta, yellow, and black samples&lt;br /&gt;    CMYKA* CMYK      rw+   Raw cyan, magenta, yellow, black, and opacity samples&lt;br /&gt;      CR2  DNG       r--   Canon Digital Camera Raw Image Format&lt;br /&gt;      CRW  DNG       r--   Canon Digital Camera Raw Image Format&lt;br /&gt;      CUR* CUR       rw-   Microsoft icon&lt;br /&gt;      CUT* CUT       r--   DR Halo&lt;br /&gt;      DCM* DCM       r--   Digital Imaging and Communications in Medicine image&lt;br /&gt;           DICOM is used by the medical community for images like X-rays.  The&lt;br /&gt;           specification, "Digital Imaging and Communications in Medicine&lt;br /&gt;           (DICOM)", is available at http://medical.nema.org/.  In particular,&lt;br /&gt;           see part 5 which describes the image encoding (RLE, JPEG, JPEG-LS),&lt;br /&gt;           and supplement 61 which adds JPEG-2000 encoding.&lt;br /&gt;      DCR  DNG       r--   Kodak Digital Camera Raw Image File&lt;br /&gt;      DCX* PCX       rw+   ZSoft IBM PC multi-page Paintbrush&lt;br /&gt;    DFONT* TTF       r--   Multi-face font package (Freetype 2.3.5)&lt;br /&gt;      DNG  DNG       r--   Digital Negative&lt;br /&gt;      DOT  DOT       ---   Graphviz&lt;br /&gt;      DPS  DPS       ---   Display Postscript Interpreter&lt;br /&gt;      DPX* DPX       rw+   SMPTE 268M-2003 (DPX 2.0)&lt;br /&gt;           Digital Moving Picture Exchange Bitmap, Version 2.0.&lt;br /&gt;           See SMPTE 268M-2003 specification at http://www.smtpe.org&lt;br /&gt;           &lt;br /&gt;     EPDF  PDF       rw-   Encapsulated Portable Document Format&lt;br /&gt;      EPI  PS        rw-   Encapsulated PostScript Interchange format&lt;br /&gt;      EPS  PS        rw-   Encapsulated PostScript&lt;br /&gt;     EPS2* PS2       -w-   Level II Encapsulated PostScript&lt;br /&gt;     EPS3* PS3       -w+   Level III Encapsulated PostScript&lt;br /&gt;     EPSF  PS        rw-   Encapsulated PostScript&lt;br /&gt;     EPSI  PS        rw-   Encapsulated PostScript Interchange format&lt;br /&gt;      EPT  EPT       rw-   Encapsulated PostScript with TIFF preview&lt;br /&gt;     EPT2  EPT       rw-   Encapsulated PostScript Level II with TIFF preview&lt;br /&gt;     EPT3  EPT       rw+   Encapsulated PostScript Level III with TIFF preview&lt;br /&gt;      FAX* FAX       rw+   Group 3 FAX&lt;br /&gt;           FAX machines use non-square pixels which are 1.5 times wider than they&lt;br /&gt;           are tall but computer displays use square pixels, therefore FAX images&lt;br /&gt;           may appear to be narrow unless they are explicitly resized using a&lt;br /&gt;           geometry of "150x100%".&lt;br /&gt;           &lt;br /&gt;     FITS* FITS      rw-   Flexible Image Transport System&lt;br /&gt;  FRACTAL* PLASMA    r--   Plasma fractal image&lt;br /&gt;      FTS* FTS       rw-   Flexible Image Transport System&lt;br /&gt;        G* RAW       rw+   Raw green samples&lt;br /&gt;       G3* FAX       rw-   Group 3 FAX&lt;br /&gt;      GIF* GIF       rw+   CompuServe graphics interchange format&lt;br /&gt;    GIF87* GIF       rw-   CompuServe graphics interchange format (version 87a)&lt;br /&gt; GRADIENT* GRADIENT  r--   Gradual passing from one shade to another&lt;br /&gt;     GRAY* GRAY      rw+   Raw gray samples&lt;br /&gt;HISTOGRAM* HISTOGRAM -w-   Histogram of the image&lt;br /&gt;      HTM* HTML      -w-   Hypertext Markup Language and a client-side image map&lt;br /&gt;     HTML* HTML      -w-   Hypertext Markup Language and a client-side image map&lt;br /&gt;      ICB* TGA       rw+   Truevision Targa image&lt;br /&gt;      ICO* ICON      rw+   Microsoft icon&lt;br /&gt;     ICON* ICON      rw-   Microsoft icon&lt;br /&gt;     INFO  INFO      -w+   The image format and characteristics&lt;br /&gt;      IPL* IPL       rw+   IPL Image Sequence&lt;br /&gt;      JNG* PNG       rw-   JPEG Network Graphics&lt;br /&gt;           See http://www.libpng.org/pub/mng/ for details about the JNG&lt;br /&gt;           format.&lt;br /&gt;      JP2* JP2       rw-   JPEG-2000 File Format Syntax&lt;br /&gt;      JPC* JPC       rw-   JPEG-2000 Code Stream Syntax&lt;br /&gt;     JPEG* JPEG      rw-   Joint Photographic Experts Group JFIF format (62)&lt;br /&gt;      JPG* JPEG      rw-   Joint Photographic Experts Group JFIF format&lt;br /&gt;      JPX* JPX       rw-   JPEG-2000 File Format Syntax&lt;br /&gt;        K* RAW       rw+   Raw black samples&lt;br /&gt;      K25  DNG       r--   Kodak Digital Camera Raw Image Format&lt;br /&gt;      KDC  DNG       r--   Kodak Digital Camera Raw Image Format&lt;br /&gt;    LABEL* LABEL     r--   Image label&lt;br /&gt;        M* RAW       rw+   Raw magenta samples&lt;br /&gt;      M2V  MPEG      rw+   MPEG Video Stream&lt;br /&gt;      MAP* MAP       rw-   Colormap intensities and indices&lt;br /&gt;      MAT* MAT       rw+   MATLAB image format&lt;br /&gt;    MATTE* MATTE     -w+   MATTE format&lt;br /&gt;     MIFF* MIFF      rw+   Magick Image File Format&lt;br /&gt;      MNG* PNG       rw+   Multiple-image Network Graphics (libpng 1.2.15beta5)&lt;br /&gt;           See http://www.libpng.org/pub/mng/ for details about the MNG&lt;br /&gt;           format.&lt;br /&gt;     MONO* MONO      rw-   Raw bi-level bitmap&lt;br /&gt;      MPC* MPC       rw+   Magick Persistent Cache image format&lt;br /&gt;     MPEG  MPEG      rw+   MPEG Video Stream&lt;br /&gt;      MPG  MPEG      rw+   MPEG Video Stream&lt;br /&gt;      MRW  DNG       r--   Sony (Minolta) Raw Image File&lt;br /&gt;      MSL* MSL       rw+   Magick Scripting Language&lt;br /&gt;     MSVG* SVG       rw+   ImageMagick's own SVG internal renderer&lt;br /&gt;      MTV* MTV       rw+   MTV Raytracing image format&lt;br /&gt;      MVG* MVG       rw-   Magick Vector Graphics&lt;br /&gt;      NEF  DNG       r--   Nikon Digital SLR Camera Raw Image File&lt;br /&gt;     NULL* NULL      rw-   Constant image of uniform color&lt;br /&gt;        O* RAW       rw+   Raw opacity samples&lt;br /&gt;      ORF  DNG       r--   Olympus Digital Camera Raw Image File&lt;br /&gt;      OTB* OTB       rw-   On-the-air bitmap&lt;br /&gt;      OTF* TTF       r--   Open Type font (Freetype 2.3.5)&lt;br /&gt;      PAL* UYVY      rw-   16bit/pixel interleaved YUV&lt;br /&gt;     PALM* PALM      rw+   Palm pixmap&lt;br /&gt;      PAM* PNM       rw+   Common 2-dimensional bitmap format&lt;br /&gt;  PATTERN* PATTERN   r--   Predefined pattern&lt;br /&gt;      PBM* PNM       rw+   Portable bitmap format (black and white)&lt;br /&gt;      PCD* PCD       rw-   Photo CD&lt;br /&gt;     PCDS* PCD       rw-   Photo CD&lt;br /&gt;      PCL  PCL       rw-   Printer Control Language&lt;br /&gt;      PCT* PICT      rw-   Apple Macintosh QuickDraw/PICT&lt;br /&gt;      PCX* PCX       rw-   ZSoft IBM PC Paintbrush&lt;br /&gt;      PDB* PDB       rw+   Palm Database ImageViewer Format&lt;br /&gt;      PDF  PDF       rw+   Portable Document Format&lt;br /&gt;      PEF  DNG       r--   Pentax Electronic File&lt;br /&gt;      PFA* TTF       r--   Postscript Type 1 font (ASCII) (Freetype 2.3.5)&lt;br /&gt;      PFB* TTF       r--   Postscript Type 1 font (binary) (Freetype 2.3.5)&lt;br /&gt;      PFM* PFM       rw+   Portable float format&lt;br /&gt;      PGM* PNM       rw+   Portable graymap format (gray scale)&lt;br /&gt;      PGX* PGX       r--   JPEG-2000 VM Format&lt;br /&gt;    PICON* XPM       rw-   Personal Icon&lt;br /&gt;     PICT* PICT      rw-   Apple Macintosh QuickDraw/PICT&lt;br /&gt;      PIX* PIX       r--   Alias/Wavefront RLE image format&lt;br /&gt;    PJPEG* JPEG      rw-   Progessive Joint Photographic Experts Group JFIF&lt;br /&gt;   PLASMA* PLASMA    r--   Plasma fractal image&lt;br /&gt;      PNG* PNG       rw-   Portable Network Graphics (libpng 1.2.15beta5)&lt;br /&gt;           See http://www.libpng.org/ for details about the PNG format.&lt;br /&gt;    PNG24* PNG       rw-   opaque 24-bit RGB (zlib 1.2.3)&lt;br /&gt;    PNG32* PNG       rw-   opaque or transparent 32-bit RGBA&lt;br /&gt;     PNG8* PNG       rw-   8-bit indexed with optional binary transparency&lt;br /&gt;      PNM* PNM       rw+   Portable anymap&lt;br /&gt;      PPM* PNM       rw+   Portable pixmap format (color)&lt;br /&gt;  PREVIEW* PREVIEW   -w-   Show a preview an image enhancement, effect, or f/x&lt;br /&gt;       PS  PS        rw+   PostScript&lt;br /&gt;      PS2* PS2       -w+   Level II PostScript&lt;br /&gt;      PS3* PS3       -w+   Level III PostScript&lt;br /&gt;      PSD* PSD       rw+   Adobe Photoshop bitmap&lt;br /&gt;     PTIF* TIFF      rw-   Pyramid encoded TIFF&lt;br /&gt;      PWP* PWP       r--   Seattle Film Works&lt;br /&gt;        R* RAW       rw+   Raw red samples&lt;br /&gt;      RAF  DNG       r--   Fuji CCD-RAW Graphic File&lt;br /&gt;      RAS* SUN       rw+   SUN Rasterfile&lt;br /&gt;      RGB* RGB       rw+   Raw red, green, and blue samples&lt;br /&gt;     RGBA* RGB       rw+   Raw red, green, blue, and alpha samples&lt;br /&gt;     RGBO* RGB       rw+   Raw red, green, blue, and opacity samples&lt;br /&gt;      RLA* RLA       r--   Alias/Wavefront image&lt;br /&gt;      RLE* RLE       r--   Utah Run length encoded image&lt;br /&gt;      SCR* SCR       r--   ZX-Spectrum SCREEN$&lt;br /&gt;      SCT* SCT       r--   Scitex HandShake&lt;br /&gt;      SFW* SFW       r--   Seattle Film Works&lt;br /&gt;      SGI* SGI       rw+   Irix RGB image&lt;br /&gt;    SHTML* HTML      -w-   Hypertext Markup Language and a client-side image map&lt;br /&gt;      SR2  DNG       r--   Sony Raw Format 2&lt;br /&gt;      SRF  DNG       r--   Sony Raw Format&lt;br /&gt;  STEGANO* STEGANO   r--   Steganographic image&lt;br /&gt;      SUN* SUN       rw+   SUN Rasterfile&lt;br /&gt;      SVG* SVG       rw+   Scalable Vector Graphics (XML 2.6.27)&lt;br /&gt;     SVGZ* SVG       rw+   Compressed Scalable Vector Graphics (XML 2.6.27)&lt;br /&gt;     TEXT* TXT       rw+   Text&lt;br /&gt;      TGA* TGA       rw+   Truevision Targa image&lt;br /&gt;THUMBNAIL* THUMBNAIL -w+   EXIF Profile Thumbnail&lt;br /&gt;     TIFF* TIFF      rw+   Tagged Image File Format (LIBTIFF, Version 3.8.2)&lt;br /&gt;   TIFF64* TIFF      ---   Tagged Image File Format (64-bit) (LIBTIFF, Version 3.8.2)&lt;br /&gt;     TILE* TILE      r--   Tile image with a texture&lt;br /&gt;      TIM* TIM       r--   PSX TIM&lt;br /&gt;      TTC* TTF       r--   TrueType font collection (Freetype 2.3.5)&lt;br /&gt;      TTF* TTF       r--   TrueType font (Freetype 2.3.5)&lt;br /&gt;      TXT* TXT       rw+   Text&lt;br /&gt;      UIL* UIL       -w-   X-Motif UIL table&lt;br /&gt;     UYVY* UYVY      rw-   16bit/pixel interleaved YUV&lt;br /&gt;      VDA* TGA       rw+   Truevision Targa image&lt;br /&gt;    VICAR* VICAR     rw-   VICAR rasterfile format&lt;br /&gt;      VID* VID       rw+   Visual Image Directory&lt;br /&gt;     VIFF* VIFF      rw+   Khoros Visualization image&lt;br /&gt;      VST* TGA       rw+   Truevision Targa image&lt;br /&gt;     WBMP* WBMP      rw-   Wireless Bitmap (level 0) image&lt;br /&gt;      WMF* WMF       ---   Windows Meta File&lt;br /&gt;      WMZ* WMZ       ---   Compressed Windows Meta File&lt;br /&gt;      WPG* WPG       r--   Word Perfect Graphics&lt;br /&gt;        X* X         rw+   X Image&lt;br /&gt;      X3F  DNG       r--   Sigma Camera RAW Picture File&lt;br /&gt;      XBM* XBM       rw-   X Windows system bitmap (black and white)&lt;br /&gt;       XC* XC        r--   Constant image uniform color&lt;br /&gt;      XCF* XCF       r--   GIMP image&lt;br /&gt;      XPM* XPM       rw-   X Windows system pixmap (color)&lt;br /&gt;      XPS  XPS       r--   Microsoft XML Paper Specification&lt;br /&gt;       XV* VIFF      rw+   Khoros Visualization image&lt;br /&gt;      XWD* XWD       rw-   X Windows system window dump (color)&lt;br /&gt;        Y* RAW       rw+   Raw yellow samples&lt;br /&gt;    YCbCr* YCbCr     rw+   Raw Y, Cb, and Cr samples&lt;br /&gt;   YCbCrA* YCbCr     rw+   Raw Y, Cb, Cr, and opacity samples&lt;br /&gt;      YUV* YUV       rw-   CCIR 601 4:1:1 or 4:2:2&lt;br /&gt;&lt;br /&gt;* native blob support&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If it shows the list of Formats, then congratulations !! you have configured ImageMagick correctly with RMagick.If you are getting an error "libmagick.so.10 Cannot open Shared Object File",means one of the library paths has not been configured correctly during the compilation.Run &lt;br /&gt;&lt;br /&gt;sudo ldconfig&lt;br /&gt;&lt;br /&gt;Before this make sure that you have /usr/local/lib in your /etc/ld.so.conf/libc6.conf file.&lt;br /&gt;After that do remove the previous installation and install again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-6726570670032332819?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/6726570670032332819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=6726570670032332819' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/6726570670032332819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/6726570670032332819'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/03/installing-rmagick-and-imagemagick-on.html' title='Installing RMagick and ImageMagick  on Linux'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-8262340349098326329</id><published>2008-03-10T04:13:00.000-07:00</published><updated>2008-03-13T03:13:01.864-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu/Debian'/><title type='text'>Gutsy Gibbon up and running</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_8j1QXOC-o8s/R9j-HhuE9GI/AAAAAAAAA1w/vc32UBmc3Uw/s1600-h/gutsy.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_8j1QXOC-o8s/R9j-HhuE9GI/AAAAAAAAA1w/vc32UBmc3Uw/s320/gutsy.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5177167176926557282" /&gt;&lt;/a&gt;&lt;br /&gt;I might be one of the last people to write a review to gutsy gibbon the Ubuntu 7.10.I had it running on my Compaq E733 AU laptop with AMD Athlon 64 bitX2,1 Gigs of Ram and 120 GB HDD and NVedia graphics card.Despite the good support of linux by the Nvedia hardware, I had a hard time bringing up the XServer. &lt;br /&gt;&lt;br /&gt;Well after popping in the live cd,it took some time to boot into the command line after 3 failed attempts to bring up the xserver.&lt;br /&gt;You will also be prompted to select a suitable monitor for your system, I tried 2-3 configurations and then selected 1024 option which worked fine.It added the following lines to the /etc/X11/xorg.conf file:&lt;br /&gt;&lt;br /&gt;Section "Monitor"&lt;br /&gt; Identifier "Failsafe Monitor"&lt;br /&gt; Vendorname "Compaq"&lt;br /&gt; Modelname "Compaq 1024"&lt;br /&gt;&lt;br /&gt;Then I did a restart of the gdm /etc/init.d/gdm restart,in order to restart the Gnome display manager.Once the Live CD is up, you can click on the install icon and follow the steps easily to install Ubuntu on your system.&lt;br /&gt;&lt;br /&gt;Now once we boot into our Ubuntu system for the first time after installtion, specially the HP/Compaq Laptops with Nvedia graphics cards, will get an option of installation of device drivers  that are restricted through the "Restricted Drivers Manager". This will automatically detect your Nvedia hardware and give an option of installing the propritory device drivers.This will make it download the drivers and installation.&lt;br /&gt;&lt;br /&gt;Once this is done you can enjoy all the 3D effects provided by the system.You can do a right click  and goto "Change Desktop Background".There  you get an option of "Visual Effects".You can activate the default Compiz Fusion by selecting "Extra" inside the visual effects.&lt;br /&gt;&lt;br /&gt;Gutsy comes with a default desktop search option and all the software is quite stable.It is fast and breathtaking.Gutsy is just what you need to Install for an great desktop experience with maximum ease.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-8262340349098326329?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/8262340349098326329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=8262340349098326329' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8262340349098326329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/8262340349098326329'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/03/gutsy-gibbon-up-and-running.html' title='Gutsy Gibbon up and running'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_8j1QXOC-o8s/R9j-HhuE9GI/AAAAAAAAA1w/vc32UBmc3Uw/s72-c/gutsy.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-1459893893821031670</id><published>2008-01-07T22:37:00.000-08:00</published><updated>2008-03-13T03:16:01.985-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Virtualization'/><title type='text'>VirtualBox</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_8j1QXOC-o8s/R4Mg01bplUI/AAAAAAAAAvM/PAJfI13v5Ws/s1600-h/fedoraonvb.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_8j1QXOC-o8s/R4Mg01bplUI/AAAAAAAAAvM/PAJfI13v5Ws/s400/fedoraonvb.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5152998490710316354" /&gt;&lt;/a&gt;&lt;br /&gt;Well,visualization seems to getting too much on my mind as I continuously look for a UI tool for Ubuntu.Previously I was using Xen for visualization in Ubuntu but was missing my VMware VM manager.Virtual Box(VB) by Innotek filled this gap by giving me a beautiful deb file for Feisty Fawn.This can be downloaded from &lt;a href="http://www.virtualbox.org/wiki/Downloads"&gt;Virtual Box Download&lt;/a&gt; and installed using the following command:&lt;br /&gt;&lt;br /&gt;sudo dpkg -i virtualbox_1.5.2-25433_Ubuntu_feisty_i386.deb&lt;br /&gt;&lt;br /&gt;and offf u go....The VM will be bundled up with your menu.However,there is a small catch.You need to be root to create a new VM on your machine.VB generally takes the user type while starting the VM.So start VB using the command:&lt;br /&gt;&lt;br /&gt;sudo VirtualBox&lt;br /&gt;&lt;br /&gt;This will start the machine with you as the root user.It follows a very simple creation of VM which any one can do,even simpler than VMware.&lt;br /&gt;&lt;br /&gt;I had fedora 8 running on my VB and have a screenshot here.It took my network settings automatically and had the internet was up and running instantly there.&lt;br /&gt;&lt;br /&gt;So its Fedora 8 on Ubuntu Feisty 7.04.Have fun with it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-1459893893821031670?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/1459893893821031670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=1459893893821031670' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1459893893821031670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1459893893821031670'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2008/01/virtualbox.html' title='VirtualBox'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_8j1QXOC-o8s/R4Mg01bplUI/AAAAAAAAAvM/PAJfI13v5Ws/s72-c/fedoraonvb.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-5185340059383989235</id><published>2007-12-18T22:33:00.000-08:00</published><updated>2008-03-13T03:15:36.978-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu/Debian'/><title type='text'>Debian Etch - Power + Reliability Simplified</title><content type='html'>Debian 4.0, the latest release of Debian Codenamed Etch is a cut above all the distros in many ways. Debian has always been known for reliability and robustness.Thanks to it's amazinly large relaease cycle (indirectly a huge testing cycle) followed by the Debian community.It is not a Joke to release a distro packed with 18,733 Packages which include mostly free packages and yet is the almost the most stable OS system on the earth.&lt;br /&gt;&lt;br /&gt;It now includes a GUI Installation which can be started by writing the command installgui on the starting prompt just after we pop in the Disk 1 of Installation.Mind you this OS has 3 installation DVDs and yet has very modest system requirements.You can easily bring your old hardware to life using this.I used an old Celeron laptop with 195 MB of RAM(thats what windows showed me) and 20 GB of Hard Disk and the guess what, the Graphical installation was an Oomph !! The speed was breathtaking, almost matched a P4 or a centrino processor and I can say the same thing for the post installation stuff.It was pretty comfortable to install and configure software on the system.Synaptic Package manager works as if you are talking to it,just order to install some software and it asks you to pop in the CD with the number,and its done.&lt;br /&gt;&lt;br /&gt;Once everything was done I was satisfied with the system speed and tried some database applications on it.I tried running MySQL server over it,but the everything was just fine.(I have faced a Lot of problem with Memory usage with SQL Server running on a machine).I never faced such problems here.&lt;br /&gt;&lt;br /&gt;We here deploy our production apps also in Debian and Never faced OS related isses.Debian Etch Rocks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-5185340059383989235?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/5185340059383989235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=5185340059383989235' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/5185340059383989235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/5185340059383989235'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2007/12/debian-etch-power-reliability.html' title='Debian Etch - Power + Reliability Simplified'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8989646463837915.post-1992322501292901053</id><published>2006-10-17T02:56:00.000-07:00</published><updated>2008-03-13T03:14:58.721-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Virtualization'/><title type='text'>Vmware : Carrying the virtualization Flag</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/1755/1097368953105/1600/1.1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/1755/1097368953105/400/1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For long people have been toying with concept of accessing one OS through another.There were several hands tried at it.This was primary to be helpful to the community who wanted linux to come up in a big way.The arguement was,if you had access to both windows and linux at the same time, you can directly compare the workability of both the OSs at the same time ,assess and decide what to do.People who are not willing to migrate from windows directly make give many reasons for it,some of them as silly as," i dont have a system to try out linux".For them virtualization gives a nice answer.&lt;br /&gt;&lt;br /&gt;Hence after we have some good reasons to have virtual machine  on our systems, we can install vmware on a windows machine and install linux over it.&lt;br /&gt;&lt;br /&gt;We will follow some simple steps to install vmware server running on linux, I used Red Hat Enterprise Linux 4 for it.&lt;br /&gt;&lt;br /&gt;1.Download the vmware server installer file from the link http://www.vmware.com/products/server/ which gives a free version of vmware server.&lt;br /&gt;&lt;br /&gt;2.Activate the product using free product keys.&lt;br /&gt;&lt;br /&gt;3.Once we are done with the installation of the vmware server console,we make connection the local host.&lt;br /&gt;&lt;br /&gt;4.Now, we select the option of creating an new virual machine,select a typical install,select the appropriate guest OS u want,here i am keeping it as linux.Next we select the flavour of linux we want.&lt;br /&gt;&lt;br /&gt;5.Now, we name the machine and set its path in the directory where we have allocated the space for the virtual machines.&lt;br /&gt;&lt;br /&gt;In my system i had kept a dedicated partition for the VMs(Virtual Machines) and that is advisable because, if you create the virtual machines using the default path they will get created in the program files of the C: drive.For our conveniece we should keep it separate.&lt;br /&gt;&lt;br /&gt;6.Next allocate it space on your hard disk.I gave 8GB and divided it into 2 parts of 2GB each.&lt;br /&gt;&lt;br /&gt;7.Now finish this by clicking on finish and we have parameters all set make a new virtual machine.&lt;br /&gt;&lt;br /&gt;Now we connect the cd drive to vmware console and iso image depending upon the availability.We do the linux installation as we do normally and there we have a virtual machine up and running.This machine will have a different ip address also.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8989646463837915-1992322501292901053?l=mytrystwithlife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mytrystwithlife.blogspot.com/feeds/1992322501292901053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8989646463837915&amp;postID=1992322501292901053' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1992322501292901053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8989646463837915/posts/default/1992322501292901053'/><link rel='alternate' type='text/html' href='http://mytrystwithlife.blogspot.com/2006/10/vmware-carrying-virtualization-flag.html' title='Vmware : Carrying the virtualization Flag'/><author><name>Saurabh Bhatia</name><uri>http://www.blogger.com/profile/11349043798928243759</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp1.blogger.com/_8j1QXOC-o8s/R9kELhuE9JI/AAAAAAAAA2A/C7mdoohAEy0/S220/1.jpg'/></author><thr:total>1</thr:total></entry></feed>
