bzt 36d89da4c1 Initial commit | 11 månader sedan | |
---|---|---|
.. | ||
fsck | 11 månader sedan | |
mkfs | 11 månader sedan | |
src | 11 månader sedan | |
LICENSE | 11 månader sedan | |
Makefile | 11 månader sedan | |
README.md | 11 månader sedan | |
build.mak | 11 månader sedan |
Archived from: https://github.com/redcap97/fuse-mfs
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.