| 12345678910111213 |
- virt-install \
- --name my-spice-vm \
- --ram 2048 \
- --vcpus 2 \
- --disk path=/var/lib/libvirt/images/my-vm.qcow2,size=20 \
- --os-type linux \
- --os-variant detect=on \
- --location /home/creylopez/VM/ubuntu-22.04.5-live-server-amd64.iso,initrd=/casper/initrd,kernel=/casper/vmlinuz \
- --graphics spice,listen=0.0.0.0 \
- --video qxl \
- --console pty,target_type=serial \
- --noautoconsole
|