🟢 🔁 | Simple command-line helper for FUSE filesystems (sshfs, gocryptfs, etc.)
Go to file
2023-10-25 13:57:47 +02:00
_attic Initial import 2023-10-20 11:30:14 +02:00
src feat: add support for more filesystems 2023-10-25 13:57:47 +02:00
.gitignore Initial import 2023-10-20 11:30:14 +02:00
Makefile Initial import 2023-10-20 11:30:14 +02:00
README.md refactor: remove all mentions of vaults, make it generic for fs 2023-10-25 13:57:30 +02:00
shard.lock fix: update generated lockfile 2023-10-25 13:57:17 +02:00
shard.yml fix: rename to mfm and fix close 2023-10-24 12:50:01 +02:00

Minimalist Fuse Manager (MFM)

MFM is a Crystal-lang CLI tailored to simplify the management of encrypted vaults using multiple FUSE filesystems such as sshfs, gocryptfs, httpdirfs, and more. It provides a user-friendly interface, enabling users to smoothly mount and unmount filesystems, obtain filesystem status, and handle errors adeptly.

Prerequisites & Dependencies

Before using MFM, ensure the following tools are installed on your system:

To build from source, you'll also require:

Installation

1. From Source

  1. Clone or download the source code.
  2. Navigate to the source directory.
  3. Execute shards install to obtain dependencies.
  4. Compile using shards build.
  5. Find the compiled binary in the bin directory.

2. Binary Download

You can also fetch a pre-compiled binary version of MFM.

Usage

Command Line Options

Usage: mfm [options]

Global options:
    -c, --config FILE                Define configuration file
    -h, --help                       Showcase this help

Commands:
    create                           Instantiate a new vault
    delete                           Erase an existing vault
    edit                             Adjust the configuration

Configuration

The script harnesses a YAML configuration file, typically located at ~/.config/mfm.yml, which outlines vault names and paths.

YAML File Format

version: "1"

global:
  mountpoint: "/home/user/mnt/{{name}}"

filesystems:
  - type: "gocryptfs"
    name: "Work - SSH Keys"
    encrypted_path: "/home/user/.ssh/keyring.work"

  - type: "sshfs"
    name: "Personal - Media Server"
    remote_user: "user"
    remote_host: "mediaserver.local"
    remote_path: "/mnt/largedisk/music"
    remote_port: 22
  
  # Incorporate more vaults as necessary

Contribution Guidelines

To contribute to MFM:

  1. Fork the Repository: Begin by forking the MFM repository.
  2. Create a Feature Branch: Every feature or fix should reside in distinct branches.
  3. Commit Changes: Commit with expressive messages.
  4. Run Tests: Confirm no functional disruptions.
  5. Push to Your Fork: Transfer changes to your GitHub fork.
  6. Submit a Pull Request: Commence a pull request to the main repo, elaborating on your changes.
  7. Review: Anticipate feedback from maintainers and react suitably.

Contributors are bound by our code of conduct and the terms of the GPL-2 license.

Authors and Contributors

  • Glenn Y. Rolland - Initial Work

Inspired By

License

GNU GPL-2