To build mount-zip, you need the following libraries:
On Debian systems, you can get these libraries by installing the following packages:
$ sudo apt install libboost-container-dev libicu-dev libfuse3-dev libzip-devFor compatibility reasons, mount-zip can optionally use the old FUSE 2 library libfuse >= 2.9. On Debian systems, you can install FUSE 2 by installing the following package:
$ sudo apt install libfuse-devTo build mount-zip, you also need the following tools:
- C++20 compiler (g++ or clang++)
- pkg-config
- GNU make
- Pandoc to generate the man page
On Debian systems, you can get these tools by installing the following packages:
$ sudo apt install g++ pkg-config make pandocTo test mount-zip, you also need the following tools:
umount- Python >= 3.8
On Debian systems, you can get these tools by installing the following packages:
$ sudo apt install mount python3$ make$ DEBUG=1 make$ FUSE_MAJOR_VERSION=2 make$ make check$ make check-fast$ sudo make install$ sudo make uninstall