This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
aix:aix_simulator_x86_qemu [2024/08/27 23:00] manu |
aix:aix_simulator_x86_qemu [2024/08/27 23:53] (current) manu [Test 08/2024] |
||
---|---|---|---|
Line 151: | Line 151: | ||
My disk.img (or aix-hdd.qcow2) is a standard qcow2 compressed image format (100 G) | My disk.img (or aix-hdd.qcow2) is a standard qcow2 compressed image format (100 G) | ||
qemu-img create -f qcow2 aix-hdd.qcow2 100G | qemu-img create -f qcow2 aix-hdd.qcow2 100G | ||
+ | |||
+ | ==== Test 08/2024 ===== | ||
+ | |||
+ | |||
+ | Format the disk in thin provisionning | ||
+ | |||
+ | root@manu-Latitude-5480:/home/manu/Downloads# qemu-img create -f qcow2 aix73.qcow2 50G | ||
+ | |||
+ | root@manu/home/manu/Downloads# qemu-system-ppc64 -cpu POWER9 -machine pseries -m 2048 -serial stdio \ | ||
+ | -drive file=aix73.qcow2,if=none,id=drive-virtio-disk0 \ | ||
+ | -device virtio-scsi-pci,id=scsi -device scsi-hd,drive=drive-virtio-disk0 \ | ||
+ | -cdrom cd_diag73220.iso \ | ||
+ | -netdev tap,id=n1 -device virtio-net,netdev=n1 \ | ||
+ | -prom-env boot-command='boot disk: -s verbose' | ||