// getting-started
Installation
macOS, via Homebrew
brew tap goranb131/ithas-prismafs brew install prismafs
Linux, build from source
git clone <repo-url> cd prismafs make sudo make install
make install places the binary at /usr/local/bin/prismafs and the man page under /usr/local/share/man/man1.
Linux, prebuilt binary
A prebuilt, statically-linked (against libfuse3) x86_64 binary is available as an alternative to building from source. It has no dependency on the host's libfuse3 shared library version. Only glibc, fusermount3, and the kernel FUSE module are required on the target machine.
To install:
mkdir -p ~/.local/bin cp prismafs-<version>-linux-x86_64-static ~/.local/bin/prismafs chmod +x ~/.local/bin/prismafs
Or system-wide:
sudo cp prismafs-<version>-linux-x86_64-static /usr/local/bin/prismafs sudo chmod +x /usr/local/bin/prismafs