Created
May 22, 2024 18:42
-
-
Save auser/b51d4b26354ec959f97b07e68817ab5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# untar the ova | |
tar -xvf [path-to-ova] | |
# Convert to qcow2 | |
qemu-img convert -O qcow2 jangow\ 01-disk001.vmdk jangow.qcow2 | |
# Create a new machine in UTM | |
# Select emulated | |
# Select custom | |
# Skip ISO boot | |
# Continue and save | |
# Go to settings | |
# Go to Drives | |
# Delete the IDE drive | |
# Create a new drive | |
# Select "import" | |
# Select the qcow2 | |
# Next | |
# Go to the QEMU tab | |
# UNSELECT UEFI Boot | |
# Save and run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment