<?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>Amer Jazaerly. &#187; linux</title>
	<atom:link href="http://amerj.info/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://amerj.info</link>
	<description>Just another weblog!</description>
	<lastBuildDate>Thu, 28 Jan 2010 15:17:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Howto install rails 2.3 and ruby 1.9 on ubuntu for mysql and sqlite3</title>
		<link>http://amerj.info/2009/03/19/howto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3/</link>
		<comments>http://amerj.info/2009/03/19/howto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:46:58 +0000</pubDate>
		<dc:creator>Amer</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby1.9]]></category>
		<category><![CDATA[sqlite3]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://amerj.info/?p=58</guid>
		<description><![CDATA[Prerequisite As a prerequisite you will need to install the following packages,these packages are build tools and libraries you will need for compilation process. sudo apt-get -y install libc6-dev libssl-dev libmysql++-dev libsqlite3-dev make build-essential libssl-dev libreadline5-dev zlib1g-dev Installing Ruby 1.9.1 cd ~ mkdir src cd src/ wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.gz tar xzvf ruby-1.9.1-p0.tar.gz cd ruby-1.9.1-p0/ wget http://redmine.ruby-lang.org/attachments/download/237 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Prerequisite</strong><br />
As a prerequisite you will need to install the following packages,these packages are build tools and libraries you will need for compilation process.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #660033;">-y</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libc6-dev libssl-dev libmysql++-dev libsqlite3-dev <span style="color: #c20cb9; font-weight: bold;">make</span> build-essential libssl-dev libreadline5-dev zlib1g-dev</pre></div></div>

<p><strong>Installing Ruby 1.9.1 </strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> src
<span style="color: #7a0874; font-weight: bold;">cd</span> src<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>ftp.ruby-lang.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1.9</span><span style="color: #000000; font-weight: bold;">/</span>ruby-1.9.1-p0.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> xzvf ruby-1.9.1-p0.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> ruby-1.9.1-p0<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>redmine.ruby-lang.org<span style="color: #000000; font-weight: bold;">/</span>attachments<span style="color: #000000; font-weight: bold;">/</span>download<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">237</span>
<span style="color: #c20cb9; font-weight: bold;">patch</span> <span style="color: #660033;">-p1</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">237</span>
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span> <span style="color: #660033;">--with-openssl-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr <span style="color: #660033;">--with-readline-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr <span style="color: #660033;">--with-zlib-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>To make sure form your ruby version use the following command line.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ruby <span style="color: #660033;">-v</span></pre></div></div>

<p>The output should be something like this</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ruby 1.9.1p0 <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2009</span>-01-<span style="color: #000000;">30</span> revision <span style="color: #000000;">21907</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>i686-linux<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>If this command only returns &#8220;Happy new Ruby&#8221; please feel comfortable, <em>your instllation is going fine.</em></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ruby <span style="color: #660033;">-ropenssl</span> <span style="color: #660033;">-rzlib</span> <span style="color: #660033;">-rreadline</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;puts 'Happy new Ruby'&quot;</span></pre></div></div>

<p><em>Ruby 1.9 bundles rubygems so there is no need to install it.</em></p>
<p><strong>Installing mysql-ruby adaptor</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>src
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>rubyforge.org<span style="color: #000000; font-weight: bold;">/</span>frs<span style="color: #000000; font-weight: bold;">/</span>download.php<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">51087</span><span style="color: #000000; font-weight: bold;">/</span>mysql-ruby-2.8.1.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> xzvf mysql-ruby-2.8.1.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> mysql-ruby-2.8.1
<span style="color: #c20cb9; font-weight: bold;">sudo</span> ruby extconf.rb
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p><strong>Installing rails and other stuff</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> rails rake rack sqlite3-ruby</pre></div></div>

<p>To make sure that all packages are successfully installed use the following command line</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gem list</pre></div></div>

<p>The output should be something like this</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">actionmailer <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
actionpack <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
activerecord <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
activeresource <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
activesupport <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
rack <span style="color: #7a0874; font-weight: bold;">&#40;</span>0.9.1<span style="color: #7a0874; font-weight: bold;">&#41;</span>
rails <span style="color: #7a0874; font-weight: bold;">&#40;</span>2.3.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>
rake <span style="color: #7a0874; font-weight: bold;">&#40;</span>0.8.4<span style="color: #7a0874; font-weight: bold;">&#41;</span>
sqlite3-ruby <span style="color: #7a0874; font-weight: bold;">&#40;</span>1.2.4<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Now you can create and run a new rails application working on ruby 1.9 &#8220;.</p>
<p>For mysql database</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rails yourapp <span style="color: #660033;">--database</span>=mysql</pre></div></div>

<p>For sqlite3</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rails yourapp</pre></div></div>

<div id="attachment_54" class="wp-caption aligncenter" style="width: 310px"><img src="http://amerj.info/wp-content/uploads/2009/03/screenshot2-300x237.png" alt="rubyonrails 2.3" title="rails" width="300" height="237" class="size-medium wp-image-54" /><p class="wp-caption-text">rubyonrails 2.3</p></div>
<p><strong><em>With best wishes for fast performance.</em></strong></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d58').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d58" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3&amp;Description=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3&amp;Url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;submitHeadline=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3&amp;url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;h=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;t=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;t=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;bm_description=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;T=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;h=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;name=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Famerj.info%2F2009%2F03%2F19%2Fhowto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3%2F&amp;t=Howto+install+rails+2.3+and+ruby+1.9+on+ubuntu+for+mysql+and+sqlite3" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d58').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d58').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://amerj.info/2009/03/19/howto-install-rails-23-and-ruby-19-on-ubuntu-for-mysql-and-sqlite3/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Colorize your Bash prompt</title>
		<link>http://amerj.info/2009/01/20/colorize-your-bash-prompt/</link>
		<comments>http://amerj.info/2009/01/20/colorize-your-bash-prompt/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 10:47:56 +0000</pubDate>
		<dc:creator>Amer</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://amerj.info/?p=25</guid>
		<description><![CDATA[echo 'if [ -f /etc/bash_colorize_prompt ]; then' &#62;&#62; &#34;$HOME/.bashrc&#34; echo ' . /etc/bash_colorize_prompt' &#62;&#62; &#34;$HOME/.bashrc&#34; echo 'fi' &#62;&#62; &#34;$HOME/.bashrc&#34; then sudo su and &#62; /etc/bash_colorize_prompt echo &#34;## Colors&#34; &#62;&#62; /etc/bash_colorize_prompt echo 'LFRED=&#34;[\033[01;31m]&#34; # foreground light red' &#62;&#62; /etc/bash_colorize_prompt echo 'RS=&#34;[\033[0m]&#34; # reset' &#62;&#62; /etc/bash_colorize_prompt echo 'FYEL=&#34;[\033[33m]&#34; # foreground yellow' &#62;&#62; /etc/bash_colorize_prompt echo 'LFGRN=&#34;[\033[01;32m]&#34; # foreground [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://amerj.info/wp-content/uploads/2009/01/screenshot5.png" alt="colored_bash_prompt" title="colored_bash_prompt" width="250" height="73" class="aligncenter size-full wp-image-33" /></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'if [ -f /etc/bash_colorize_prompt ]; then'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/.bashrc&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'     . /etc/bash_colorize_prompt'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/.bashrc&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'fi'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/.bashrc&quot;</span></pre></div></div>

<p>then</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">su</span></pre></div></div>

<p>and</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;## Colors&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'LFRED=&quot;[\033[01;31m]&quot; # foreground light red'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'RS=&quot;[\033[0m]&quot;    	# reset'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'FYEL=&quot;[\033[33m]&quot; 	# foreground yellow'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'LFGRN=&quot;[\033[01;32m]&quot; # foreground light green'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'FBLE=&quot;[\033[34m]&quot; # foreground blue'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'if [ &quot;$USER&quot; = &quot;root&quot; ]; then'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'        PS1=&quot;${LFRED}u${RS}@${FYEL}h${RS}:${FBLE}w${RS}# &quot;'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'else'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'        PS1=&quot;${LFGRN}u${RS}@${FYEL}h${RS}:${FBLE}w${RS}$ &quot;'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'fi'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>bash_colorize_prompt
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'if [ -f /etc/bash_colorize_prompt ]; then'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;/root/.bashrc&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'     . /etc/bash_colorize_prompt'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;/root/.bashrc&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'fi'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #ff0000;">&quot;/root/.bashrc&quot;</span></pre></div></div>

<p>Now the last step</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">source</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bashrc</pre></div></div>

<p>Congratulations.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d25').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d25" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Colorize+your+Bash+prompt&amp;Description=Colorize+your+Bash+prompt&amp;Url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;submitHeadline=Colorize+your+Bash+prompt&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Colorize+your+Bash+prompt&amp;url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;h=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;t=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;t=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;bm_description=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;T=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;h=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;name=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Famerj.info%2F2009%2F01%2F20%2Fcolorize-your-bash-prompt%2F&amp;t=Colorize+your+Bash+prompt" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d25').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d25').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://amerj.info/2009/01/20/colorize-your-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 no sound after resume suspend/hibernate problem</title>
		<link>http://amerj.info/2008/12/13/ubuntu-810-no-sound-after-resume-suspendhibernate-problem/</link>
		<comments>http://amerj.info/2008/12/13/ubuntu-810-no-sound-after-resume-suspendhibernate-problem/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 00:54:00 +0000</pubDate>
		<dc:creator>Amer</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://amerj.info/?p=3</guid>
		<description><![CDATA[This problem made me afraid to click-on suspend button for along time, and I tried my best to keep the mouse arrow away from that button, but finally I had a free time to do some troubleshooting, Now to get rid from this problem you can execute the next lines in your terminal 1 2 [...]]]></description>
			<content:encoded><![CDATA[<p>This problem made me afraid to click-on suspend button for along time, and I tried my best to keep the mouse arrow away from that button, but finally I had a free time to do some troubleshooting,<br />
Now to get rid from this problem you can execute the next lines in your terminal</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">pkill <span style="color: #660033;">-9</span> pulseaudio
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>pulseaudio <span style="color: #660033;">-D</span> <span style="color: #660033;">--log-target</span>=syslog
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">su</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;pkill -9 pulseaudio&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>acpi<span style="color: #000000; font-weight: bold;">/</span>resume.d<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">99</span>-restart-pulseaudio.sh
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;/usr/bin/pulseaudio -D --log-target=syslog&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>acpi<span style="color: #000000; font-weight: bold;">/</span>resume.d<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">99</span>-restart-pulseaudio.sh
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">755</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>acpi<span style="color: #000000; font-weight: bold;">/</span>resume.d<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">99</span>-restart-pulseaudio.sh
<span style="color: #c20cb9; font-weight: bold;">chown</span> root <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>acpi<span style="color: #000000; font-weight: bold;">/</span>resume.d<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">99</span>-restart-pulseaudio.sh</pre></td></tr></table></div>

<p>Enjoy.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d3').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d3" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem&amp;Description=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem&amp;Url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;submitHeadline=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem&amp;url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;h=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;t=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;t=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;bm_description=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;T=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;h=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;name=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Famerj.info%2F2008%2F12%2F13%2Fubuntu-810-no-sound-after-resume-suspendhibernate-problem%2F&amp;t=Ubuntu+8.10+no+sound+after+resume+suspend%2Fhibernate+problem" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://amerj.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d3').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d3').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://amerj.info/2008/12/13/ubuntu-810-no-sound-after-resume-suspendhibernate-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
