Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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
```