Specify the virtual CD-ROM (ISO) that contains the VirtIO Windows drivers as provided by the Fedora Project. Download the latest ISO from here: https://fedoraproject.org/wiki/Windows_Virtio_Drivers#Direct_download
When installing Windows, you will reach a step where no disk devices will be found. There is an option to browse for drivers on that screen. Click browse and locate the additional CD-ROM in the menu. Inside there will be various folders for the different versions of Windows. Open the folder for the version of Windows you are installing and then select the AMD64 subfolder inside (even if you are on an Intel system, select AMD64). Three drivers will be found. Select them all, click next, and the vDisks you have assigned will appear.
Default network bridge:
foreach ($arrValidBridges as $strBridge) {
echo mk_option($domain_cfg['BRNAME'], $strBridge, $strBridge);
}
?>
Select the name of the network bridge you wish to use as default for your VMs, the setting 'virbr0' will let libvirt create a virtual bridge that utilizes NAT (network address translation) and act as a DHCP server to hand out IP addresses to virtual machines directly.
More optional selections are present when virtual bridges are created under network settings.
NOTE: You can also specify a network bridge on a per-VM basis.
Upon host shutdown:
echo mk_option($domain_cfg['HOSTSHUTDOWN'], 'shutdown', 'Shutdown VMs');
echo mk_option($domain_cfg['HOSTSHUTDOWN'], 'hibernate', 'Hibernate VMs');
?>
When shutting down the server, this defines the action to take upon running VMs. If Hibernate VMs is chosen, the VM will be instructed to hibernate (if supported) otherwise it will attempt a VM shutdown.
VM shutdown time-out:
(int)$var['shutdownTimeout']):?>
exceeds Disk Shutdown =htmlspecialchars($var['shutdownTimeout'])?>s time-out (edit )
When shutting down the server, this defines how long to wait in seconds for graceful VM shutdown before forcing shutdown to continue.
NOTE: It's recommended to shut down guest VMs from within the VM.
Enable PCIe ACS Override:
= mk_option(($boolACSInSyslinux ? '1' : '0'), '0', 'No'); ?>
= mk_option(($boolACSInSyslinux ? '1' : '0'), '1', 'Yes'); ?>
Warning: Use of this setting could cause possible data corruption with certain hardware configurations. Please visit the Lime Technology forums for more information.
A reboot will be required for changes to this setting to take affect.