diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2025-06-08 14:45:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-08 14:45:34 +0300 |
commit | ba548d828d8680ebe329ea1bb2d069ec881066a5 (patch) | |
tree | 27af010adc569eda1d6d9c02326c10bbe40d715b /README.md | |
parent | a276dbe66faaf7af02d967a648f7598589bf5c5b (diff) | |
parent | 2dce69c4dea0bcb9e98c2965e6ac6b25402fcae9 (diff) | |
download | bindfs-ba548d828d8680ebe329ea1bb2d069ec881066a5.tar.gz |
Merge pull request #161 from mpartel/fix-gh-actions
Fix GitHub actions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -17,6 +17,10 @@ Some things bindfs can be used for: Non-root users can use almost all features, but most interesting use-cases need `user_allow_other` to be defined in `/etc/fuse.conf`. +bindfs is developed and tested primarily on Linux with [FUSE 3](https://github.com/libfuse/libfuse). + +Support for Linux with FUSE 2, for MacOS with [fuse-t](https://www.fuse-t.org/) and for FreeBSD with [fuse4bsd](http://www.freshports.org/sysutils/fusefs-kmod/) is best-effort. +[MacFUSE](https://macfuse.github.io/) might work, but is not properly supported, since it's impossible to test it without access to a physical Mac. Volunteer maintenance of MacFUSE support is welcome. ## Installation ## @@ -25,7 +29,9 @@ FUSE 3 is supported. When using FUSE 3, libfuse 3.10.2 or newer is recommended to avoid a [bug with readdir](https://github.com/libfuse/libfuse/issues/583), though it only seems to affect a few applications. -To compile from source on Linux, first `apt install build-essential pkg-config libfuse3-dev` (or `libfuse-dev` on older systems). On MacOS, install XCode (and let it install Developer Tools), [pkg-config](https://formulae.brew.sh/formula/pkg-config#default) and either [MacFuse](https://osxfuse.github.io/) or [fuse-t](https://www.fuse-t.org/). +To compile from source on Linux, first `apt install build-essential pkg-config libfuse3-dev` (or `libfuse-dev` on older systems). +On MacOS, install XCode (and let it install Developer Tools), [pkg-config](https://formulae.brew.sh/formula/pkg-config#default) +and [fuse-t](https://www.fuse-t.org/) ([MacFuse](https://osxfuse.github.io/) support is highly best-effort). Download a [release](https://bindfs.org/downloads/) or clone this repository. |