mirror of https://github.com/apache/cloudstack.git
Add "Other PV" for kvm, to install pv driver in windows:
1. create a VM from iso/template whose guest os type is "Windows*" 2. attach a disk to windows VM 3. install virtio disk driver 4. stop the vm, and create template from it, chose guest os type as "Other PV" 5. create vm from the template created at step 4. Then this vm will have virtio disk, and virtio nic. Need to install virtio nic driver after VM booting up.
This commit is contained in:
parent
d1cfe58c0f
commit
7bbe757d5b
|
|
@ -3165,7 +3165,8 @@ public class LibvirtComputingResource extends ServerResourceBase implements Serv
|
|||
guestOSName.startsWith("Red Hat Enterprise Linux 5.4") ||
|
||||
guestOSName.startsWith("Red Hat Enterprise Linux 5.5") ||
|
||||
guestOSName.startsWith("Red Hat Enterprise Linux 6") ||
|
||||
guestOSName.startsWith("Debian GNU/Linux")
|
||||
guestOSName.startsWith("Debian GNU/Linux") ||
|
||||
guestOSName.startsWith("Other PV")
|
||||
) {
|
||||
return true;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue