Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glensc/docker-apfs-fuse
Build apfs-fuse for Debian 10 (Buster)
https://github.com/glensc/docker-apfs-fuse
Last synced: about 2 months ago
JSON representation
Build apfs-fuse for Debian 10 (Buster)
- Host: GitHub
- URL: https://github.com/glensc/docker-apfs-fuse
- Owner: glensc
- License: bsd-3-clause
- Created: 2021-08-31T19:41:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T18:36:15.000Z (about 1 year ago)
- Last Synced: 2024-10-14T11:39:11.790Z (3 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build apfs-fuse for Debian 10 (Buster)
Builds [apfs-fuse] using Docker buildx. So this is cross plartform, can compile
on macOS and copy binaries to Linux.[apfs-fuse]: https://github.com/sgan81/apfs-fuse
## Building
You need [docker buildx][buildx] to build.
With BuildKit enabled `docker build` is known to work as well.
[buildx]: https://docs.docker.com/buildx/working-with-buildx/
```shell
docker buildx build . -o out
```The resulting binaries are copied to directory "out".
To build for a different platform:
```shell
docker buildx build . -o out-arm --platform=linux/arm
```## Installing
Copy the `apfsutil`, `apfs-fuse` files to target Linux, for example `/usr/local/bin`.
And install dependent libfuse library:
```
apt update && apt install libfuse3-3
```