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
UPDATE:05/09/2022
Use the qemu-img command to resize the qcow2 image in the bundle that
UTM will great in ~/Library/Containers/com.utmapp.UTM/Data/Documents
To resize qcow2 image to 64GB
qemu-img resize .qcow2 64G
To update the root partition we need first to find it.
$findmnt / -o source -n
Next step is to start parted
$parted /dev/xxx
ex. Parted /dev/vda
(Parted) print
(Parted) resizepart
1) It will ask for the number of your partition you like to resize
2) Confirm
3) Set end in MB or %
ex. 100% to make the root partition to use everything.
4) q (quit parted)
5) resize2fs /dev/xxx
ex. resize2fs /dev/vda2
This discussion was converted from issue #4368 on September 04, 2022 19:54.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This is not a feature request but more a guide how to install an image from Manjaro with a Apple Silicon.
Setup Manjaro.pdf
UPDATE:05/09/2022
Use the qemu-img command to resize the qcow2 image in the bundle that
UTM will great in ~/Library/Containers/com.utmapp.UTM/Data/Documents
To resize qcow2 image to 64GB
qemu-img resize .qcow2 64G
To update the root partition we need first to find it.
$findmnt / -o source -n
Next step is to start parted
$parted /dev/xxx
ex. Parted /dev/vda
(Parted) print
(Parted) resizepart
1) It will ask for the number of your partition you like to resize
2) Confirm
3) Set end in MB or %
ex. 100% to make the root partition to use everything.
4) q (quit parted)
5) resize2fs /dev/xxx
ex. resize2fs /dev/vda2
You could include that if you want in UTM.
Beta Was this translation helpful? Give feedback.
All reactions