All Projects → rianhunter → Dbxfs

rianhunter / Dbxfs

Licence: gpl-3.0
User-space file system for Dropbox

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dbxfs

Cryfs
Cryptographic filesystem for the cloud
Stars: ✭ 1,560 (+131.8%)
Mutual labels:  fuse, dropbox, filesystem
Winfsp
Windows File System Proxy - FUSE for Windows
Stars: ✭ 4,071 (+504.9%)
Mutual labels:  fuse, filesystem
Oneupflysystembundle
A Flysystem integration for your Symfony projects.
Stars: ✭ 541 (-19.61%)
Mutual labels:  dropbox, filesystem
Infinit
The Infinit policy-based software-defined storage platform.
Stars: ✭ 363 (-46.06%)
Mutual labels:  fuse, filesystem
redis-fs
Mount a Redis database as a filesystem using fuse.
Stars: ✭ 76 (-88.71%)
Mutual labels:  fuse, filesystem
Jnr Fuse
FUSE implementation in Java using Java Native Runtime (JNR)
Stars: ✭ 266 (-60.48%)
Mutual labels:  fuse, filesystem
Goofys
a high-performance, POSIX-ish Amazon S3 file system written in Go
Stars: ✭ 3,932 (+484.25%)
Mutual labels:  fuse, filesystem
acid-store
A library for secure, deduplicated, transactional, and verifiable data storage
Stars: ✭ 48 (-92.87%)
Mutual labels:  fuse, filesystem
Dokany
User mode file system library for windows with FUSE Wrapper
Stars: ✭ 4,055 (+502.53%)
Mutual labels:  fuse, filesystem
S3fs Fuse
FUSE-based file system backed by Amazon S3
Stars: ✭ 5,733 (+751.86%)
Mutual labels:  fuse, filesystem
Catfs
Cache AnyThing filesystem written in Rust
Stars: ✭ 404 (-39.97%)
Mutual labels:  fuse, filesystem
anyfs
Portable file system for Node
Stars: ✭ 17 (-97.47%)
Mutual labels:  dropbox, filesystem
ext2py
The slowest ext2fs driver ever! (in Python)
Stars: ✭ 14 (-97.92%)
Mutual labels:  fuse, filesystem
Btfs
A bittorrent filesystem based on FUSE.
Stars: ✭ 2,984 (+343.39%)
Mutual labels:  fuse, filesystem
ratarmount
Random Access Read-Only Tar Mount
Stars: ✭ 217 (-67.76%)
Mutual labels:  fuse, filesystem
Webfs
A Filesystem Built On Top of the Web.
Stars: ✭ 307 (-54.38%)
Mutual labels:  dropbox, filesystem
Securefs
Filesystem in userspace (FUSE) with transparent authenticated encryption
Stars: ✭ 518 (-23.03%)
Mutual labels:  fuse, filesystem
webfuse
websocket filesystem based on libfuse
Stars: ✭ 23 (-96.58%)
Mutual labels:  fuse, filesystem
fuse xattrs
add xattrs support using sidecar files.
Stars: ✭ 28 (-95.84%)
Mutual labels:  fuse, filesystem
Svfs
The Swift Virtual File System
Stars: ✭ 375 (-44.28%)
Mutual labels:  fuse, filesystem

dbxfs

dbxfs allows you to mount your Dropbox folder as if it were a local filesystem. It differs from the official Dropbox client in two main ways:

  • Internet connectivity is required for access
  • No disk space is required for access, but will cache if disk space is available

dbxfs has been tested on OpenBSD, Linux, and macOS but it should run on any POSIX system that provides a FUSE-compatible library or has the ability to mount SMB shares. Windows support is coming very soon. It runs on non-x86 architectures like ARM. It doesn't require a specific file system.

It is written for Python 3.5+ and is licensed under the GPLv3.

Disclaimer: dbxfs is not affiliated with Dropbox, Inc.

Installation

If you are on Linux, you must install your OS's FUSE library. On Debian/Ubuntu, install the libfuse2 package, on Fedora install fuse.

Run the following command::

$ pip3 install dbxfs

On Arch Linux and derivatives, you can find it in the AUR as dbxfs <https://aur.archlinux.org/packages/dbxfs>_.

Usage

Use dbxfs like you would use the mount command::

$ dbxfs <mount_point>

To unmount your Dropbox folder on Linux systems, you can use fusermount -u <mount_point>, on all other systems use umount.

You can see the full list of command line options by passing -h to the dbxfs command.

Advanced Access Token Storage

By default dbxfs stores your access token in the system keyring or an encrypted file but you may want to store it in a GPG encrypted file or something else. To do that you must first obtain an access token. You can obtain an access token by creating a personal app on the Dropbox developers app console <https://dropbox.com/developers/apps>_.

Once you have obtained an app token, encrypt it with the program of your choice and store the result somewhere. After that, you must edit the dbxfs config file. You can find the location of the config file by running the following command::

$ dbxfs --print-default-config-file

The config file is a JSON encoded file. Add the following JSON key to the top-level JSON object in that file::

"access_token_command": ["gpg", "--decrypt", "/path/to/access/token/file.gpg"]

Adapt it to a decryption program of your choice. This configuration works great for storing the access token using a OpenPGP card.

Contact

Rian Hunter @cejetvole <https://twitter.com/cejetvole>_

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].