fuse-mfs is FUSE-based Minix3 Filesystem.
fuse-mfs /path/to/image_file /path/to/mountpoint/
# GNU/Linux
fusermount -u /path/to/mountpoint/
# Mac OS X
umount /path/to/mountpoint/
mkfs.mfs /path/to/image_file
fsck.mfs /path/to/image_file
fsck.mfs -r /path/to/image_file
apt-get install build-essential pkg-config fuse libfuse-dev
pacman -S --needed base-devel fuse
Command Line Tools for Xcode and FUSE for OS X are required. Please also install the following packages.
brew install pkg-config coreutils
# Build
make
# Install to /usr/local
make install
# Install to /usr
make install PREFIX=/usr
# Build
make
# Install to /usr/local
make install INSTALL=ginstall
# Install to /usr
make install INSTALL=ginstall PREFIX=/usr
Docker is required to run tests.
make test
fuse-mfs uses code from the following open-source projects:
fuse-mfs is distributed under the BSD License. See LICENSE file.