From af9941ba2b3c73123cfbe8a0bb63d9735556161e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Wed, 21 Dec 2022 10:43:38 +0100 Subject: [PATCH] fix #4422: correct hdiutil parameter order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the input file has to come as first positional argument. Signed-off-by: Fabian Grünbichler --- pve-installation-media.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pve-installation-media.adoc b/pve-installation-media.adoc index d1a4a6c..0e6bb37 100644 --- a/pve-installation-media.adoc +++ b/pve-installation-media.adoc @@ -74,7 +74,7 @@ Convert the `.iso` file to `.dmg` format using the convert option of `hdiutil`, for example: ---- -# hdiutil convert -format UDRW -o proxmox-ve_*.dmg proxmox-ve_*.iso +# hdiutil convert proxmox-ve_*.iso -format UDRW -o proxmox-ve_*.dmg ---- TIP: macOS tends to automatically add '.dmg' to the output file name.