7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/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
|