<?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>Mohamed Aslam &#187; Tutorials</title>
	<atom:link href="http://mohamedaslam.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://mohamedaslam.com</link>
	<description>Freelance Web Developer, Rubyist, Visual Designer and Blogger based on Kandy, Sri Lanka.</description>
	<lastBuildDate>Sun, 02 Jan 2011 18:12:33 +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>How to uninstall / remove Ruby Gems (on Ubuntu)?</title>
		<link>http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/</link>
		<comments>http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:44:34 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Gem]]></category>

		<guid isPermaLink="false">http://mohamedaslam.com/?p=187</guid>
		<description><![CDATA[First we need to find out the exact location that the Ruby installs it&#8217;s libraries. In the terminal program, You can type the following command to find out the exact location. ruby -e 'puts $:' You&#8217;ll get list of paths. This is the output that I got in my machine. /usr/local/lib/site_ruby/1.8 /usr/local/lib/site_ruby/1.8/i486-linux /usr/local/lib/site_ruby/1.8/i386-linux /usr/local/lib/site_ruby /usr/lib/ruby/vendor_ruby/1.8 [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/uninstall_ruby_gems.png" alt="Uninstall Ruby Gems" title="Uninstall Ruby Gems" width="258" height="159" class="size-full wp-image-140  post-thumb" /></p>
<p>First we need to find out the exact location that the Ruby installs it&#8217;s libraries. In the terminal program, You can type the following command to find out the exact location.</p>
<div class="clear"></div>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ruby -e 'puts $:'</div></div>
<p><span id="more-187"></span></p>
<p>You&#8217;ll get list of paths. This is the output that I got in my machine.</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/usr/local/lib/site_ruby/1.8<br />
/usr/local/lib/site_ruby/1.8/i486-linux<br />
/usr/local/lib/site_ruby/1.8/i386-linux<br />
/usr/local/lib/site_ruby<br />
/usr/lib/ruby/vendor_ruby/1.8<br />
/usr/lib/ruby/vendor_ruby/1.8/i486-linux<br />
/usr/lib/ruby/vendor_ruby<br />
/usr/lib/ruby/1.8<br />
/usr/lib/ruby/1.8/i486-linux<br />
/usr/lib/ruby/1.8/i386-linux<br />
.</div></div>
<p>Next we need to change our directory in to /usr/local/lib/site_ruby/1.8 and type following command to list the files.</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ls -la</div></div>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">drwxr-xr-x 5 root root &nbsp; 4096 2009-07-15 12:15 .<br />
drwxr-xr-x 3 root root &nbsp; 4096 2009-07-15 12:14 ..<br />
-rw-r--r-- 1 root root &nbsp; 1415 2009-07-15 12:15 gauntlet_rubygems.rb<br />
drwxrwsr-x 2 root staff &nbsp;4096 2009-07-15 12:14 i486-linux<br />
drwxr-xr-x 2 root root &nbsp; 4096 2009-07-15 12:15 rbconfig<br />
drwxr-xr-x 6 root root &nbsp; 4096 2009-07-15 12:15 rubygems<br />
-rw-r--r-- 1 root root &nbsp;29116 2009-07-15 12:15 rubygems.rb<br />
-rw-r--r-- 1 root root &nbsp; &nbsp;268 2009-07-15 12:15 ubygems.rb</div></div>
<p>Now we are ready to remove the gems. Type,</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">rm -r rubygems.rb ubygems.rb rubygems</div></div>
<p>If you wish to remove all gems installed in your computer, first find out the location by executing following commands</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;which gem gem1.8</div></div>
<p>Next you can remove them by using following commands. That&#8217;s it!</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">rm -r /usr/local/bin/gem<br />
rm -r /usr/bin/gem1.8</div></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;bmtitle=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;Title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;Title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;n=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;d=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-comfeed">
			<a href="http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;desc=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;description=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;desc=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;link=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;type=Article&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=Link: http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;srcUrl=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;srcTitle=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;snippet=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=Link: http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;text=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl+-+http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&quot;+-+from+http://tinyurl.com/n5ay7b" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;summary=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl&amp;source=Mohamed Aslam" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20uninstall%20%2F%20remove%20Ruby%20Gems%20%28on%20Ubuntu%29%3F%22&amp;body=Link: http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;u_data[name]=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;bm_description=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;n=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;h=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;T=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;u=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;b=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;du=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;cn=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F+-+http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;selection=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;format=microclip&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/+&quot;How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/ %0D%0A%0D%0A %0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmohamedaslam.com%2Fhow-to-uninstall-remove-ruby-gems%2F&amp;t=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F+-+http://tinyurl.com/n5ay7b&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;url=http%3A%2F%2Fmohamedaslam.com%2Fhow-to-uninstall-remove-ruby-gems%2F&amp;desc=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;title=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;submitHeadline=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;submitSummary=%0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F&amp;body=Link: http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFirst%20we%20need%20to%20find%20out%20the%20exact%20location%20that%20the%20Ruby%20installs%20it%27s%20libraries.%20In%20the%20terminal%20program%2C%20You%20can%20type%20the%20following%20command%20to%20find%20out%20the%20exact%20location.%0D%0A%0D%0A%0D%0A%0D%0Aruby%20-e%20%27puts%20%24%3A%27%0D%0A%0D%0A%0D%0A%0D%0AYou%27ll%20get%20list%20of%20paths.%20This%20is%20the%20output%20that%20I%20got%20in%20my%20machine.%0D%0A%0D%0A%0D%0A%2Fusr%2Flocal%2Fl" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/&amp;lname=How+to+uninstall+%2F+remove+Ruby+Gems+%28on+Ubuntu%29%3F" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<h3  class="related_post_title">Related Articles </h3><ul class="related_post"><li><a href="http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" title="Screencast: How to Install Ruby on Rails on Ubuntu?">Screencast: How to Install Ruby on Rails on Ubuntu?</a></li><li><a href="http://mohamedaslam.com/install-ruby-on-rails-on-ubuntu-904-jaunty-jacklope/" title="How to Install Ruby on Rails on Ubuntu 9.04 (Jaunty Jackalope)">How to Install Ruby on Rails on Ubuntu 9.04 (Jaunty Jackalope)</a></li><li><a href="http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" title="How to setup PHP for IIS 7 server on Vista?">How to setup PHP for IIS 7 server on Vista?</a></li><li><a href="http://mohamedaslam.com/how-to-fix-apache-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127011-for-servername-error-on-ubuntu/" title="How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu ">How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Screencast: How to Install Ruby on Rails on Ubuntu?</title>
		<link>http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/</link>
		<comments>http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:08:48 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Screencast]]></category>

		<guid isPermaLink="false">http://mohamedaslam.com/?p=170</guid>
		<description><![CDATA[This screencast will teach you to set up the Ruby on Rails development environment on Ubuntu. Don&#8217;t forget to toggle the full screen button on the player. Add this to 100 bookmarks Share this on Bebo Submit this to Bitacoras Share this on Blinklist Engage with this article! Blog this on Blogger Mark this on [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/sc_ubuntu_ror.gif" alt="Screencast: How to Install Ruby on Rails on Ubuntu?" title="sc_ubuntu_ror" width="258" height="159" class="alignleft size-full wp-image-171 post-thumb" /></p>
<p>This screencast will teach you to set up the Ruby on Rails development environment on Ubuntu.</p>
<p><span id="more-170"></span></p>
<div class="clear"></div>
<p><object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2279213&#038;feedurl=http%3A//mohamedaslam.blip.tv/rss/&#038;autostart=false&#038;brandname=mohamedaslam&#038;brandlink=http%3A//mohamedaslam.blip.tv/" width="550" height="448" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2279213&#038;feedurl=http%3A//mohamedaslam.blip.tv/rss/&#038;autostart=false&#038;brandname=mohamedaslam&#038;brandlink=http%3A//mohamedaslam.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Don&#8217;t forget to toggle the full screen button on the player.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;bmtitle=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;Title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;Title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;n=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;d=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-comfeed">
			<a href="http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;desc=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;description=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;desc=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;link=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;type=Article&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=Link: http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;srcUrl=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;srcTitle=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;snippet=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=Link: http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;text=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player.+-+http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&quot;+-+from+http://tinyurl.com/kmlzre" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;summary=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player.&amp;source=Mohamed Aslam" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Screencast%3A%20How%20to%20Install%20Ruby%20on%20Rails%20on%20Ubuntu%3F%22&amp;body=Link: http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;u_data[name]=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;bm_description=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;n=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;h=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;T=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;u=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;b=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;du=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;cn=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F+-+http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;selection=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player.&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;format=microclip&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/+&quot;Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/ %0D%0A%0D%0A %0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmohamedaslam.com%2Fscreencast-how-to-install-ruby-on-rails-on-ubuntu%2F&amp;t=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F+-+http://tinyurl.com/kmlzre&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;url=http%3A%2F%2Fmohamedaslam.com%2Fscreencast-how-to-install-ruby-on-rails-on-ubuntu%2F&amp;desc=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player.&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;title=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;submitHeadline=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;submitSummary=%0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player.&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F&amp;body=Link: http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AThis%20screencast%20will%20teach%20you%20to%20set%20up%20the%20Ruby%20on%20Rails%20development%20environment%20on%20Ubuntu.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADon%27t%20forget%20to%20toggle%20the%20full%20screen%20button%20on%20the%20player." rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/&amp;lname=Screencast%3A+How+to+Install+Ruby+on+Rails+on+Ubuntu%3F" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<h3  class="related_post_title">Related Articles </h3><ul class="related_post"><li><a href="http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" title="How to uninstall / remove Ruby Gems (on Ubuntu)?">How to uninstall / remove Ruby Gems (on Ubuntu)?</a></li><li><a href="http://mohamedaslam.com/how-to-fix-apache-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127011-for-servername-error-on-ubuntu/" title="How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu ">How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu </a></li><li><a href="http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" title="How to setup PHP for IIS 7 server on Vista?">How to setup PHP for IIS 7 server on Vista?</a></li><li><a href="http://mohamedaslam.com/install-ruby-on-rails-on-ubuntu-904-jaunty-jacklope/" title="How to Install Ruby on Rails on Ubuntu 9.04 (Jaunty Jackalope)">How to Install Ruby on Rails on Ubuntu 9.04 (Jaunty Jackalope)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>How to setup PHP for IIS 7 server on Vista?</title>
		<link>http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/</link>
		<comments>http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/#comments</comments>
		<pubDate>Fri, 22 May 2009 19:43:34 +0000</pubDate>
		<dc:creator>Aslam</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[IIS7]]></category>

		<guid isPermaLink="false">http://mohamedaslam.com/?p=147</guid>
		<description><![CDATA[Are you a .NET developer? Looking forward to learn or switch to PHP (which is quit impossible. May be I&#8217;m dreaming&#8230;! . However if you are, you are mostly welcome to the word of light..! I mean LAMP) You can setup PHP in IIS server. I&#8217;ll walk you through step by step. So, are you [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/php-iis.jpg" alt="php-iis" title="php-iis" width="258" height="159" class="alignleft size-full wp-image-163 post-thumb" /></p>
<p>Are you a .NET developer? Looking forward to learn or switch to PHP (which is quit impossible. May be I&#8217;m dreaming&#8230;! <img src='http://mohamedaslam.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . However if you are,  you are mostly welcome to the word of light..! I mean LAMP) You can setup PHP in IIS server. I&#8217;ll walk you through step by step. So, are you ready for the journey..? Let&#8217;s go.. </p>
<p>I’m writing this tutorial to understand even by a newbie. So bare with me for some very basics stuffs.</p>
<p><span id="more-147"></span></p>
<p>First of all you need to install PHP to your computer. You can download PHP at </p>
<p><a href="http://www.php.net/downloads.php">http://www.php.net/downloads.php</a> </p>
<p>PHP installation is pretty straight forward. I believe you can manage it.</p>
<p>Next you need to ensure whether the IIS server installed in your computer. Regular windows installation won’t install IIS server. So, to test whether it is there or not, right click on My Computer icon and select Manage. Then expand the Services and Application node. </p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp1.png" alt="iisphp1" title="iisphp1" width="411" height="344"  /></p>
<p>If you don’t see Internet information Service, that means that you should install IIS server manually. It’s pretty simple.</p>
<p>Go to Control Panel and select Classic View in the left pane. Then double click on the Programs and Features icon. Now you’ll have a list of option in your right pane. Select Turn Windows features on or off.</p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp2.png" alt="iisphp2" title="iisphp2" width="565" height="287" /></p>
<p>Click the Internet Information Server check box and expand the node. </p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp3.png" alt="iisphp3" title="iisphp3" width="539" height="440" /></p>
<p>Again expand the World Wide Web Services , Application Development Features and click the ISAPI Extensions. Then click OK. It will take several minutes to installation.</p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp4.png" alt="iisphp4" title="iisphp4" width="439" height="386" /></p>
<p>Now you can check whether the server working properly. Open up your internet browser and type http://localhost/ . You’ll get a page as follows</p>
<p><a href="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp5.png" rel="prettyPhoto" title="How to setup PHP for IIS 7 server on Vista?"><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp5-300x247.png" alt="iisphp5" title="iisphp5" width="300" height="247" /></a></p>
<p>Now you need to configure the server for PHP. Go to the Computer Management window again (Right click on My Computer and select Manage) and expand the Services and Applications node and click the Internet Information Services link. Then in the connection area select Default Web Site. </p>
<p><a href="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp6.png" rel="prettyPhoto" title="How to setup PHP for IIS 7 server on Vista?"><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp6-300x218.png" alt="iisphp6" title="iisphp6" width="300" height="218"  /></a></p>
<p>Click on Handler Mappings.</p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp7.png" alt="iisphp7" title="iisphp7" width="535" height="363" /></p>
<p>On the right side of the window, click on &#8220;Add Script Map&#8230;&#8221;  </p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp8.png" alt="iisphp8" title="iisphp8" width="418" height="284" /></p>
<p>Once you clicked a pop up window will appear. Fill up the fields with following values.</p>
<p><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp9.png" alt="iisphp9" title="iisphp9" width="488" height="402" /></p>
<p>Click OK. Then a Dialog box will appear. Say Yes! to that. Thats it!</p>
<p>Now you need to check whether the server working with PHP. Open up your favorite text editor and type</p>
<div class="codecolorer-container php vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/phpinfo"><span style="color: #990000;">phpinfo</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>Save the file as phpinfo.php under “C:\inetpub\wwwroot”.</p>
<p>Then open up your browser and navigate to http://localhost/phpinfo.php<br />
If you get following page.., you are done..!</p>
<p><a href="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp10.png" rel="prettyPhoto" title="How to setup PHP for IIS 7 server on Vista?"><img src="http://mohamedaslam.com/wp-content/uploads/2009/06/iisphp10-300x277.png" alt="PHP info page" title="iisphp10" width="300" height="277" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;bmtitle=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;Title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;Title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;n=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;d=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-comfeed">
			<a href="http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;desc=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;description=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;desc=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;link=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;type=Article&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=Link: http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;srcUrl=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;srcTitle=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;snippet=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=Link: http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;text=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t+-+http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&quot;+-+from+http://tinyurl.com/lhywb8" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;summary=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t&amp;source=Mohamed Aslam" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20setup%20PHP%20for%20IIS%207%20server%20on%20Vista%3F%22&amp;body=Link: http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;u_data[name]=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;bm_description=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;n=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;h=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;T=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;u=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;b=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;du=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;cn=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F+-+http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;selection=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;format=microclip&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/+&quot;How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/ %0D%0A%0D%0A %0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmohamedaslam.com%2Fhow-to-setup-php-for-iis-7-server-on-vista%2F&amp;t=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F+-+http://tinyurl.com/lhywb8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;url=http%3A%2F%2Fmohamedaslam.com%2Fhow-to-setup-php-for-iis-7-server-on-vista%2F&amp;desc=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;title=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;submitHeadline=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;submitSummary=%0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F&amp;body=Link: http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AAre%20you%20a%20.NET%20developer%3F%20Looking%20forward%20to%20learn%20or%20switch%20to%20PHP%20%28which%20is%20quit%20impossible.%20May%20be%20I%27m%20dreaming...%21%20%3AD.%20However%20if%20you%20are%2C%20%20you%20are%20mostly%20welcome%20to%20the%20word%20of%20light..%21%20I%20mean%20LAMP%29%20You%20can%20setup%20PHP%20in%20IIS%20server.%20I%27ll%20walk%20you%20through%20step%20by%20step.%20So%2C%20are%20you%20ready%20for%20t" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/&amp;lname=How+to+setup+PHP+for+IIS+7+server+on+Vista%3F" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<h3  class="related_post_title">Related Articles </h3><ul class="related_post"><li><a href="http://mohamedaslam.com/how-to-uninstall-remove-ruby-gems/" title="How to uninstall / remove Ruby Gems (on Ubuntu)?">How to uninstall / remove Ruby Gems (on Ubuntu)?</a></li><li><a href="http://mohamedaslam.com/screencast-how-to-install-ruby-on-rails-on-ubuntu/" title="Screencast: How to Install Ruby on Rails on Ubuntu?">Screencast: How to Install Ruby on Rails on Ubuntu?</a></li><li><a href="http://mohamedaslam.com/how-to-fix-apache-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127011-for-servername-error-on-ubuntu/" title="How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu ">How to fix Apache &#8211; &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; Error on Ubuntu </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://mohamedaslam.com/how-to-setup-php-for-iis-7-server-on-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

