Mount your datamanager files into your filesystem.
- A kernel with FUSE support
- A compiled binary.
- A vaild config and session. You can create one using the cli client
You can mount your dataManager files into your local filesystem using <dmount> mountPoint
. Thats it.
--config
use a different configuration file, created by the CLI client or GUI client
--debug
view more informations about the client server process
--debug-fs
view logs for the mount process
Since the way the datamanager stores your files is different than your Operating Systems fs does, the mapping between Dmanager and your OS filetree isn't that easy.
The DManager is built to store files assigned to multiple folders (groups) and your FS (usually) allows to store a file in one folder only. In addition, you (usually) can't have multiple files with the same name in one folder.
The DmanagerFS supports that. This is one of the main differences between Filesystems like ext4 or NTFS and the DataManagerFS.
MountPoint
│ # Namespaces
├── default # The default namespace. Equal to <username>_default
| | # Groups
│ ├── all_files # all files in the default namespace
| | | # Files
│ │ ├── file_in_group1_and_ns_default
│ │ ├── some other file
│ │ ├── settings.json
│ │ ├── Shortcuts
│ │ ├── settings.json
│ │ └── shareShortcuts
│ ├── group1 # Group 1
│ │ ├── file_in_group1_and_ns_default
│ │ └── some other file
│ ├── condig_files
│ │ ├── settings.json
│ │ └── Shortcuts
│ └── Projects
│ ├── settings.json
│ └── shareShortcuts
└── androidApps # androidApps namespace
└── all_files
└── Whatsapp.apk
- Namespaces
- Full support
- Groups
- Full support
- Files
- Listing
- Delete
- Read
- Write
- Move (rename)
- Rename