From 2db27fab8953dda2d84c1a1082c1ae7d6a09c1e5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 19 Mar 2024 12:35:20 +0100 Subject: [PATCH] docs: tweak install disk example The current example for installing to a disk is slightly inconsistent as the truncated filename and the target in bootc do not match. This trivial commit aligns them. --- docs/src/bootc-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/bootc-install.md b/docs/src/bootc-install.md index 9ba96fb7..b82c0eda 100644 --- a/docs/src/bootc-install.md +++ b/docs/src/bootc-install.md @@ -219,7 +219,7 @@ process, you can create a raw disk image (that can e.g. be booted via virtualiza via e.g.: ```bash -truncate -s 10G exampleos.raw +truncate -s 10G myimage.raw podman run --rm --privileged --pid=host --security-opt label=type:unconfined_t -v /var/lib/containers:/var/lib/containers -v .:/output bootc install to-disk --generic-image --via-loopback /output/myimage.raw ```