[virt-tools-list] virt-manager : how activate physical cdrom in oracle linux 7?
Carlos Codriansky - Exact
carlos at exact.cl
Thu Apr 23 16:14:35 UTC 2015
Dear,
It's possible actívate physical cdrom in virt-manager oracle linux 7?
Best Regards
Carlos Codriansky
carlos at exact.cl
Teléfono : +56 22 894 8012
Celular : 8 946 0454
www.nubadmin.com
-----Mensaje original-----
De: virt-tools-list-bounces at redhat.com
[mailto:virt-tools-list-bounces at redhat.com] En nombre de
virt-tools-list-request at redhat.com
Enviado el: jueves, 23 de abril de 2015 13:00
Para: virt-tools-list at redhat.com
Asunto: virt-tools-list Digest, Vol 70, Issue 18
Send virt-tools-list mailing list submissions to
virt-tools-list at redhat.com
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 at redhat.com
You can reach the person managing the list at
virt-tools-list-owner at redhat.com
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 at redhat.com>
To: Pavel Fedin <p.fedin at samsung.com>, virt-tools-list at redhat.com
Subject: Re: [virt-tools-list] virt-manager: Switching between kvm and
plain qemu
Message-ID: <5537C7CF.3080103 at redhat.com>
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 at redhat.com>
To: virt-tools-list at redhat.com
Subject: [virt-tools-list] [PATCH virt-manager] aarch64: support
virt-rhelsa7.1 machine type.
Message-ID: <1429721366-23606-1-git-send-email-gscrivan at redhat.com>
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 at redhat.com>
---
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 at redhat.com>
To: Giuseppe Scrivano <gscrivan at redhat.com>,
virt-tools-list at redhat.com
Subject: Re: [virt-tools-list] [PATCH virt-manager] aarch64: support
virt-rhelsa7.1 machine type.
Message-ID: <5537D445.30701 at redhat.com>
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 at redhat.com>
> ---
> 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 at redhat.com>
To: Cole Robinson <crobinso at redhat.com>
Cc: virt-tools-list at redhat.com
Subject: Re: [virt-tools-list] [PATCH virt-manager] aarch64: support
virt-rhelsa7.1 machine type.
Message-ID: <87vbgof5t8.fsf at redhat.com>
Content-Type: text/plain
Cole Robinson <crobinso at redhat.com> 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 at redhat.com>
>> ---
>> 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 at samsung.com>
To: "'Cole Robinson'" <crobinso at redhat.com>,
virt-tools-list at redhat.com
Subject: Re: [virt-tools-list] 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 at redhat.com
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
More information about the virt-tools-list
mailing list