You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are not using the static build as explained in the next chapter, your system needs libfuse > v3.2.1.
On Fedora: dnf install fuse3-devel
On Ubuntu > v19.04: apt install libfuse3-dev
Also, please note that, when using fuse-overlayfsfrom a user namespace
(for example, when using rootless podman) a Linux Kernel > v4.18.0 is required.
Static Build:
This project provides a convenient way to automatically perform a static build using a container.
The result is a self-contained binary without dependencies, that can be copied across hosts.
Both the build and deploy host require the special device /dev/fuse; there are a few ways to obtain it:
install fuse2 or fuse3 using the package manager of your choice (dnf, apt, pacman, etc):
the install script will usually create the device automatically; or
manually create the device with the command mknod /dev/fuse -m 0666 c 10 229
(see this code)
Clone this repository, and switch to the top-level folder containing the file "Containerfile.static.ubuntu";
Launch the build with the command (note the single dot . at the end):