12

I want to simply be able to explore a dropbox filesystem, without much additional load on CPU, memory, storage (i.e., without saving copies of the remote files locally). It seems that the official client consumes much reosurces (and would do unneccessary operations like syncing) -- http://www.lowendtalk.com/discussion/3179/dropbox-memory-usage-on-linux.

Can one simply mount it (say, with FUSE, and without copying the files locally) and explore the files with the usual Unix utilities (ls, du, cp)? (I wanted something similar for public.me.com: wget -r-like or FUSE.)

Dropbox-Uploader (a bash script using dropbox API to access it) could help to access dropbox in a Unix way. But unfortunately it doesn't support recursive downloading of directories (like wget -r), that's why I'd rather have a FUSE wrapper on top of it.

imz -- Ivan Zakharyaschev
  • 15,113
  • 15
  • 61
  • 123

3 Answers3

8

FUSE Filesystem 4 Dropbox can be found here: https://github.com/realriot/ff4d

  • 1
    Welcome to Unix & Linux Stack Exchange! Whilst this may theoretically answer the question, [it would be preferable](http://meta.stackoverflow.com/q/8259) to include the essential parts of the answer here, and provide the link for reference. – slm May 09 '14 at 13:11
2

Similar to DropFuse, you have also FuseDropbox: http://sourceforge.net/projects/fusedropbox/

0

There is a project on GitHub

It's pretty old, but seems to address your issue.

lmcanavals
  • 1,174
  • 1
  • 10
  • 22
Mark Cohen
  • 1,352
  • 9
  • 12