From 35adcceb59dc15aba55051ddc4d88e26310309f2 Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Wed, 1 Jan 2025 00:32:04 +1100 Subject: [PATCH] podman_bootstrap.sh: add libfuse3-dev and pkg-config for Ubuntu Noble These were needed to bootstrap on a fairly fresh Noble install --- podman_bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_bootstrap.sh b/podman_bootstrap.sh index d4a771d..8ef1785 100755 --- a/podman_bootstrap.sh +++ b/podman_bootstrap.sh @@ -218,7 +218,7 @@ ubuntu() sudo "$2" update echo "Installing required packages..." sudo "$2" install \ - podman curl git make fuse3 fuse-overlayfs slirp4netns + podman curl git make pkg-config fuse3 libfuse3-dev fuse-overlayfs slirp4netns if [ "$1" == "qemu" ]; then if [ -z "$(which qemu-system-x86_64)" ]; then echo "Installing QEMU..."