Recent content by hamuto

  1. H

    Cloudinit not used by VM created by QEMU

    I have a CentOS VM that need to be used with `cloudinit`. Using libvirt, I am creating VM on Proxmox with Scaleway. I have an ansible file that create a VM name CentOS_Base, the most important commands are: # Downloading a CentOS-7-x86_64-GenericCloud-1809.qcow2 curl...
  2. H

    [SOLVED] QEMU fail to boot Virtual Machine failed : Could not read from CD ROM

    What I wanted to do was: qm create 9007 --name CentOS-vm1 --memory 2048 --net0 virtio,bridge=vmbr1 --serial0 socket --vga serial0 -ide2 GlusterFs:iso/cidata.iso -ostype l26 -sockets 1 -cores 2 -cpu host -numa 1 qm importdisk 9007 CentOS_Base.qcow2 GlusterFS -format qcow2 qm set 9007 --scsi0...
  3. H

    [SOLVED] QEMU fail to boot Virtual Machine failed : Could not read from CD ROM

    Yes that exactly what the problem. The qm importdisk command create an unesed disk, that I can set to scis1 and after changing the boot order to scis1, I can finally boot. But how can I attach the CentOS_Base.qcow2 image to the scis0 boot disk?
  4. H

    [SOLVED] QEMU fail to boot Virtual Machine failed : Could not read from CD ROM

    Using libvirt, I am creating VM on Proxmox with Scaleway. I have an ansible file that create a VM name CentOS_Base, the most important commands are: # Downloading a CentOS-7-x86_64-GenericCloud-1809.qcow2 curl https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1809.qcow2 #...