<?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>usefulgeek &#187; quickfire</title>
	<atom:link href="http://www.usefulgeek.com/blog/category/quickfire/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.usefulgeek.com/blog</link>
	<description>rants, reviews and kind hearted messages from some geeks</description>
	<lastBuildDate>Wed, 04 Jan 2012 22:08:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Linux IPv6 Neighbor Discovery</title>
		<link>http://www.usefulgeek.com/blog/2010/04/linux-ipv6-neighbor-discovery/</link>
		<comments>http://www.usefulgeek.com/blog/2010/04/linux-ipv6-neighbor-discovery/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 21:37:54 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=252</guid>
		<description><![CDATA[Using ping6 and ip neigh it&#8217;s possible to discover other IPv6 hosts on your local network using the link-local addresses. First, use ping6 to ping all hosts on the local network using the IPv6 link-local address ping6 -c 2 -I eth0 ff02::1 Then, use ip neigh to show a list of IPv6 enable hosts on [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Using <code>ping6</code> and <code>ip neigh</code> it&#8217;s possible to discover other IPv6 hosts on your local network using the link-local addresses.<br />
First, use ping6 to ping all hosts on the local network using the IPv6 link-local address</p>
<pre>ping6 -c 2 -I eth0 ff02::1</pre>
<p>Then, use <code>ip neigh</code> to show a list of IPv6 enable hosts on the local network</p>
<pre>ip -f inet6 neigh</pre>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2010/04/linux-ipv6-neighbor-discovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why use ZFS with FreeNAS?</title>
		<link>http://www.usefulgeek.com/blog/2010/03/why-use-zfs-with-freenas/</link>
		<comments>http://www.usefulgeek.com/blog/2010/03/why-use-zfs-with-freenas/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 03:43:29 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=230</guid>
		<description><![CDATA[I recently started using FreeNAS again after exploring other options that existed, such as openfiler, and now that I&#8217;ve returned, ZFS seems to be the cool thing to do.  After reading, watching videos and playing with ZFS I&#8217;m sold on all the features it offers.  However, I must ask, is there a compelling reason to [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I recently started using FreeNAS again after exploring other options that existed, such as openfiler, and now that I&#8217;ve returned, ZFS seems to be the cool thing to do.  After reading, watching videos and playing with ZFS I&#8217;m sold on all the features it offers.  However, I must ask, is there a compelling reason to use ZFS over UFS for a single disk?  I&#8217;d really like to see some comments on this.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2010/03/why-use-zfs-with-freenas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rewrite incoming CallerID</title>
		<link>http://www.usefulgeek.com/blog/2010/02/rewrite-incoming-callerid/</link>
		<comments>http://www.usefulgeek.com/blog/2010/02/rewrite-incoming-callerid/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:38:27 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=231</guid>
		<description><![CDATA[We&#8217;re using asterisk, and as part of the dial plan, a 9 is required before the number to make calls out to the PSTN.  Since our phones have a incoming call log, it would be very convient to have asterisk rewrite the CallerID value on calls from the PSTN to include this leading digit.  I [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re using asterisk, and as part of the dial plan, a 9 is required before the number to make calls out to the PSTN.  Since our phones have a incoming call log, it would be very convient to have asterisk rewrite the CallerID value on calls from the PSTN to include this leading digit.  I found this was rather easy to accomplish.  Adding something similar to the following to whatever extension handles your incoming calls, all CallerID numbers will have a 9 added to the front.<br />
<code><br />
exten =&gt; s,1,Set(<span style="color: green;">CALLERID(num)</span>=9<span style="color: purple;">${CALLERID(num)</span>})<br />
</code><br />
And proceed with your normal call routing logic.  Change the preceding digit to whatever matches your system.  If you have several extensions this is going to be used with, you could benefit from using a global variable for the leading digit.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2010/02/rewrite-incoming-callerid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share list of files in DropBox Public folder</title>
		<link>http://www.usefulgeek.com/blog/2010/01/share-files-list-in-dropbox-public-folder/</link>
		<comments>http://www.usefulgeek.com/blog/2010/01/share-files-list-in-dropbox-public-folder/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 09:45:53 +0000</pubDate>
		<dc:creator>drale</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[dropbox]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=214</guid>
		<description><![CDATA[For Windows DropBox users. Here is a simple way to share list of links for your Public folder. This script doesn&#8217;t show files in sub-directories. 1. Create a makefilelist.bat file with script to list all files in directory. 2. Use Scheduled Tasks to run the .bat file Daily or Weekly, etc as needed; depending on [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>For Windows DropBox users. Here is a simple way to share list of links for your Public folder. This script doesn&#8217;t show files in sub-directories.</p>
<p>1. Create a makefilelist.bat file with script to list all files in directory.<br />
2. Use Scheduled Tasks to run the .bat file Daily or Weekly, etc as needed; depending on how often you update files in DropBox Public.<br />
3. Share the list file with &#8220;Copy Public Link&#8221;.<br />
4. Open Public Link in a browser. You know have a list of all public files that is up-to-date.</p>
<p>You can see an example and download the makefilelist.bat file here:<br />
<a href="http://dl.dropbox.com/u/4355901/index.html" target="_blank">http://dl.dropbox.com/u/4355901/index.html</a></p>
<p>GitHub:<br />
<a href="http://github.com/drale/dropboxlistpublic/" target="_blank"> http://github.com/drale/dropboxlistpublic/</a></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2010/01/share-files-list-in-dropbox-public-folder/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Asterisk GotoIf Application</title>
		<link>http://www.usefulgeek.com/blog/2010/01/asterisk-gotoif-application/</link>
		<comments>http://www.usefulgeek.com/blog/2010/01/asterisk-gotoif-application/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:12:20 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=211</guid>
		<description><![CDATA[The description from asterisk for this is GotoIf(condition?[labeliftrue]:[labeliffalse]), however for me (being somewhat new to asterisk, and not fully understanding all the little bits, this was a bit confusing. A better way of describing this, at least for those of use new to asterisk, might be GotoIf(condition?[context,priority,labeliftrue]:[context,priority,labeliffalse]). I have not used labels in the dial [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The description from asterisk for this is <code>GotoIf(condition?[labeliftrue]:[labeliffalse])</code>, however for me (being somewhat new to asterisk, and not fully understanding all the little bits, this was a bit confusing. A better way of describing this, at least for those of use new to asterisk, might be <code>GotoIf(condition?[context,priority,labeliftrue]:[context,priority,labeliffalse])</code>.<br />
I have not used labels in the dial plan before, and when starting out with this application I read label to be a context.  This lead me to write my dial plan similar to this..</p>
<pre>[default]
exten =&gt; 100,1,GoToIf(condition?true,false)
[true]
exten =&gt; s,1,...
[false]
exten =&gt; s,1,...
</pre>
<p>In retrospect, it&#8217;s obvious what the documentation is saying, but as I said, not being familiar with labels, I was a bit lost.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2010/01/asterisk-gotoif-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick install of Tomcat5 on CentOS</title>
		<link>http://www.usefulgeek.com/blog/2009/11/quick-install-of-tomcat5-on-centos/</link>
		<comments>http://www.usefulgeek.com/blog/2009/11/quick-install-of-tomcat5-on-centos/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:19:27 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=198</guid>
		<description><![CDATA[At the office, we&#8217;re in the process of doing some work where we need a tomcat server.  Without having to get into things to much, I found this simple method for getting tomcat5 up and running pretty quickly.  I&#8217;m sure I&#8217;ve left out some important things, and I&#8217;m doubtful as to how production ready this [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>At the office, we&#8217;re in the process of doing some work where we need a tomcat server.  Without having to get into things to much, I found this simple method for getting tomcat5 up and running pretty quickly.  I&#8217;m sure I&#8217;ve left out some important things, and I&#8217;m doubtful as to how production ready this is, but for our testing, it&#8217;s working out fine.</p>
<p>I&#8217;m using CentOS 5.3 for all of this, but I&#8217;m sure it will work with CentOS 5.4</p>
<pre>yum install tomcat5 tomcat5-admin-webapps tomcat5-webapps</pre>
<p>After this, you need to edit the tomcat-users.xml file to create a new user.Using the above, this file ends up in <code>/etc/tomcat5/tomcat5-users.xml</code> and all that needs to be added is a line similar to the following..</p>
<pre>user username="admin" password="p@ssw0rd" roles="admin,manager"</pre>
<p>I can&#8217;t get wordpress to work with me on this, so you&#8217;ll need to wrap the above in angle brackets, the same as all the other lines in that file.<br />
You can set username and password to whatever you&#8217;d like.  After this, restart tomcat (not sure if this is needed) with <code>service tomcat5 restart</code> and off you go.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/11/quick-install-of-tomcat5-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burn ISO from command line in Linux</title>
		<link>http://www.usefulgeek.com/blog/2009/11/burn-iso-from-command-line-in-linux/</link>
		<comments>http://www.usefulgeek.com/blog/2009/11/burn-iso-from-command-line-in-linux/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:00:20 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=196</guid>
		<description><![CDATA[Quick and simple way of burning an ISO image from the command line in Linux.  First, find your devices with wodim, the use the cdrecord command to burn the ISO image. $ wodim --devices wodim: Overview of accessible drives (1 found) : ------------------------------------------------------------------------- 0 dev='/dev/scd0' rwrw-- : 'LITE-ON' 'DVDRW LH-20A1P' ------------------------------------------------------------------------- $ cdrecord -v dev='/dev/scd0' [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Quick and simple way of burning an ISO image from the command line in Linux.  First, find your devices with <code>wodim</code>, the use the cdrecord command to burn the ISO image.</p>
<pre>$ wodim --devices
wodim: Overview of accessible drives (1 found) :
-------------------------------------------------------------------------
 0  dev='/dev/scd0'	rwrw-- : 'LITE-ON' 'DVDRW LH-20A1P'
-------------------------------------------------------------------------
$ cdrecord -v dev='/dev/scd0' Download/archlinux-2009.08-netinstall-i686.iso</pre>
<p>Then, you&#8217;re done.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/11/burn-iso-from-command-line-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launch Google Chrome and external links with incognito mode.</title>
		<link>http://www.usefulgeek.com/blog/2009/11/launch-google-chrome-and-external-links-with-incognito-mode/</link>
		<comments>http://www.usefulgeek.com/blog/2009/11/launch-google-chrome-and-external-links-with-incognito-mode/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:19:50 +0000</pubDate>
		<dc:creator>drale</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=178</guid>
		<description><![CDATA[The instructions floating around are to place the --incognito switch (single &#8211; works fine for me) in your desktop shortcut. But sometimes you may be in an application like Tweek Deck, etc that links to webpages. These pages don&#8217;t launch in incognito if you only fix your desktop shortcut. Here is how to do both. [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The instructions floating around are to place the <code>--incognito</code> switch (single &#8211; works fine for me) in your desktop shortcut. But sometimes you may be in an application like Tweek Deck, etc that links to webpages. These pages don&#8217;t launch in incognito if you only fix your desktop shortcut. Here is how to do both. Google Chrome is set as the default browser in this case.</p>
<p>(These instructions are based off of Windows XP)</p>
<p>Right-click on your Chrome shortcut. Choose <em>P</em><em>roperties</em>. Add <em>-incognito</em> to the end:</p>
<pre>chrome.exe" --incognito</pre>
<p>To launch all web shortcuts and links from your system:<br />
<em>Control Panel &gt; Folder Options &gt; File Types</em><br />
Select the File Type <em>URL:HyperText Transfer Protocol</em> and choose <em>Advanced<br />
<span style="font-style: normal">Select action </span>open<span style="font-style: normal"> and </span>edit<span style="font-style: normal">.<br />
Just like before add the switch to the end like this:<br />
</span></em></p>
<pre>chrome.exe" --incognito -- "%1"</pre>
<p><strong>Edit:</strong> After more digging in Google I found this tip mentioned in <a href="http://code.google.com/p/chromium/issues/detail?id=6273#c3">Google Code Chromium issues</a> (Comment 3).</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/11/launch-google-chrome-and-external-links-with-incognito-mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find Text and Find/Replace Easier Than You Think in Linux</title>
		<link>http://www.usefulgeek.com/blog/2009/10/find-text-and-findreplace-easier-than-you-think-in-linux/</link>
		<comments>http://www.usefulgeek.com/blog/2009/10/find-text-and-findreplace-easier-than-you-think-in-linux/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 09:37:49 +0000</pubDate>
		<dc:creator>drale</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[rpl]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=154</guid>
		<description><![CDATA[How to search all files for a text string: grep -lr string ./ &#62; results.txt -l will print only the path and file names of the matches. Search all files of a certain name for a certain string: grep -lr string ./ &#124; grep filename Yes, do specify ./ if you are doing all directories [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>How to search all files for a text string:</strong></p>
<pre>grep -lr string ./ &gt; results.txt</pre>
<p><code>-l</code> will print only the path and file names of the matches.</p>
<p>Search all files of a certain name for a certain string:</p>
<pre>grep -lr string ./ | grep filename</pre>
<p>Yes, do specify ./ if you are doing all directories within current.</p>
<p>(<a href="http://www.cyberciti.biz/faq/howto-search-find-file-for-text-string/">source and more info</a>)</p>
<p><strong>Find an replace a string in files:</strong><br />
Searching for a way to do this usually leads me to finding fancy scripts that don&#8217;t work right, are scary (create temp files, etc) or aren&#8217;t recursive. Just have backups at hand and test the following combination of <code>find</code> and <code>sed</code> before unleashing it, because it works great! You can test it by replacing <code>sed</code> with <code>grep</code></p>
<pre>find ./ -type f -exec sed -i ’s/string1/string2/’ {} \;</pre>
<p>Within specific file names/extentions&#8230;</p>
<pre>find ./ -iname \*.htm\* -exec sed -i 's/\-2005/\-2007/g' {} \;</pre>
<p>Don&#8217;t forget to use escape \ as seen above. And if your strings contain forward slash / just use a different delimiter such as pipe | or escape it.</p>
<p>You can also install rpl, as shown in the source pdf, for even cleaner line of code for executing your find and replace.</p>
<p>(<a href="http://www.sb.fsu.edu/~xray/Manuals/Search+Replace-v.2.pdf">source and more info</a>) A nice pdf to keep by your side.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/10/find-text-and-findreplace-easier-than-you-think-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Dropbox on Ubuntu (and others)</title>
		<link>http://www.usefulgeek.com/blog/2009/10/installing-dropbox-on-ubuntu-and-others/</link>
		<comments>http://www.usefulgeek.com/blog/2009/10/installing-dropbox-on-ubuntu-and-others/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 13:12:27 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=148</guid>
		<description><![CDATA[I&#8217;ve been using dropbox to sync and share files between my various computers for quite some time, and overall have been very pleased.  However, one area things are not so great&#8230; documentation for installation on Linux.  After having to reinstall on my notebook, I decided to somewhat document the hidden part of the process. After [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a title="getdropbox" href="https://www.getdropbox.com/">dropbox</a> to sync and share files between my various computers for quite some time, and overall have been very pleased.  However, one area things are not so great&#8230; documentation for installation on Linux.  After having to reinstall on my notebook, I decided to somewhat document the hidden part of the process.</p>
<p>After downloading the .deb (or other package) and installing, <a href="https://www.getdropbox.com/downloading">dropbox instructions</a> leave you hanging.  There is no dropbox folder, there is no daemon running, nothing.  The next step is simply to run <code>dropbox start -i</code> to install the daemon and launch the process to move forward.  It&#8217;s simple, easy and poorly documented.  Maybe dropbox should add this to the end of their install instructions?</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/10/installing-dropbox-on-ubuntu-and-others/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

