[libvirt-php] libvirt_domain_new Create a slow vm

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I've tested this script on centos 6.5 (libvirt-0.10.2, qemu-kvm-0.12.1.2) and 
ubuntu server 14.04 (libvirt 1.2.2, qemu-kvm  2.0.0) with the same result.
The created vm is very slow compared to the vm created with virt-manager, with the same features/devices on the same host.
Can you suggest any configuration that can avoid that slowness?

With regards
Mario D.


<?php
$conn = libvirt_connect('null', false);
$name="testvm";
$arch="x86_64";
$memMB=1024;
$maxmemMB=1536;
$vcpus=1;
$iso_image="/home/iso/CentOS-6.5-x86_64-minimal.iso";
$disk1 = array(
                "path"   => "/home/vm/centos-script.raw",
                "driver" => "raw",
                "bus"    => "virtio",
                "dev"    => "hda",
                "size"   => "6G",
                "flags"  => VIR_DOMAIN_DISK_FILE | VIR_DOMAIN_DISK_ACCESS_ALL );

$disks = array( $disk1 );
$network1 = array(
                'mac'     => '00:11:22:33:44:55',
                'network' => 'default',
                'model'   => 'e1000'
                );

$networks = array( $network1 );
$flags=VIR_DOMAIN_FLAG_FEATURE_ACPI;

$newdom=libvirt_domain_new($conn, $name, $arch, $memMB, $maxmemMB, $vcpus, $iso_image, $disks, $networks, $flags);
print_r($newdom);
?>

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]