Dear, It's possible actívate physical cdrom in virt-manager oracle linux 7? Best Regards Carlos Codriansky carlos@xxxxxxxx Teléfono : +56 22 894 8012 Celular : 8 946 0454 www.nubadmin.com -----Mensaje original----- De: virt-tools-list-bounces@xxxxxxxxxx [mailto:virt-tools-list-bounces@xxxxxxxxxx] En nombre de virt-tools-list-request@xxxxxxxxxx Enviado el: jueves, 23 de abril de 2015 13:00 Para: virt-tools-list@xxxxxxxxxx Asunto: virt-tools-list Digest, Vol 70, Issue 18 Send virt-tools-list mailing list submissions to virt-tools-list@xxxxxxxxxx To subscribe or unsubscribe via the World Wide Web, visit https://www.redhat.com/mailman/listinfo/virt-tools-list or, via email, send a message with subject or body 'help' to virt-tools-list-request@xxxxxxxxxx You can reach the person managing the list at virt-tools-list-owner@xxxxxxxxxx When replying, please edit your Subject line so it is more specific than "Re: Contents of virt-tools-list digest..." Today's Topics: 1. Re: virt-manager: Switching between kvm and plain qemu (Cole Robinson) 2. [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. (Giuseppe Scrivano) 3. Re: [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. (Cole Robinson) 4. Re: [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. (Giuseppe Scrivano) 5. Re: virt-manager: Switching between kvm and plain qemu (Pavel Fedin) ---------------------------------------------------------------------- Message: 1 Date: Wed, 22 Apr 2015 12:09:51 -0400 From: Cole Robinson <crobinso@xxxxxxxxxx> To: Pavel Fedin <p.fedin@xxxxxxxxxxx>, virt-tools-list@xxxxxxxxxx Subject: Re: virt-manager: Switching between kvm and plain qemu Message-ID: <5537C7CF.3080103@xxxxxxxxxx> Content-Type: text/plain; charset=us-ascii On 04/22/2015 03:26 AM, Pavel Fedin wrote: > Hello! > In virt-manager v0.9 it was possible to switch between qemu > (interpreter > mode) and KVM when creating new ARM virtual machine. In v1 this > possibility is gone, and it always attempts to create KVM-based > machine. This is bad because not everything can be done with KVM. The > limitation of KVM is that guest CPU should be the same as host one. > For example, i cannot run ARMv5 guest (like Integrator) on Cortex-A15 > host using KVM. This gets especially nasty because virt-manager > attempts to instantly run just created machine, and if running fails > (it does in this case) it simply refuses to create it, so that i cannot use virsh in order to fix it up. > There is still "Virtualization type" selector widget, but it is > hidden if there is only one choice. For testing purposes i tried to > force-enable it, and it lists only 'qemu'. virt-manager somehow substitutes this with "kvm" > by itself. > Can old behavior (choice between "kvm" and "qemu" variants) be restored ? > > Kind regards, > Pavel Fedin > Expert Engineer > Samsung Electronics Research center Russia Can you file a bug report against upstream virt-manager? https://virt-manager.org/bugs/ Thanks, Cole ------------------------------ Message: 2 Date: Wed, 22 Apr 2015 18:49:26 +0200 From: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> To: virt-tools-list@xxxxxxxxxx Subject: [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. Message-ID: <1429721366-23606-1-git-send-email-gscrivan@xxxxxxxxxx> Just check for the prefix of the machine type, as it is done for ARM vexpress. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1212021 Signed-off-by: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> --- virtinst/osxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtinst/osxml.py b/virtinst/osxml.py index 77643dd..77771bd 100644 --- a/virtinst/osxml.py +++ b/virtinst/osxml.py @@ -64,7 +64,7 @@ class OSXML(XMLBuilder): def is_arm_vexpress(self): return self.is_arm() and str(self.machine).startswith("vexpress-") def is_arm_machvirt(self): - return self.is_arm() and self.machine == "virt" + return self.is_arm() and str(self.machine).startswith("virt") def is_ppc64(self): return self.arch == "ppc64" or self.arch == "ppc64le" -- 2.1.0 ------------------------------ Message: 3 Date: Wed, 22 Apr 2015 13:03:01 -0400 From: Cole Robinson <crobinso@xxxxxxxxxx> To: Giuseppe Scrivano <gscrivan@xxxxxxxxxx>, virt-tools-list@xxxxxxxxxx Subject: Re: [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. Message-ID: <5537D445.30701@xxxxxxxxxx> Content-Type: text/plain; charset=us-ascii On 04/22/2015 12:49 PM, Giuseppe Scrivano wrote: > Just check for the prefix of the machine type, as it is done for ARM > vexpress. > > Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1212021 > > Signed-off-by: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> > --- > virtinst/osxml.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/virtinst/osxml.py b/virtinst/osxml.py > index 77643dd..77771bd 100644 > --- a/virtinst/osxml.py > +++ b/virtinst/osxml.py > @@ -64,7 +64,7 @@ class OSXML(XMLBuilder): > def is_arm_vexpress(self): > return self.is_arm() and str(self.machine).startswith("vexpress-") > def is_arm_machvirt(self): > - return self.is_arm() and self.machine == "virt" > + return self.is_arm() and str(self.machine).startswith("virt") > > def is_ppc64(self): > return self.arch == "ppc64" or self.arch == "ppc64le" > ACK - Cole ------------------------------ Message: 4 Date: Wed, 22 Apr 2015 19:09:39 +0200 From: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> To: Cole Robinson <crobinso@xxxxxxxxxx> Cc: virt-tools-list@xxxxxxxxxx Subject: Re: [PATCH virt-manager] aarch64: support virt-rhelsa7.1 machine type. Message-ID: <87vbgof5t8.fsf@xxxxxxxxxx> Content-Type: text/plain Cole Robinson <crobinso@xxxxxxxxxx> writes: > On 04/22/2015 12:49 PM, Giuseppe Scrivano wrote: >> Just check for the prefix of the machine type, as it is done for ARM >> vexpress. >> >> Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1212021 >> >> Signed-off-by: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> >> --- >> virtinst/osxml.py | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/virtinst/osxml.py b/virtinst/osxml.py >> index 77643dd..77771bd 100644 >> --- a/virtinst/osxml.py >> +++ b/virtinst/osxml.py >> @@ -64,7 +64,7 @@ class OSXML(XMLBuilder): >> def is_arm_vexpress(self): >> return self.is_arm() and str(self.machine).startswith("vexpress-") >> def is_arm_machvirt(self): >> - return self.is_arm() and self.machine == "virt" >> + return self.is_arm() and str(self.machine).startswith("virt") >> >> def is_ppc64(self): >> return self.arch == "ppc64" or self.arch == "ppc64le" >> > > ACK thanks, pushed now. Giuseppe ------------------------------ Message: 5 Date: Thu, 23 Apr 2015 10:19:37 +0300 From: Pavel Fedin <p.fedin@xxxxxxxxxxx> To: "'Cole Robinson'" <crobinso@xxxxxxxxxx>, virt-tools-list@xxxxxxxxxx Subject: Re: virt-manager: Switching between kvm and plain qemu Message-ID: <"00ba01d07d95$db59d100$920d7300$@fedin"@samsung.com> Content-Type: text/plain; charset=us-ascii Hello! > Can you file a bug report against upstream virt-manager? Done: https://bugzilla.redhat.com/show_bug.cgi?id=1214592 Kind regards, Pavel Fedin Expert Engineer Samsung Electronics Research center Russia ------------------------------ _______________________________________________ virt-tools-list mailing list virt-tools-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/virt-tools-list End of virt-tools-list Digest, Vol 70, Issue 18 *********************************************** ----- Se certificó que el correo no contiene virus. Comprobada por AVG - www.avg.es Versión: 2015.0.5863 / Base de datos de virus: 4334/9606 - Fecha de la versión: 23/04/2015 _______________________________________________ virt-tools-list mailing list virt-tools-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/virt-tools-list