Esempio n. 1
0
 private void Reset()
 {
     type            = Domain_Types.qemu;//default is software emulation of hardware, which is slow, but i am testing vm within a VM and its my only choice-- DEAL WITH IT!
     Metadata        = new General_Metadata();
     BootLoader      = new BIOS_Bootloader();
     CPU             = new CPU_Layout();
     Memory          = new Memory_Allocation();
     System_Features = new Features();
     Iface           = new Iface();
     clock           = Clock_Types.utc;// utc for everything except windows which uses localtime
     Drives          = new Libvirt.Models.Concrete.Drive_Collection();
     graphics        = new Graphics();
     emulator        = "/usr/bin/qemu-system-x86_64";
 }
 private void Reset()
 {
     type = Domain_Types.qemu;//default is software emulation of hardware, which is slow, but i am testing vm within a VM and its my only choice-- DEAL WITH IT!
     Metadata = new General_Metadata();
     BootLoader = new BIOS_Bootloader();
     CPU = new CPU_Layout();
     Memory = new Memory_Allocation();
     System_Features = new Features();
     Iface = new Iface();
     clock = Clock_Types.utc;// utc for everything except windows which uses localtime
     Drives = new Libvirt.Models.Concrete.Drive_Collection();
     graphics = new Graphics();
     emulator = "/usr/bin/qemu-system-x86_64";
 }