<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>new2ubuntu</title>
	<atom:link href="http://new2ubuntu.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://new2ubuntu.wordpress.com</link>
	<description>A blog dedicated to the exploration of Ubuntu</description>
	<lastBuildDate>Wed, 21 Jul 2010 02:42:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='new2ubuntu.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>new2ubuntu</title>
		<link>http://new2ubuntu.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://new2ubuntu.wordpress.com/osd.xml" title="new2ubuntu" />
	<atom:link rel='hub' href='http://new2ubuntu.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Recieve Notifications When Your Server Finishes Booting Up [HOWTO]</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/23/how-to-recieve-notifications-when-your-server-finishes-booting-up-howto/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/23/how-to-recieve-notifications-when-your-server-finishes-booting-up-howto/#comments</comments>
		<pubDate>Sun, 23 May 2010 07:26:32 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Notify OSD]]></category>
		<category><![CDATA[rc.local]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=181</guid>
		<description><![CDATA[One of the more annoying things about performing maintenance on a server through ssh is finding out when the server is up again after a reboot. I&#8217;m constantly trying to log into the server over ssh and checking to see if it&#8217;s up. Here&#8217;s a novel idea, why don&#8217;t I figure out how to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=181&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the more annoying things about performing maintenance on a server through ssh is finding out when the server is up again after a reboot.  I&#8217;m constantly trying to log into the server over ssh and checking to see if it&#8217;s up.  Here&#8217;s a novel idea, why don&#8217;t I figure out how to get the server to notify me when it&#8217;s up!  While reading about <a href="http://ubuntuforums.org/showthread.php?t=708834">make server beep after bootup</a> and <a href="http://www.webupd8.org/2010/05/finally-easy-way-to-customize-notify.html">customizing Notify OSD notification</a>, I got the idea to have the server send me an OSD notification using the rc.local script.</p>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/server_is_up.png"><img class="alignnone size-full wp-image-188" title="SERVER_IS_UP" src="http://new2ubuntu.files.wordpress.com/2010/05/server_is_up.png?w=409&#038;h=189" alt="" width="409" height="189" /></a></p>
<p>Notify OSD notifications are the small bubbles that popup in the upper right hand corner of the Ubuntu screen, just underneath the panel noticiations area.  The most common OSD notification is probably the network connection notification as seen in the screenshot below.</p>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/auto_eth0.png"><img class="alignnone size-full wp-image-187" title="AUTO_ETH0" src="http://new2ubuntu.files.wordpress.com/2010/05/auto_eth0.png?w=404&#038;h=188" alt="" width="404" height="188" /></a></p>
<p>rc.local is a file that the server runs once the server is fully booted.</p>
<p>The method to which the server notifies the desktop client is as follows:</p>
<ul>
<li>Server reboots.</li>
<li>Server runs rc.local once it finishes booting.</li>
<li>The rc.local <a href="http://ubuntuforums.org/showthread.php?t=1240828">sends an OSD notification through SSH</a> telling that the server is up and running.</li>
</ul>
<h1>How to Setup Server Up Notifications</h1>
<h2>Nomenclature:</h2>
<ul>
<li>Server &#8211; the server machine that reboots and sends to the OSD notificaton.</li>
<li>Client &#8211; the desktop machine that receives the OSD notificaton.</li>
<li>&lt;client_user_name&gt; &#8211; the username of the client computer that recieves the OSD notifications.</li>
<li>&lt;server_user_name&gt; &#8211; the username of the server computer.</li>
<li>&lt;client_computer_name&gt; &#8211; the name of the client computer.</li>
<li>&lt;server_computer_name&gt; &#8211; the name of the server computer.</li>
<li>&lt;domain_name&gt; &#8211; the name of the network domain.</li>
</ul>
<h2>Client Setup</h2>
<h2><span style="font-weight:normal;font-size:13px;">I&#8217;m using Ubuntu Lucid 10.04 as my desktop OS.</span></h2>
<h3>1.  Install OpenSSH server.</h3>
<pre>sudo apt-get -y --force-yes install openssh-server</pre>
<h2>Server Setup</h2>
<p>I&#8217;m using Ubuntu Server Karmic 9.10 as my server OS.</p>
<h3>1.  Install Notify OSD.</h3>
<pre>sudo apt-get -y --force-yes install notify-osd</pre>
<h3>2.  Test to see if the client will recieve the OSD notification.</h3>
<pre>ssh -X &lt;client_user_name&gt;@&lt;client_computer_name&gt;.&lt;domain_name&gt; 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"'</pre>
<p>Example:</p>
<pre>voltron43@server: ~$ ssh -X voltron43@voltron43-laptop.local 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"'</pre>
<p>where</p>
<ul>
<li>&#8220;Server is up&#8221; is the notification message</li>
<li>-i &#8220;/usr/share/icons/Humanity/apps/48/bash.svg&#8221; is the location of the icon on the client computer shown in the OSD notification.</li>
</ul>
<p>Once the test is successful, we need to move onto <a href="http://www.debian-administration.org/articles/152">password-less SSH logins</a> in order for the server to send the OSD notification without having to prompt for the client username&#8217;s password.  Because rc.local uses root instead of the Server superuser, we need to setup the password-less SSH login with root.</p>
<h3>3.  On the Server, switch to root user.</h3>
<pre>sudo su</pre>
<h3>4.  Generate RSA keys.</h3>
<pre>ssh-keygen -t rsa</pre>
<h3>5.  Accept the default file and leave the passphrase blank.</h3>
<pre>Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.</pre>
<h3>6.  Copy the RSA key to the client computer and client username.</h3>
<pre>ssh-copy-id -i /root/.ssh/id_rsa.pub &lt;client_user_name&gt;@&lt;client_computer_name&gt;.&lt;domain_name&gt;</pre>
<p>Example:</p>
<pre>ssh-copy-id -i /root/.ssh/id_rsa.pub voltron43@voltron43-laptop.local</pre>
<h3>7.  Test the OSD notification from root to make sure there isn&#8217;t a password prompt.</h3>
<pre>ssh -X &lt;client_user_name&gt;@&lt;client_computer_name&gt;.&lt;domain_name&gt; 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"'</pre>
<p>Example:</p>
<pre>root@server: ~$ ssh -X voltron43@voltron43-laptop.local 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"'</pre>
<h3>8.  Create the <a href="https://help.ubuntu.com/community/RcLocalHowto">rc.local</a> file</h3>
<pre>sudo nano /etc/init.d/local</pre>
<p>The Ubuntu equivalent to rc.local is the local file located in the init.d folder.</p>
<h3>9.  Paste the following into the local file.</h3>
<pre>#!/bin/sh
ssh -X @. 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"'
exit 0</pre>
<h3>10.  Save and exit nano by pressing Ctrl+O and Ctrl+X.</h3>
<h3>11.  Make the local file executable.</h3>
<pre>sudo chmod +x /etc/init.d/local</pre>
<h3>12.  Link the local file with Init.</h3>
<pre>sudo update-rc.d local defaults 80</pre>
<h3>13.  Restart the server and you&#8217;re done!</h3>
<pre>sudo reboot</pre>
<h2>Debugging</h2>
<p>To debug the script, add &#8220;&gt; /home/&lt;server_user_name&gt;/error.log 2&gt;&amp;1&#8243; to the local file at the end of the ssh command to check for errors and &#8220;echo $(date) &#8211; Running &gt;&gt; /home/&lt;server_user_name&gt;/test.run&#8221; in the next line to see if the local file is being executed on startup.</p>
<pre>#!/bin/sh
ssh -X &lt;client_user_name&gt;<span style="font-weight:normal;font-size:12px;">@&lt;client_computer_name&gt;.&lt;domain_name&gt; 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"' &gt; /home/&lt;server_user_name&gt;/error.log 2&gt;&amp;1
</span>echo $(date) - Running &gt;&gt; /home/&lt;server_user_name&gt;/test.run
exit 0</pre>
<p>Example:</p>
<pre>#!/bin/sh
ssh -X ssh -X voltron43@voltron43-laptop.local 'DISPLAY=:0 notify-send "Server is up" -i "/usr/share/icons/Humanity/apps/48/bash.svg"' &gt; /home/voltron43/error.log 2&gt;&amp;1
echo $(date) - Running &gt;&gt; /home/voltron43/test.run
exit</pre>
<h2>References</h2>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=1240828">Bash script (or alias) using ssh &amp; notify-send</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=1240828"></a><a title="Click to do a full-text search for this title" rel="nofollow" href="/community/RcLocalHowto?action=fullsearch&amp;context=180&amp;value=linkto%3A%22RcLocalHowto%22">RcLocalHowto</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=371948">rc.local not executing at reboot</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=708834">make server beep after bootup</a></li>
<li><a href="http://www.debian-administration.org/articles/152">Password-less logins with OpenSSH</a></li>
<li><a href="http://www.webupd8.org/2010/05/finally-easy-way-to-customize-notify.html">Finally an Easy Way to Customize Notify OSD Notification Bubbles</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=181&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/23/how-to-recieve-notifications-when-your-server-finishes-booting-up-howto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/server_is_up.png" medium="image">
			<media:title type="html">SERVER_IS_UP</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/auto_eth0.png" medium="image">
			<media:title type="html">AUTO_ETH0</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Change Dropbox&#8217;s Status Icons [HOWTO]</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/19/how-to-change-dropboxs-status-icons-howto/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/19/how-to-change-dropboxs-status-icons-howto/#comments</comments>
		<pubDate>Wed, 19 May 2010 05:38:43 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=140</guid>
		<description><![CDATA[Ever since the release of Dropbox&#8217;s 8.0 and above experiemental builds, users have had the ability to change the application indicator icons.  This is particularly handy when trying to match the new Lucid themes.  Nothing is more annoying than a monochrome application indicator icons with a blue Dropbox icon in the mix.  If you haven&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=140&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever since the release of <a href="http://forums.dropbox.com/topic.php?id=19762#post-124624">Dropbox&#8217;s 8.0 and above experiemental builds</a>, users have had the ability to change the application indicator icons.  This is particularly handy when trying to match the new Lucid themes.  Nothing is more annoying than a monochrome application indicator icons with a blue Dropbox icon in the mix.  If you haven&#8217;t updated Dropbox to the latest experimental build via dbupdate, please see <a href="http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/">this post</a>.  Below is a list of icons taken from <a href="http://www.omgubuntu.co.uk/2010/05/5-replacement-dropbox-icon-sets.html">OMGUbuntu!</a>.</p>
<h1>Application Indicator Icons Sets for Dropbox</h1>
<h2>1.  Ubuntu Dark by Incognitus</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-2.png"><img class="alignnone size-full wp-image-146" title="Screenshot-2" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-2.png?w=400&#038;h=25" alt="" width="400" height="25" /></a></p>
<h3><a title="http://dl.dropbox.com/u/577657/icons.tar.gz" href="http://dl.dropbox.com/u/577657/icons.tar.gz">Download</a></h3>
<h2>2.  Ubuntu Light by Incognitus</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-7.png"><img class="alignnone size-full wp-image-151" title="Screenshot-7" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-7.png?w=398&#038;h=25" alt="" width="398" height="25" /></a></p>
<h3><a title="http://dl.dropbox.com/u/577657/icons-light.tar.gz" href="http://dl.dropbox.com/u/577657/icons-light.tar.gz">Download</a></h3>
<h2>3.  <a href="http://gnome-look.org/content/show.php/Dropbox+Ubuntu+Mono+Dark+icons?content=124426">Ubuntu Mono Dark Set 1</a> by <a href="http://gnome-look.org/usermanager/search.php?username=nevon&amp;action=profile">nevon</a></h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-3.png"><img class="alignnone size-full wp-image-147" title="Screenshot-3" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-3.png?w=400&#038;h=25" alt="" width="400" height="25" /></a><br />
<a href="http://gnome-look.org/CONTENT/content-files/124426-Dropbox-icons.tar.gz"> </a></p>
<h3><a href="http://gnome-look.org/CONTENT/content-files/124426-Dropbox-icons.tar.gz">Download</a></h3>
<h2>4.  <a href="http://gnome-look.org/content/show.php/Ubuntu+Mono+Dark+Dropbox+icons?content=124424">Ubuntu Mono Dark Set 2</a> by <a href="http://gnome-look.org/usermanager/search.php?username=nevon&amp;action=profile">nevon</a></h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-4.png"><img class="alignnone size-full wp-image-148" title="Screenshot-4" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-4.png?w=400&#038;h=25" alt="" width="400" height="25" /></a></p>
<h3><a href="http://gnome-look.org/CONTENT/content-files/124424-Dropbox-Mono-icons.tar.gz">Download</a></h3>
<h2>5.  <a href="http://gnome-look.org/content/show.php?content=124402">Dropbox Ubuntu Mono</a> by <a href="http://gnome-look.org/usermanager/search.php?username=invernizzi">invernizzi</a></h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-8.png"><img class="alignnone size-full wp-image-152" title="Screenshot-8" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-8.png?w=400&#038;h=22" alt="" width="400" height="22" /></a></p>
<h3><a href="http://gnome-look.org/CONTENT/content-files/124424-Dropbox-Mono-icons.tar.gz">Download</a></h3>
<h2>6.  Dropbox Notification Icons Dark by Charles Anderson</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-5.png"><img class="alignnone size-full wp-image-149" title="Screenshot-5" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-5.png?w=400&#038;h=25" alt="" width="400" height="25" /></a></p>
<h3><a href="http://dl.dropbox.com/u/62148/Misc/Dropbox%20Notification%20Icons.tar.gz">Download</a></h3>
<h2>7.  Dropbox Notification Icons Light by Charles Anderson</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-9.png"><img class="alignnone size-full wp-image-153" title="Screenshot-9" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-9.png?w=400&#038;h=24" alt="" width="400" height="24" /></a></p>
<h3><a href="http://dl.dropbox.com/u/62148/Misc/Dropbox%20Notification%20Icons.tar.gz">Download</a></h3>
<h2>8.  Dropbox Monochrome Dark by Joern</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-6.png"><img class="alignnone size-full wp-image-150" title="Screenshot-6" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-6.png?w=400&#038;h=25" alt="" width="400" height="25" /></a></p>
<h3><a href="http://dl.dropbox.com/u/3000127/DropBoxMonochromeIcons.tar.gz">Download</a></h3>
<h2>9.  Dropbox Monochrome Light by Joern</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-10.png"><img class="alignnone size-full wp-image-145" title="Screenshot-10" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-10.png?w=406&#038;h=25" alt="" width="406" height="25" /></a></p>
<h3><a href="http://dl.dropbox.com/u/3000127/DropBoxMonochromeIcons.tar.gz">Download</a></h3>
<h1>How to install the icons.</h1>
<p>There are a few ways to download and install the Dropbox icons.</p>
<h2>Option 1: Manually download and install the icons.</h2>
<h3>1.  Download the compressed archive to your home directory.</h3>
<pre>wget &lt;archive URL&gt; -O ~/icons.tar.gz</pre>
<h3>2.  Stop Dropbox.</h3>
<pre>/usr/bin/dropbox stop</pre>
<h3>3.  Backup the original Dropbox icons in the <em>~/.dropbox-dist/icons</em> directory.</h3>
<pre>mkdir ~/.dropbox-dist/icons/Backup
cp ~/.dropbox-dist/icons/*.png ~/.dropbox-dist/icons/Backup/</pre>
<h3>4.  Extract the compressed archive and place the icons in your <em>~/.dropbox-dist/icons</em> directory.</h3>
<pre>tar xvf ~/icons.tar.gz</pre>
<h3>5.  Browse to the extracted directory and manually copy the icons to the <em>~/.dropbox-dist/icons</em> directory.</h3>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-icons-file-browser.png"><img class="alignnone size-full wp-image-169" title="Screenshot-icons - File Browser" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-icons-file-browser.png?w=497&#038;h=379" alt="" width="497" height="379" /></a></p>
<h3>6.  Start Dropbox</h3>
<pre>/usr/bin/dropbox start</pre>
<h2>Option 2:  Download and run the install_dropbox_icons script.</h2>
<p>install_dropbox is a bash script that downloads and installs custom notification icons for Dropbox.  The current supported icon sets are:</p>
<ol>
<li> Ubuntu Dark by Incognitus</li>
<li>Ubuntu Light by Incognitus</li>
<li>Ubuntu Mono Dark Set 1 by nevon</li>
<li>Ubuntu Mono Dark Set 2 by nevon</li>
<li>Ubuntu Mono Elementary by invernizzi</li>
<li>Dropbox Notification Icons Dark by Charles Anderson</li>
<li>Dropbox Notification Icons Light by Charles Anderson</li>
<li>Dropbox Monochrome Dark by Joern</li>
<li>Dropbox Monochrome Light by Joern</li>
</ol>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-3.png"><img class="alignnone size-full wp-image-162" title="Screenshot-voltron43@voltron43-desktop: ~-3" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-3.png?w=497&#038;h=353" alt="" width="497" height="353" /></a></p>
<h3>1.  Download the script.</h3>
<pre>wget http://dl.dropbox.com/u/16428/scripts/install_dropbox_icons.tar.gz -O ~/install_dropbox_icons.tar.gz</pre>
<h3>2.  Extract the script.</h3>
<pre>tar xvf ~/install_dropbox_icons.tar.gz</pre>
<h3>3.  Make the script executable.</h3>
<pre>chmod +x ~/install_dropbox_icons</pre>
<h3>4.  Run the script.</h3>
<pre>~/./install_dropbox_icons</pre>
<h3>Optional: Remove the script and archive from the home directory.</h3>
<pre>rm ~/install_dropbox_icons*</pre>
<h3>The install_dropbox_icons script can be downloaded <a href="http://dl.dropbox.com/u/16428/scripts/install_dropbox_icons.tar.gz">here</a>.</h3>
<h3>Update: install_dropbox_icons has been updated to version 0.2.</h3>
<h2>Related posts:</h2>
<ul>
<li><strong><a title="Edit “How to Update Dropbox to the Latest Experimental Build Using dbupdate [HOWTO]”" href="http://new2ubuntu.wordpress.com/wp-admin/post.php?post=109&amp;action=edit">How to Update Dropbox to the Latest Experimental Build Using dbupdate [HOWTO]</a></strong></li>
<li><strong><a title="Edit “How to Install Dropbox in Ubuntu [HOWTO]”" href="http://new2ubuntu.wordpress.com/wp-admin/post.php?post=52&amp;action=edit">How to Install Dropbox in Ubuntu [HOWTO]</a></strong></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=140&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/19/how-to-change-dropboxs-status-icons-howto/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-2.png" medium="image">
			<media:title type="html">Screenshot-2</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-7.png" medium="image">
			<media:title type="html">Screenshot-7</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-3.png" medium="image">
			<media:title type="html">Screenshot-3</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-4.png" medium="image">
			<media:title type="html">Screenshot-4</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-8.png" medium="image">
			<media:title type="html">Screenshot-8</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-5.png" medium="image">
			<media:title type="html">Screenshot-5</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-9.png" medium="image">
			<media:title type="html">Screenshot-9</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-6.png" medium="image">
			<media:title type="html">Screenshot-6</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-10.png" medium="image">
			<media:title type="html">Screenshot-10</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-icons-file-browser.png" medium="image">
			<media:title type="html">Screenshot-icons - File Browser</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-3.png" medium="image">
			<media:title type="html">Screenshot-voltron43@voltron43-desktop: ~-3</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Update Dropbox to the Latest Experimental Build Using dbupdate [HOWTO]</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/#comments</comments>
		<pubDate>Fri, 14 May 2010 07:32:10 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=109</guid>
		<description><![CDATA[It&#8217;s great to have the Dropbox installed on your Ubuntu machine, but what if you want to keep it on the cutting edge?  It&#8217;s possible to visit the Dropbox forums and check for the latest experimental builds everyday, but that gets very tedious and annoying.  Thankfully, Dustin B. over at the Dropbox forums wrote a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=109&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s great to have the <a href="http://new2ubuntu.wordpress.com/2010/05/13/how-to-install-dropbox-howto/">Dropbox installed on your Ubuntu machine</a>, but what if you want to keep it on the cutting edge?  It&#8217;s possible to visit the <a href="http://forums.dropbox.com/">Dropbox forums</a> and check for the latest experimental builds everyday, but that gets very tedious and annoying.  Thankfully, <a href="http://forums.dropbox.com/profile.php?id=224066">Dustin B.</a> over at the <a href="http://forums.dropbox.com/topic.php?id=12153#post-77227">Dropbox forums</a> wrote a script/application, titled dbupdate, that automatically downloads the latest experimental build.</p>
<h1>How to install dbupdate.</h1>
<p>There are a few different options on how to use this script.</p>
<h2>Option 1: Download the dbupdate script and run it as a bash script.</h2>
<p>Note: the below code corresponds to version 2.10 of the dbupdate script and will not work with future releases.  I recommend installing dbupdate via the repository (see option 3 below).</p>
<p>Run the following code in Terminal.</p>
<h3>1.  Download the script.</h3>
<pre>wget http://dl.dropbox.com/u/1108539/dbupdate/dbupdate0.2.10</pre>
<h3>2.  Make the script executable.</h3>
<pre>chmod +x <span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">dbupdate0.2.10</span></pre>
<h3>3.  Run the script and check is there is a Dropbox update.</h3>
<pre>./<span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">dbupdate0.2.10 -c</span></pre>
<h3>4.  Run the script and upgrade Dropbox.</h3>
<pre>./dbupdate0.2.10 -u</pre>
<h3>Optional: The script can also be installed via the script by running the following code.</h3>
<pre>sudo ./dbupdate0.2.10 -i0</pre>
<h2>Option 2: Download and install the deb files.</h2>
<p>Note: the below code corresponds to version 2.10 of the dbupdate-bin deb file and version 2.5 of the debupdate deb file and will not work with future releases.  I recommend installing dbupdate via the repository (see option 3 below).</p>
<p>Run the following code in Terminal.</p>
<h3>1.  Download the deb files.</h3>
<pre>wget http://dl.dropbox.com/u/1108539/dbupdate/dbupdate-0.2.5.deb &amp;&amp; wget http://dl.dropbox.com/u/1108539/dbupdate/dbupdate-bin-0.2.10.deb</pre>
<p>Alternative: Download the deb files over at the <a href="http://forums.dropbox.com/topic.php?id=12153#post-77227">Dropbox forums</a>.</p>
<h3>2.  Install the dependencies.</h3>
<pre>sudo apt-get -y --force-yes install libnotify-bin</pre>
<h3>3.  Install the deb files.</h3>
<pre>sudo dpkg -i dbupdate-bin-0.2.10.deb
sudo dpkg -i dbupdate-0.2.5.deb</pre>
<h3><strong>4. Cleanup the deb files.</strong></h3>
<pre>rm dbupdate-0.2.5.deb &amp;&amp; rm dbupdate-bin-0.2.10.deb</pre>
<h3>5.  Proceed to <span style="text-decoration:underline;">Update Dropbox</span> section below.</h3>
<h2>Option 3 (recommended): Install via the repository.</h2>
<p>The advantage to using the repository is that the most recent version of dbupdate is installed and dbupdate is automatically updated when a new version is released.</p>
<p>Run the following code in Terminal.</p>
<h3>1.  Add the dbupdate repository.</h3>
<pre>echo "deb http://dl.dropbox.com/u/1108539/dbupdate ./ #dbupdate" | sudo tee -a /etc/apt/sources.list.d/dbupdate.list</pre>
<h3>2.  Add the dbupdate public key.</h3>
<pre>wget --quiet http://dl.dropbox.com/u/1108539/db.asc -O- | sudo apt-key add -</pre>
<h3>3.  Update the repository.</h3>
<pre>sudo apt-get update</pre>
<h3>4.  Install dbupdate</h3>
<pre>sudo apt-get -y --force-yes install dbupdate</pre>
<h3>5.  Proceed to <span style="text-decoration:underline;">Update Dropbox</span> section below.</h3>
<h2>Update Dropbox</h2>
<p>It&#8217;s very easy to update Dropbox using dbupdate.</p>
<p>Run the following code in Terminal.</p>
<h3>1.  Check if there is a Dropbox update.</h3>
<pre>dbupdate -c</pre>
<h3>2.  Update dbupdate</h3>
<pre>dbupdate -u</pre>
<h3>To see a list of all of the supported dbupdate command options.</h3>
<pre>man dbupdate</pre>
<p>or</p>
<pre>dbupdate -h</pre>
<h2>Below is a little video of dbupdate in action.</h2>
<p>Note:  The video is a little out of date so the commands shown in the video may not work with the current version of dbupdate.</p>
<span style="text-align:center; display: block;"><a href="http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/"><img src="http://img.youtube.com/vi/dwJNDHsNNSA/2.jpg" alt="" /></a></span>
<p>One of the latest updates to Dropbox is the introduction of custom status icons.  A future HOWTO post will outline how to download and install custom status icons.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=109&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Install Dropbox in Ubuntu [HOWTO]</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/13/how-to-install-dropbox-howto/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/13/how-to-install-dropbox-howto/#comments</comments>
		<pubDate>Thu, 13 May 2010 04:57:41 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=52</guid>
		<description><![CDATA[One of my favorite applications is the proprietary cross-platform backup and syncing service, Dropbox.  One of the greatest things about it is its ability to be used on multiple platforms.  When I made the switch from Windows to Ubuntu, all of my important documents were automatically downloaded and synced to my new OS.  I also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=52&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of my favorite applications is the proprietary cross-platform backup and syncing service, <a href="www.dropbox.com">Dropbox</a>.  One of the greatest things about it is its ability to be used on multiple platforms.  When I made the switch from Windows to Ubuntu, all of my important documents were automatically downloaded and synced to my new OS.  I also really enjoy the ease of use, online access to files, and the fact that I get 2 GBs free!</p>
<p><a href="https://www.dropbox.com/"><img class="alignnone" title="Dropbox" src="https://www.dropbox.com/static/11198/images/logo.png" alt="Dropbox" width="231" height="60" /></a></p>
<h1>How to install Dropbox:</h1>
<p>First of all, Dropbox is proprietary software and therefore cannot be included in the Ubuntu repository.  To get around this, Dropbox has created a small script called nautilus-dropbox that can be added to the repository and installed in Ubuntu.  The nautilus script is used to download and install the proprietary Dropbox daemon from the web.  The download options below download, install, and and then run the nautilus-dropbox script.</p>
<h2>Option 1: Download and install the deb file from <a href="https://www.dropbox.com/downloading?os=lnx">Dropbox&#8217;s website</a>.</h2>
<p>See the <em>Install the Dropbox daemon</em> section below for installation details.</p>
<h2>Option 2: Add the repository and install nautilus-dropbox  from Terminal.</h2>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-1.png"><img class="alignnone size-medium wp-image-82" title="Screenshot-voltron43@voltron43-desktop: ~-1" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-1.png?w=300&#038;h=213" alt="" width="300" height="213" /></a></p>
<p>Run the following code in Terminal.</p>
<h4>1.  Add the repository.</h4>
<pre>echo "deb http://linux.dropbox.com/ubuntu $(lsb_release -cs) main" | sudo tee "/etc/apt/sources.list.d/dropbox.list" &gt; /dev/null</pre>
<h4>2.  Add the public key.</h4>
<pre>sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E</pre>
<h4>3.  Update the repository.</h4>
<pre>sudo apt-get update</pre>
<h4>4.  Install nautilus-dropbox.</h4>
<pre>sudo apt-get -y --force-yes install nautilus-dropbox</pre>
<p><strong>Optional: </strong>nautilus-dropbox should automatically launch the Dropbox daemon.  If it does not, run the code below.</p>
<pre>dropbox start -i</pre>
<h4>5.  Proceed to the <em>Install the Dropbox daemon</em> section below.</h4>
<h2>Option 3: Download my install_dropbox script and install nautilus-dropbox from Terminal.</h2>
<h4>1.  Download the script.</h4>
<pre>wget http://dl.dropbox.com/u/16428/scripts/install_dropbox.tar.gz</pre>
<h4>2.  Unpack the script.</h4>
<pre>tar xvzf install_dropbox.tar.gz</pre>
<h4>4.  Make the script executable.</h4>
<pre>chmod +x install_dropbox</pre>
<h4>5.  Run the script.</h4>
<pre>./install_dropbox</pre>
<h4>6.  Proceed to the <em>Install the Dropbox daemon</em> section below.</h4>
<p>The script can also be downloaded <a href="http://dl.dropbox.com/u/16428/scripts/install_dropbox.tar.gz">here</a>.</p>
<h2>Install the Dropbox daemon</h2>
<p>This section takes you through the steps of installing the Dropbox daemon.</p>
<h4>1.  Click the Start Dropbox button.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available.png"><img class="alignnone size-medium wp-image-79" title="Screenshot-Information available" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available.png?w=300&#038;h=234" alt="" width="300" height="234" /></a></p>
<h4>Alternative: Dropbox daemon can also be started using the following code in Terminal.</h4>
<pre>dropbox start -i</pre>
<h4>2.  Check the <span style="text-decoration:underline;">Don&#8217;t show this again</span> checkbox and click <span style="text-decoration:underline;">OK</span>.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-1.png"><img class="alignnone size-medium wp-image-69" title="Screenshot-Dropbox Installation-1" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-1.png?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>You should now see a download dialog window.</p>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-2.png"><img class="alignnone size-medium wp-image-70" title="Screenshot-Dropbox Installation-2" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-2.png?w=300&#038;h=132" alt="" width="300" height="132" /></a></p>
<p>The next windows is the unpacking dialog window.</p>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-4.png"><img class="alignnone size-medium wp-image-72" title="Screenshot-Dropbox Installation-4" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-4.png?w=300&#038;h=132" alt="" width="300" height="132" /></a></p>
<h4>3.  If you already have a Dropbox account, select the <span style="text-decoration:underline;">I already have a Dropbox account</span> option and click <span style="text-decoration:underline;">Forward</span> and skip the next step.  If you don&#8217;t have a Dropbox account, leave the default option and click <span style="text-decoration:underline;">Forward</span> and move onto the next step.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup.png"><img class="alignnone size-medium wp-image-73" title="Screenshot-Dropbox Setup" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<h4>4.  Create your Dropbox account by filling in your personal details and click <strong><span style="text-decoration:underline;">Forward</span></strong>.  Be sure to check the <span style="text-decoration:underline;">I agree with the Terms of Service</span> checkbox!</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-1.png"><img class="alignnone size-medium wp-image-74" title="Screenshot-Dropbox Setup-1" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-1.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<h4>5.  Log in to Dropbox using your new or existing username and password and click <strong><span style="text-decoration:underline;">Forward</span></strong>.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-2.png"><img class="alignnone size-medium wp-image-75" title="Screenshot-Dropbox Setup-2" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-2.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<p>Dropbox keeps track of which computers you are syncing with your account, so make sure to name your computer something that makes sense.</p>
<h4>6.  Choose which account type you use.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-3.png"><img class="alignnone size-medium wp-image-76" title="Screenshot-Dropbox Setup-3" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-3.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<p>I, personally, have used the 2 GB account for the past 3 years or so and have not had a problem with running out of space because I only sync important documents.</p>
<h4>7.  You can choose to either take a tour of Dropbox if you&#8217;re a new user, or you can skip the tour by clicking the <span style="text-decoration:underline;">Skip tour and finish</span> button.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-4.png"><img class="alignnone size-medium wp-image-77" title="Screenshot-Dropbox Setup-4" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-4.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<h4>8.  Choose to use the default Dropbox Folder Location or choose you&#8217;re own by checking the <span style="text-decoration:underline;">I want to choose where to put my Dropbox folder</span> checkbox.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-5.png"><img class="alignnone size-medium wp-image-78" title="Screenshot-Dropbox Setup-5" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-5.png?w=300&#038;h=264" alt="" width="300" height="264" /></a></p>
<p>The option to choose where to put the Dropbox folder is a very convenient option, especially if I have to resync Dropbox to an existing Dropbox folder.  If you choose to resync Dropbox to an existing Dropbox folder, be sure to use the parent folder.</p>
<h4>9.  Restart nautilus by clicking the <span style="text-decoration:underline;">Restart Nautilus</span> button.</h4>
<p><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available-1.png"><img class="alignnone size-medium wp-image-80" title="Screenshot-Information available-1" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available-1.png?w=300&#038;h=234" alt="" width="300" height="234" /></a></p>
<h4>Alternative: you can also restart nautilus by running the following code in Terminal.</h4>
<pre>nautilus --quit</pre>
<p><span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;font-weight:normal;line-height:18px;font-size:12px;white-space:pre;"><a href="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-1.png"><img class="alignnone size-medium wp-image-101" title="Screenshot-1" src="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-1.png?w=300&#038;h=147" alt="" width="300" height="147" /></a></span></p>
<p><span style="font-weight:normal;">Congratulations.  You have now finished installing Dropbox for Ubuntu!  To use Dropbox, just create documents inside the Dropbox folder and the documents will automatically be uploaded to Dropbox&#8217;s server.  To share documents between computers and/or operating systems, install Dropbox on the computers and/or operating systems.</span></p>
<h4>In future posts I&#8217;ll show you how to <span style="text-decoration:line-through;">update Dropbox to the latest experimental builds using Dusten B.&#8217;s script and</span> customize the notification icons.</h4>
<p>[Update] Added <a href="http://new2ubuntu.wordpress.com/2010/05/14/how-to-update-dropbox-to-the-latest-experimental-build-using-dbupdate-howto/">How to Update Dropbox to the Latest Experimental Build Using dbupdate [HOWTO]</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=52&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/13/how-to-install-dropbox-howto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>

		<media:content url="//www.dropbox.com/static/11198/images/logo.png" medium="image">
			<media:title type="html">Dropbox</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-voltron43voltron43-desktop-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-voltron43@voltron43-desktop: ~-1</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available.png?w=300" medium="image">
			<media:title type="html">Screenshot-Information available</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Installation-1</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-2.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Installation-2</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-installation-4.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Installation-4</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup-1</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-2.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup-2</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-3.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup-3</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-4.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup-4</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-dropbox-setup-5.png?w=300" medium="image">
			<media:title type="html">Screenshot-Dropbox Setup-5</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-information-available-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-Information available-1</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/screenshot-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-1</media:title>
		</media:content>
	</item>
		<item>
		<title>Preferred Applications</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/10/preferred-applications/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/10/preferred-applications/#comments</comments>
		<pubDate>Mon, 10 May 2010 06:35:36 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[applications]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=21</guid>
		<description><![CDATA[I&#8217;m constantly on the prowl for new and efficient applications to accomplish my everyday tasks in Ubuntu.  My main reasons for liking an application are; free, easy of use, works out of the box, speed, matches my theme, and community supported.  I don&#8217;t care if the applications has all of the &#8216;frills and thrills&#8217; as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=21&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m constantly on the prowl for new and efficient applications to accomplish my everyday tasks in Ubuntu.  My main reasons for liking an application are; free, easy of use, works out of the box, speed, matches my theme, and community supported.  I don&#8217;t care if the applications has all of the &#8216;frills and thrills&#8217; as long as it works.</p>
<h2>Here is a list of my preferred applications:</h2>
<ul>
<li>OS: <a href="http://www.ubuntu.com/products/whatisubuntu/1004features">Ubuntu Lucid Lynx 10.04 LTS</a></li>
<li>Internet browser: <a href="http://www.google.com/chrome/intl/en/eula_dev.html?dl=unstable_i386_deb">Google Chrome unstable</a></li>
<li>Email: <a href="http://gnome-gmail.sourceforge.net/">Gnome-Gmail</a></li>
<li>Music player: <a href="https://launchpad.net/quodlibet">Quod Libet</a></li>
<li>Video player: <a href="http://www.videolan.org/vlc/">VLC</a></li>
<li>Editor: <a href="http://projects.gnome.org/gedit/">gedit</a></li>
<li>Chat: <a href="http://live.gnome.org/Empathy">Empathy</a></li>
<li>File sync: <a href="http://gnome-gmail.sourceforge.net/">Dropbox</a></li>
<li>File launcher: <a href="http://do.davebsd.com/">Do</a></li>
<li>Dock: <a href="https://launchpad.net/docky">Docky</a></li>
<li>Scanning: <a href="https://launchpad.net/simple-scan">Simple Scan</a></li>
<li>Virtualization: <a href="http://www.virtualbox.org/">VirtualBox</a></li>
<li>Download manager: <a href="http://urlget.sourceforge.net/">Uget</a></li>
<li>FTP Client: <a href="http://filezilla-project.org/">FileZilla</a></li>
<li>PDF &#8216;editor&#8217;: <a href="http://sourceforge.net/projects/pdfshuffler/">PDF Shuffler</a></li>
<li>BitTorrent: <a href="http://www.transmissionbt.com/">Transmission</a></li>
</ul>
<p>I will be blogging about some of the applications and how I use and modify them to my liking.</p>
<p>Make sure to visit my <a href="http://new2ubuntu.wordpress.com/preferred-applications/">Preferred Applications</a> page to see what I&#8217;m currently using!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=21&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/10/preferred-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>
	</item>
		<item>
		<title>Current Desktop</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/10/current-desktop/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/10/current-desktop/#comments</comments>
		<pubDate>Mon, 10 May 2010 04:20:10 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[docky]]></category>
		<category><![CDATA[radiance]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=14</guid>
		<description><![CDATA[My first post is showcasing my current Ubuntu desktop and configuration. My current desktop has the following: Docky with the Gmail, Weather, and Mounter docklets Radiance theme with Droid fonts Wallpaper: Hurrah Ubuntu by pr09studio Top Panel: Panflute applet Dropbox with customized icons Emapthy with customized icons I&#8217;ll update this post every now and then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=14&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first post is showcasing my current Ubuntu desktop and configuration.</p>
<p style="text-align:center;"><a href="http://new2ubuntu.files.wordpress.com/2010/05/desktop2.png"><img class="size-full wp-image-39 aligncenter" title="Desktop2" src="http://new2ubuntu.files.wordpress.com/2010/05/desktop2.png?w=497&#038;h=310" alt="" width="497" height="310" /></a></p>
<h3>My current desktop has the following:</h3>
<ul>
<li><a href="https://launchpad.net/docky">Docky</a> with the Gmail, Weather, and Mounter docklets</li>
<li><a href="http://www.webupd8.org/2010/03/new-ubuntu-1004-light-and-dark-themes.html">Radiance theme</a> with <a href="http://www.droidfonts.com/">Droid fonts</a></li>
<li>Wallpaper: <a href="http://pr09studio.deviantart.com/art/Hurrah-Ubuntu-162917462">Hurrah Ubuntu</a> by <a href="http://pr09studio.deviantart.com/">pr09studio</a></li>
<li>Top Panel:
<ul>
<li><a href="https://launchpad.net/panflute">Panflute</a> applet</li>
<li><a href="https://www.dropbox.com/">Dropbox</a> with customized icons</li>
<li><a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;ved=0CBIQFjAA&amp;url=http%3A%2F%2Flive.gnome.org%2FEmpathy&amp;ei=4F7oS_eDCoPuswOylunaAg&amp;usg=AFQjCNEmFqNQPPSca2AZ5_nwAc79X0kwvg&amp;sig2=wyiY044dQCIygehCxB_3_g">Emapthy</a> with customized icons</li>
</ul>
</li>
</ul>
<p>I&#8217;ll update this post every now and then to document my desktop upgrades and modifications.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=14&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/10/current-desktop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>

		<media:content url="http://new2ubuntu.files.wordpress.com/2010/05/desktop2.png" medium="image">
			<media:title type="html">Desktop2</media:title>
		</media:content>
	</item>
		<item>
		<title>About new2ubuntu</title>
		<link>http://new2ubuntu.wordpress.com/2010/05/10/about-new2ubuntu/</link>
		<comments>http://new2ubuntu.wordpress.com/2010/05/10/about-new2ubuntu/#comments</comments>
		<pubDate>Mon, 10 May 2010 03:57:22 +0000</pubDate>
		<dc:creator>Voltron43</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://new2ubuntu.wordpress.com/?p=12</guid>
		<description><![CDATA[Welcome to new2ubuntu!  new2ubuntu is a blog dedicated to the exploration and customization of Ubuntu.  The main topics that will be covered in this blog is how to customize the look, feel, and function of Ubuntu, and what my setup is for Ubuntu. A few of the topics that I&#8217;m to cover are: Customizing system [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=12&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to new2ubuntu!  new2ubuntu is a blog dedicated to the exploration and customization of <a href="http://www.ubuntu.com/">Ubuntu</a>.  The main topics that will be covered in this blog is how to customize the look, feel, and function of Ubuntu, and what my setup is for Ubuntu.</p>
<p>A few of the topics that I&#8217;m to cover are:</p>
<ul>
<li>Customizing system tray icons, panels, and desktop.</li>
<li>My preferred applications and their settings and customizations.</li>
<li>Ubuntu bug fixes.</li>
</ul>
<p>Being a dedicated <a href="http://en.wikipedia.org/wiki/Techie" target="_blank">techie</a>, I tend to run the latest development and test builds of applications, meaning I&#8217;ll be writing about <a href="http://www.ubuntu.com/products/whatisubuntu/1004features">Ubuntu Lucid Lynx 10.04 LTS</a>.</p>
<p>I&#8217;m excited to share all of my Ubuntu experiences!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/new2ubuntu.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/new2ubuntu.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/new2ubuntu.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=new2ubuntu.wordpress.com&amp;blog=13556053&amp;post=12&amp;subd=new2ubuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://new2ubuntu.wordpress.com/2010/05/10/about-new2ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/65a27aa880f215477e4614ea581666f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwilde</media:title>
		</media:content>
	</item>
	</channel>
</rss>
