8 lines
184 B
Bash
8 lines
184 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
rm ./rootfs.qcow2
|
||
|
rm -rf ./rootfs
|
||
|
mkdir ./rootfs
|
||
|
tar -xf ./jammy-server-cloudimg-amd64-root.tar.xz -C ./rootfs
|
||
|
virt-make-fs --format=qcow2 --size=2000M only rootfs.qcow2
|