Nice idea, but people have been asking (and voting) for a Dropbox Linux ARM client for many many years, but all the requests fall on deaf earscheery wrote:Might be too early for dropbox to set in.. but who knows ask them whether they can provide support now.
Yup https://www.dropbox.com/androidsharix wrote:But my armv6 android phone has dropbox.
Yep, your android OS can do something that a bare Linux OS cannot do. I know at the end of the day, Android is just a fancy GUI and assorted ins and outs on top of linux, but it really does make a difference. Just because something runs on one doesn't mean instant compatibility for the other.sharix wrote:But my armv6 android phone has dropbox.
There's also a WebDAV addon available for Dropbox http://dropdav.com/ which I guess would work in the same way.gkmanning wrote:Not Dropbox but you can follow the instructions here to mount box.com as a network drive on your R-pi.
http://linuxfordummies.org/mount-your-b ... -in-linux/
Unless you use the sdk to build exactly that. Easy enough to do in Node.jsAndrewS wrote:Yup. But using the SDK effectively gives you a FTP-like interface, which isn't what people expect when they ask for a Dropbox client - they want the standard 2-way automatic file synchronization (with speedy delta-transfers) that Dropbox on the desktop (or headless x86 Linux) offers
Which is exactly what the DropDAV I linked to earlier does. But Otixo looks cheaper than DropDAVtawalker wrote:What particularly interests me with Otixo, is that it also provides access to your files on these services as a WebDAV share. I don't know about Debian, but in the Arch "extra" repository, there's a filesystem driver called davfs (named "davfs2" for installation), which allows you to mount a WebDAV share directly into the Pi's filesystem.
The Dropbox SDK only uploads/downloads entire files, not file-deltas. And I'd love to hear how a server-side Node.js script is supposed to automatically spot when a file on your Raspi has changed?ferik wrote:Unless you use the sdk to build exactly that. Easy enough to do in Node.jsAndrewS wrote:Yup. But using the SDK effectively gives you a FTP-like interface, which isn't what people expect when they ask for a Dropbox client - they want the standard 2-way automatic file synchronization (with speedy delta-transfers) that Dropbox on the desktop (or headless x86 Linux) offers
Yes, but that's change-deltas, not file-deltas. If you only change 1KB in a 50MB file, the traditional Dropbox desktop clients only need to transfer the small part of the file that actually changed, but using the Dropbox API you have to transfer the whole 50MB all over again.Also the Dropbox API does deltas