<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<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>dropbox &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/dropbox/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Wed, 04 Mar 2026 10:41:00 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>dropbox &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Case Conflicts in Dropbox for Linux]]></title>
		<link>https://shkspr.mobi/blog/2013/12/case-conflicts-in-dropbox-for-linux/</link>
					<comments>https://shkspr.mobi/blog/2013/12/case-conflicts-in-dropbox-for-linux/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 17 Dec 2013 12:42:20 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[dropbox]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=9316</guid>

					<description><![CDATA[I love Dropbox, I really do.  It sits on my home PC, my laptop, my server, and my Android phones and tablets.  Nothing comes close to it for seamlessly giving my machines access to the same set of files.  It even runs on Linux - well... mostly.  All my devices run Linux, from my Raspberry Pi to my MacBook.  One of the great things about Linux is that is allows for case-sensitive file names.  That …]]></description>
										<content:encoded><![CDATA[<p>I love Dropbox, I really do.  It sits on my home PC, my laptop, my server, and my Android phones and tablets.  Nothing comes close to it for seamlessly giving my machines access to the same set of files.</p>

<p>It even runs on Linux - well... mostly.  All my devices run Linux, from my Raspberry Pi to my MacBook.  One of the great things about Linux is that is allows for case-sensitive file names.  That is, "Bob" is a different file to "bob".</p>

<p>However, lesser Operating Systems can't handle that. So when Dropbox senses two files or directories with the same name but different cases, <a href="https://www.dropbox.com/help/145/en">it mungs them</a>.  Here's an example:</p>

<pre>edent@xubuntu:~/Dropbox/test$ mkdir TESTING
edent@xubuntu:~/Dropbox/test$ mkdir testing
edent@xubuntu:~/Dropbox/test$ ls
TESTING  TESTING (Case Conflict 1)</pre>

<p>That is <em>very</em> frustrating.  And, it seems, there's no way around it.  I understand that Windows would get its knickers in a twist over such shennanigans - but why can't the file corruption happen in the Windows client? Why can't Dropbox leave my sensibly named files alone when they're on a case-sensitive system?</p>

<p>So, it looks like I need to find a new Sync and Store solution - preferably one which respects Linux users.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=9316&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2013/12/case-conflicts-in-dropbox-for-linux/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Installing Calibre PHP]]></title>
		<link>https://shkspr.mobi/blog/2011/11/installing-calibre-php/</link>
					<comments>https://shkspr.mobi/blog/2011/11/installing-calibre-php/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 11:56:20 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[calibre]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=4802</guid>

					<description><![CDATA[(These are mostly notes to myself!)  I love Calibre, it&#039;s the perfect eBook management tool.  It comes with a built in WWW server so you can easily access your library on the go. The only problem is that this really only works if you have a single machine dedicated to Calibre.  For various reasons, I don&#039;t have a single machine.  I have a desktop, laptop, and server.  The Calibre Library is just…]]></description>
										<content:encoded><![CDATA[<p>(These are mostly notes to myself!)</p>

<p>I love Calibre, it's the perfect eBook management tool.  It comes with a built in WWW server so you can easily access your library on the go. The only problem is that this really only works if you have a single machine dedicated to Calibre.  For various reasons, I don't have a single machine.</p>

<p>I have a desktop, laptop, and server.  The Calibre Library is just a database with a set of files and folders - so all three machines sync via DropBox.  As long as I don't have the Calibre program open on my desktop and laptop at the same time, everything is hunky-dory.</p>

<p>However, having Calibre running on the server buggers everything up.  So, I'm using a separate program - <a href="https://web.archive.org/web/20110830132919/https://charles.the-haleys.org/calibre/">Calibre-PHP Content Server</a>.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/11/calibre-php.png" alt="" title="calibre php" width="469" height="341" class="aligncenter size-full wp-image-4804">

<p>Installation was relatively simple, assuming you've already got apache and PHP installed, you'll also need GD, SQLite3, and Smarty.</p>

<p>This was how I installed them on Ubuntu</p>

<pre>sudo apt-get install smarty php5-gd php5-sqlite php5-sqlite3sqlite3
</pre>

<p>Configuration is slightly confusing.  Copy the config_default.php to config_local.php and edit it.</p>

<pre>$config['library_dir'] = '/data/Dropbox/eBooks/Calibre Library';
$config['smarty_dir'] = '/data/smarty-cache';
$config['smarty'] = '/usr/share/php/smarty';
</pre>

<p>The library directory must be readable to the webserver (chmod a+r) and all the directories above it have to be searchable (chmod a+x).</p>

<p>The "smarty_dir" is where the cache is stored. It needs two sub-folders, smarty_cache and smarty_templates_c. Both of these directories must be writable by the webserver.</p>

<p>That <em>should</em> be it.  There's help available at the <a href="http://www.mobileread.com/forums/showthread.php?t=104188">official help thread</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=4802&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/11/installing-calibre-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Remote Storage: Ubuntu One vs Dropbox]]></title>
		<link>https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/</link>
					<comments>https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 04 Mar 2011 16:36:35 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3709</guid>

					<description><![CDATA[I&#039;ve been looking for a way to manage my backups.  Burning DVDs and then leaving them around the house doesn&#039;t strike me as a sensible way to preserve my data any more.  I just want a simple way to thrust my files onto the cloud with the minimum of fuss.  The two big contenders I could find are Ubuntu One and Dropbox.  Both allow me to map a drive and seamlessly sync my files just by copying them …]]></description>
										<content:encoded><![CDATA[<p>I've been looking for a way to manage my backups.  Burning DVDs and then leaving them around the house doesn't strike me as a sensible way to preserve my data any more.  I just want a simple way to thrust my files onto the cloud with the minimum of fuss.</p>

<p>The two big contenders I could find are <a href="https://web.archive.org/web/20111122053844/https://one.ubuntu.com/">Ubuntu One</a> and <a href="http://db.tt/9gtlUat">Dropbox</a>.</p>

<p>Both allow me to map a drive and seamlessly sync my files just by copying them in there.  I don't need to worry about regularly running a "sync" command. Just drag, drop, done.</p>

<h2 id="quick-comparison"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#quick-comparison">Quick Comparison</a></h2>

<table>
<thead>
<tr>
<th></th><th>Ubuntu One</th><th>Dropbox</th>
</tr>
</thead>
<tbody><tr><td>Price per year</td><td>US$29.99 per 20GB</td><td>US$99.99 per 50GB</td>
</tr>
<tr><td>OS Support</td><td>Ubuntu Only. Windows support in beta</td><td>Linux, Windows, Mac</td>
</tr>
<tr><td>Mobile Support</td><td>Music and contact sync only</td><td>Full file support</td>
</tr>
<tr><td>Application support</td><td>Yes, via CouchDB</td><td>Flat filesystem only</td>
</tr>
<tr><td>Security</td><td><a href="https://web.archive.org/web/20110309134908/https://wiki.dropbox.com/TipsAndTricks/TextBasedLinuxInstall">Files stored UNencrypted</a></td><td><a href="https://www.dropbox.com/help/27">All files stored on Dropbox servers are encrypted (AES-256)</a></td>
</tr>
</tbody></table>

<h2 id="there-can-be-only-one"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#there-can-be-only-one">There Can Be Only One</a></h2>

<p>I really <em>really</em> wanted to go with Ubuntu One.  It's cheaper and the money I pay for it would support my favourite Linux distribution.  For US$90 I could get 60GB and feel good about paying for Linux.</p>

<p>But it's not to be.  Dropbox wins on three counts.
<span id="more-3709"></span></p>

<h3 id="mobile"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#mobile">Mobile</a></h3>

<p>Firstly, <a href="https://www.dropbox.com/anywhere">Dropbox Mobile</a> is supported on a wide range of phones.  Sure, I only use Android now, but I may move back to BlackBerry.  Bizarrely, <a href="https://web.archive.org/web/20111011025930/https://one.ubuntu.com/downloads/">Ubuntu One Mobile</a> only works for syncing music and contacts.  So, no pictures, documents, movies. Far too limited for me.</p>

<h3 id="command-line"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#command-line">Command Line</a></h3>

<p>Secondly, command line options.  I run a headless server at home which is primarily used for storing the household's music, movies, and photos.  It runs Xebian - a Debian variant.  Yet it seems that Ubuntu One only works on Ubuntu machines.  While I kind of understand the logic behind that - it's a business limiting decision.
By contrast, <a href="https://web.archive.org/web/20110309134908/https://wiki.dropbox.com/TipsAndTricks/TextBasedLinuxInstall">Dropbox works fine on the command line of just about any Linux distro</a>.</p>

<p>I never run Windows or Mac.  But, I'm sure one day a job will mandate that I do - so it makes sense to go with the one with wider support.</p>

<h3 id="security"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#security">Security</a></h3>

<p>Both services use SSL to encrypt during transmission - but Dropbox uses <a href="https://web.archive.org/web/20110703055010/http://aws.amazon.com/articles/1697?_encoding=UTF8&amp;jiveRedirect=1">Amazon S3 to keep the contents of the files secure</a>.
While I'm sure Amazon has its problems, Ubuntu One doesn't keep its files encrypted and makes no mention of physical security.</p>

<h2 id="other-options"><a href="https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/#other-options">Other Options</a></h2>

<p>I'm aware that I could buy several gigs of space via a cloud server somewhere and treat my filesystem as a giant SVN.  But this has an easy to use front end, paid support, and apps for my mobiles.</p>

<p>That said, if you can convince me there's a better option - please let me know!</p>

<p>You can <a href="http://db.tt/9gtlUat">sign up to Dropbox using my referral link</a> - that way, we both get extra space.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3709&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/03/remote-storage-ubuntu-one-vs-dropbox/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
