6

Anybody know how to use DropBox cloud storage from the Linux file system (that is, access the files through the file system without storing them locally, as opposed to the normal method of storing a local copy and synchronizing it)? I can find a Windows Shell extension project for DropBox. How about Linux? Or, do you know any other Cloud storage solution which allows mounting as Linux file system.

I want to use my Cloud storage from Linux as like normal files in local HDD without any web user interface.

0

2 Answers 2

3

I found one solution. FUSE is my option to consider. By using it, I think I can implement user level file system for DropBox.

In fact, it's already support file system for Box.net Cloud Storage. Please check about this :

http://code.google.com/p/boxfs/

8
  • 1
    That is nice, but just so you know, it's completely unnecessary. Dropbox does not mount; it syncs. Install the Linux client for Dropbox and tell it what folder you want to sync, and changes made locally are synced remotely. This is done asynchronously and automatically, with absolutely no user intervention required as long as the client is active. Commented Mar 21, 2012 at 20:22
  • 2
    Thanks for your comment. I wanted to use Cloud based storage from the embedded device which has Linux O.S. and FUSE was good solution to achieve my goal. I think my question was too obscure.
    – Wonil
    Commented Mar 24, 2012 at 8:23
  • 1
    Drop box requires X to install. On a headless embedded device, your solution is better. Next time you should be mire clear about what makes your needs unique to improve the quality of your answers. Commented Mar 24, 2012 at 18:48
  • 5
    There is (now) a Dropbox daemon that can run on a headless server. I've used it and it's pretty slick. dropbox.com/install?os=lnx
    – sep332
    Commented Jul 26, 2012 at 18:25
  • There appear to be multiple solutions using Fuse, but none of them actually seems good. One of the ones I found was vaporware, one stored passwords in plaintext, and one (DropFuse) attempted to cache all the files, making it useless if the point is to not use the disk.
    – Daniel H
    Commented May 31, 2013 at 1:52
0

Dropbox doesn't "mount", it just synchronizes, like rsync. Mounting requires a whole host of additional operations, such as locking and random access, which I doubt have support from the Dropbox server.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .