[Users] Configure spice plugin for wan

I remember someone talking about an option of setting spice to operate over wan, in the sense that this way automatically it would disable effects in windows 7 VM, ecc... I don't remember if this is a VM parameter, hook or other... Or if this is an option available only in RHEV-M Any pointer? Thanks, Gianluca

On 26/02/2013 15:13, Gianluca Cecchi wrote:
I remember someone talking about an option of setting spice to operate over wan, in the sense that this way automatically it would disable effects in windows 7 VM, ecc... I don't remember if this is a VM parameter, hook or other... Or if this is an option available only in RHEV-M
iirc, it's a checkbox in the user portal to pass the wan option flag to spice.

On Tue, Feb 26, 2013 at 2:47 PM, Itamar Heim wrote:
On 26/02/2013 15:13, Gianluca Cecchi wrote:
I remember someone talking about an option of setting spice to operate over wan, in the sense that this way automatically it would disable effects in windows 7 VM, ecc... I don't remember if this is a VM parameter, hook or other... Or if this is an option available only in RHEV-M
iirc, it's a checkbox in the user portal to pass the wan option flag to spice.
Thanks for answering. I thought this too, but these are the only options I see in User Portal https://docs.google.com/file/d/0BwoPbcrMv8mvZ1NXVG8yb1VqTkk/edit?usp=sharing Gianluca

On 26/02/2013 15:55, Gianluca Cecchi wrote:
On Tue, Feb 26, 2013 at 2:47 PM, Itamar Heim wrote:
On 26/02/2013 15:13, Gianluca Cecchi wrote:
I remember someone talking about an option of setting spice to operate over wan, in the sense that this way automatically it would disable effects in windows 7 VM, ecc... I don't remember if this is a VM parameter, hook or other... Or if this is an option available only in RHEV-M
iirc, it's a checkbox in the user portal to pass the wan option flag to spice.
Thanks for answering. I thought this too, but these are the only options I see in User Portal https://docs.google.com/file/d/0BwoPbcrMv8mvZ1NXVG8yb1VqTkk/edit?usp=sharing
Gianluca
commit ac020ab8229a1edfdb62f69e7bdf01655f70c01b Author: Tomas Jelinek <tjelinek@redhat.com> Date: Wed May 30 15:14:18 2012 +0200 userportal: spice client properties Added the "Enable WAN Options" checkbox to the edit console popup. It is visible, when all of the following conditions are met: - the selected VM is a windows VM - the spice is available - the spice radio button is selected - the spice guest agent is installed on the VM If the above conditions are met, and the checkbox is checked, the "WANDisableEffects" and "WANColorDepth" from the vdc_options table are set to the spice plugin as the "DisableEffects" and "ColorDepth" properties. In other case, nothing is set to the "DisableEffects" and "ColorDepth" properties.

On Tue, Feb 26, 2013 at 4:34 PM, Itamar Heim wrote:
userportal: spice client properties
Added the "Enable WAN Options" checkbox to the edit console popup. It is visible, when all of the following conditions are met: - the selected VM is a windows VM - the spice is available - the spice radio button is selected - the spice guest agent is installed on the VM
If the above conditions are met, and the checkbox is checked, the "WANDisableEffects" and "WANColorDepth" from the vdc_options table are set to the spice plugin as the "DisableEffects" and "ColorDepth" properties.
In other case, nothing is set to the "DisableEffects" and "ColorDepth" properties.
In my case
- the selected VM is a windows VM --> OK - the spice is available --> OK - the spice radio button is selected --> OK
- the spice guest agent is installed on the VM
here on oVirt we don't have the proprietary spice guest agent but spice-guest-tools-0.3.exe that install several things and also spice guest agent (cut and paste works for example) Can we say OK also to the latest point or do I need anything only present in proprietary agent package? In the first case it is a sort of bug (for example the check for agent needs to be changed...?), in the second one ok, I have understood the reason. Thanks, Gianluca

On 27/02/2013 15:19, Gianluca Cecchi wrote:
On Tue, Feb 26, 2013 at 4:34 PM, Itamar Heim wrote:
userportal: spice client properties
Added the "Enable WAN Options" checkbox to the edit console popup. It is visible, when all of the following conditions are met: - the selected VM is a windows VM - the spice is available - the spice radio button is selected - the spice guest agent is installed on the VM
If the above conditions are met, and the checkbox is checked, the "WANDisableEffects" and "WANColorDepth" from the vdc_options table are set to the spice plugin as the "DisableEffects" and "ColorDepth" properties.
In other case, nothing is set to the "DisableEffects" and "ColorDepth" properties.
In my case
- the selected VM is a windows VM --> OK - the spice is available --> OK - the spice radio button is selected --> OK
- the spice guest agent is installed on the VM
here on oVirt we don't have the proprietary spice guest agent but spice-guest-tools-0.3.exe that install several things and also spice guest agent (cut and paste works for example) Can we say OK also to the latest point or do I need anything only present in proprietary agent package? In the first case it is a sort of bug (for example the check for agent needs to be changed...?), in the second one ok, I have understood the reason.
Thanks, Gianluca
this should work for ovirt as well, the check is only that there is no driver:
// If it is not windows or SPICE guest agent is not installed, make sure the WAN options are disabled. if (!getEntity().getvm_os().isWindows() || getEntity().getSpiceDriverVersion() == null) { getspice().setIsWanOptionsEnabled(false); }
and the driver name is based on ConfigValues.SpiceDriverNameInGuest, so please check the value you have there and compare to the name in the guest.
public static void UpdateVmGuestAgentVersion(final VM vm) { if (vm.getAppList() != null) { final String[] parts = vm.getAppList().split("[,]", -1); if (parts != null && parts.length != 0) { final String agentAppName = Config.<String> GetValue(ConfigValues.AgentAppName); final Map<String, String> spiceDriversInGuest = Config.<Map<String, String>> GetValue(ConfigValues.SpiceDriverNameInGuest); final String spiceDriverInGuest = spiceDriversInGuest.get(ObjectUtils.toString(vm.getOs().getOsType()).toLowerCase());
for (final String part : parts) { if (StringUtils.containsIgnoreCase(part, agentAppName)) { vm.setGuestAgentVersion(GetApplicationVersion(part, agentAppName)); } if (StringUtils.containsIgnoreCase(part, spiceDriverInGuest)) { vm.setSpiceDriverVersion(GetApplicationVersion(part, spiceDriverInGuest)); } } }

On Wed, Feb 27, 2013 at 3:03 PM, Itamar Heim wrote:
this should work for ovirt as well, the check is only that there is no driver:
// If it is not windows or SPICE guest agent is not installed, make sure the WAN options are disabled. if (!getEntity().getvm_os().isWindows() || getEntity().getSpiceDriverVersion() == null) { getspice().setIsWanOptionsEnabled(false); }
Sorry for the late feedback.
and the driver name is based on ConfigValues.SpiceDriverNameInGuest, so please check the value you have there and compare to the name in the guest.
How can I check it? On guest side or engine/host side? In the mean time I found a bug in spice-guest-tools-0.3.exe in my opinion. See this screenshot: https://docs.google.com/file/d/0BwoPbcrMv8mvSWx3OGZMUEFVckE/edit?usp=sharing I ran installation from c:\temp and it seems it configured the service as starting from C:\temp\vdagent-win32_20111124\vdagent_x86 so that if I clean my c:\temp dir I loose the agent and service... I'm going to post this to spice-devel mailing list to have some information Where are they supposed to install themselves? Versions of agent and services are here: https://docs.google.com/file/d/0BwoPbcrMv8mvQUVyWFpnLXRHcjA/edit?usp=sharing But I have not understood how to check and compare, sorry.... Can you explain if I have to run any query in engine db or run any command to get these values? Thanks Gianluca

On Sat, Mar 2, 2013 at 11:23 AM, Gianluca Cecchi wrote:
In the mean time I found a bug in spice-guest-tools-0.3.exe in my opinion. See this screenshot: https://docs.google.com/file/d/0BwoPbcrMv8mvSWx3OGZMUEFVckE/edit?usp=sharing
I ran installation from c:\temp and it seems it configured the service as starting from C:\temp\vdagent-win32_20111124\vdagent_x86
so that if I clean my c:\temp dir I loose the agent and service... I'm going to post this to spice-devel mailing list to have some information Where are they supposed to install themselves?
This was my fault as this vm was imported and had already an old agent used in Qemu/KVM before. When I ran spice-guest-tools I thought it would have overwritten the old ones... but it had not. So I deleted the service with sc command, reboot and reinstall spice guest tools, then shutdown and power on again Now I have this for agent version and location tha seems good: https://docs.google.com/file/d/0BwoPbcrMv8mvQkdzSVl3TDBjT0E/edit?usp=sharing But I still have no option for wan optimization in user portal The qemu command line generated when I power on the VM, if it can be of any help, is this: qemu 21145 1 7 11:41 ? 00:00:39 /usr/bin/qemu-kvm -name winxp_clone -S -M pc-0.14 -cpu Opteron_G3 -enable-kvm -m 1024 -smp 1,sockets=1,cores=1,threads=1 -uuid 2981b979-a363-4ab9-a251-439b5774b04d -smbios type=1,manufacturer=oVirt,product=oVirt Node,version=18-1,serial=E0E1001E-8C00-002A-6F9A-90E6BAC9F1E1,uuid=2981b979-a363-4ab9-a251-439b5774b04d -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/winxp_clone.monitor,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=2013-03-02T23:43:40,driftfix=slew -no-shutdown -device ich9-usb-ehci1,id=usb,bus=pci.0,addr=0x5.0x7 -device ich9-usb-uhci3,masterbus=usb.0,firstport=4,bus=pci.0,addr=0x5.0x2 -device ich9-usb-uhci2,masterbus=usb.0,firstport=2,bus=pci.0,addr=0x5.0x1 -device ich9-usb-uhci1,masterbus=usb.0,firstport=0,bus=pci.0,multifunction=on,addr=0x5 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x7 -drive if=none,id=drive-ide0-1-0,readonly=on,format=raw,serial= -device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 -drive file=/rhev/data-center/65c9777e-23f1-4f04-8cea-e7c8871dc88b/0a8035e6-e41d-40ff-a154-e0a374f264b2/images/75c54716-5222-4ad6-91f2-8b312eacc4b4/201a3f12-4b58-49a1-8748-5d5782175e28,if=none,id=drive-virtio-disk0,format=raw,serial=75c54716-5222-4ad6-91f2-8b312eacc4b4,cache=none,werror=stop,rerror=stop,aio=threads -device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x6,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 -netdev tap,fd=27,id=hostnet0,vhost=on,vhostfd=28 -device virtio-net-pci,netdev=hostnet0,id=net0,mac=00:1a:4a:a8:01:52,bus=pci.0,addr=0x3 -chardev socket,id=charchannel0,path=/var/lib/libvirt/qemu/channels/winxp_clone.com.redhat.rhevm.vdsm,server,nowait -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.rhevm.vdsm -chardev socket,id=charchannel1,path=/var/lib/libvirt/qemu/channels/winxp_clone.org.qemu.guest_agent.0,server,nowait -device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel1,id=channel1,name=org.qemu.guest_agent.0 -chardev spicevmc,id=charchannel2,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=3,chardev=charchannel2,id=channel2,name=com.redhat.spice.0 -spice port=5900,tls-port=5901,addr=0,x509-dir=/etc/pki/vdsm/libvirt-spice,tls-channel=main,tls-channel=display,tls-channel=inputs,tls-channel=cursor,tls-channel=playback,tls-channel=record,tls-channel=smartcard,tls-channel=usbredir -k en-us -vga qxl -global qxl-vga.vram_size=67108864 -device AC97,id=sound0,bus=pci.0,addr=0x4 -chardev spicevmc,id=charredir0,name=usbredir -device usb-redir,chardev=charredir0,id=redir0 -chardev spicevmc,id=charredir1,name=usbredir -device usb-redir,chardev=charredir1,id=redir1 -chardev spicevmc,id=charredir2,name=usbredir -device usb-redir,chardev=charredir2,id=redir2 -chardev spicevmc,id=charredir3,name=usbredir -device usb-redir,chardev=charredir3,id=redir3 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x8 Thanks, Gianluca

On 02/03/2013 12:51, Gianluca Cecchi wrote:
On Sat, Mar 2, 2013 at 11:23 AM, Gianluca Cecchi wrote:
In the mean time I found a bug in spice-guest-tools-0.3.exe in my opinion. See this screenshot: https://docs.google.com/file/d/0BwoPbcrMv8mvSWx3OGZMUEFVckE/edit?usp=sharing
the important part is the name of the installed app under application list. user portal will only see it if you have the guest agent installed (which you can validate by checking what you see under the webadmin, standing on the VM, looking at the application list). for name of config value: engine-config -g SpiceDriverNameInGuest
I ran installation from c:\temp and it seems it configured the service as starting from C:\temp\vdagent-win32_20111124\vdagent_x86
so that if I clean my c:\temp dir I loose the agent and service... I'm going to post this to spice-devel mailing list to have some information Where are they supposed to install themselves?
This was my fault as this vm was imported and had already an old agent used in Qemu/KVM before. When I ran spice-guest-tools I thought it would have overwritten the old ones... but it had not. So I deleted the service with sc command, reboot and reinstall spice guest tools, then shutdown and power on again Now I have this for agent version and location tha seems good:
https://docs.google.com/file/d/0BwoPbcrMv8mvQkdzSVl3TDBjT0E/edit?usp=sharing
But I still have no option for wan optimization in user portal
The qemu command line generated when I power on the VM, if it can be of any help, is this:
qemu 21145 1 7 11:41 ? 00:00:39 /usr/bin/qemu-kvm -name winxp_clone -S -M pc-0.14 -cpu Opteron_G3 -enable-kvm -m 1024 -smp 1,sockets=1,cores=1,threads=1 -uuid 2981b979-a363-4ab9-a251-439b5774b04d -smbios type=1,manufacturer=oVirt,product=oVirt Node,version=18-1,serial=E0E1001E-8C00-002A-6F9A-90E6BAC9F1E1,uuid=2981b979-a363-4ab9-a251-439b5774b04d -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/winxp_clone.monitor,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=2013-03-02T23:43:40,driftfix=slew -no-shutdown -device ich9-usb-ehci1,id=usb,bus=pci.0,addr=0x5.0x7 -device ich9-usb-uhci3,masterbus=usb.0,firstport=4,bus=pci.0,addr=0x5.0x2 -device ich9-usb-uhci2,masterbus=usb.0,firstport=2,bus=pci.0,addr=0x5.0x1 -device ich9-usb-uhci1,masterbus=usb.0,firstport=0,bus=pci.0,multifunction=on,addr=0x5 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x7 -drive if=none,id=drive-ide0-1-0,readonly=on,format=raw,serial= -device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 -drive file=/rhev/data-center/65c9777e-23f1-4f04-8cea-e7c8871dc88b/0a8035e6-e41d-40ff-a154-e0a374f264b2/images/75c54716-5222-4ad6-91f2-8b312eacc4b4/201a3f12-4b58-49a1-8748-5d5782175e28,if=none,id=drive-virtio-disk0,format=raw,serial=75c54716-5222-4ad6-91f2-8b312eacc4b4,cache=none,werror=stop,rerror=stop,aio=threads -device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x6,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 -netdev tap,fd=27,id=hostnet0,vhost=on,vhostfd=28 -device virtio-net-pci,netdev=hostnet0,id=net0,mac=00:1a:4a:a8:01:52,bus=pci.0,addr=0x3 -chardev socket,id=charchannel0,path=/var/lib/libvirt/qemu/channels/winxp_clone.com.redhat.rhevm.vdsm,server,nowait -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.rhevm.vdsm -chardev socket,id=charchannel1,path=/var/lib/libvirt/qemu/channels/winxp_clone.org.qemu.guest_agent.0,server,nowait -device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel1,id=channel1,name=org.qemu.guest_agent.0 -chardev spicevmc,id=charchannel2,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=3,chardev=charchannel2,id=channel2,name=com.redhat.spice.0 -spice port=5900,tls-port=5901,addr=0,x509-dir=/etc/pki/vdsm/libvirt-spice,tls-channel=main,tls-channel=display,tls-channel=inputs,tls-channel=cursor,tls-channel=playback,tls-channel=record,tls-channel=smartcard,tls-channel=usbredir -k en-us -vga qxl -global qxl-vga.vram_size=67108864 -device AC97,id=sound0,bus=pci.0,addr=0x4 -chardev spicevmc,id=charredir0,name=usbredir -device usb-redir,chardev=charredir0,id=redir0 -chardev spicevmc,id=charredir1,name=usbredir -device usb-redir,chardev=charredir1,id=redir1 -chardev spicevmc,id=charredir2,name=usbredir -device usb-redir,chardev=charredir2,id=redir2 -chardev spicevmc,id=charredir3,name=usbredir -device usb-redir,chardev=charredir3,id=redir3 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x8
Thanks, Gianluca

On Sat, Mar 2, 2013 at 9:03 PM, Itamar Heim wrote:
the important part is the name of the installed app under application list. user portal will only see it if you have the guest agent installed (which you can validate by checking what you see under the webadmin, standing on the VM, looking at the application list).
for name of config value: engine-config -g SpiceDriverNameInGuest
I begin to think something essential for this is missing in oVirt.
From when I started testing oVirt, I never found anything in applications part of details pane for a VM. This in VMs with Windows XP, Windows 7 and Linux too (tried Fedora and CentOS). See this image for this windows xp. https://docs.google.com/file/d/0BwoPbcrMv8mvWHF6WDgtMEF5Wms/edit?usp=sharing
Possibly the free agent is not capable to get the list of applications installed and pass to webadmin gui.... Or there is another component to install/enable that is not inside the spice-guest-tools-0.3.exe... And also, in my engine that is 3.2 stable from f18 ovirt repo I don't have this kind of key at all... [root@tekkaman ~]# engine-config -g SpiceDriverNameInGuest Error fetching SpiceDriverNameInGuest value: no such entry. Please verify key name and property file support. The available ones are here: [root@tekkaman ~]# engine-config -l | grep -i spice WANDisableEffects: "Disabled WAN Effects value to send to the SPICE console" (Value Type: StringMultiple) WANColorDepth: "WAN Color Depth value to send to the SPICE console" (Value Type: Integer) EnableSpiceRootCertificateValidation: "Enable Spice Root Certification Validation" (Value Type: String) SpiceReleaseCursorKeys: "Keyboard keys combination that causes the mouse cursor to be released from its grab on SPICE" (Value Type: String) SpiceSecureChannels: "SPICE Secure Channels" (Value Type: StringMultiple) SpiceToggleFullScreenKeys: "Keyboard keys combination that toggles the full-screen state of SPICE client window" (Value Type: String) SpiceUsbAutoShare: "Enable USB devices sharing by default in SPICE" (Value Type: String) SSLEnabled: "SPICE SSL Enabled" (Value Type: String) [root@tekkaman ~]# engine-config -a | grep -i spice EnableSpiceRootCertificateValidation: true version: general SpiceReleaseCursorKeys: shift+f12 version: general SpiceSecureChannels: smain,sinputs version: 3.0 SpiceSecureChannels: smain,sinputs,scursor,splayback,srecord,sdisplay,susbredir,ssmartcard version: 3.1 SpiceSecureChannels: smain,sinputs,scursor,splayback,srecord,sdisplay,susbredir,ssmartcard version: 3.2 SpiceToggleFullScreenKeys: shift+f11 version: general SpiceUsbAutoShare: true version: general So the question is if I can add this key you referred and in that case then how to get list of applications transmitted to web admin gui. Thanks for your time Itamar. Gianluca

On 03/03/2013 00:53, Gianluca Cecchi wrote:
On Sat, Mar 2, 2013 at 9:03 PM, Itamar Heim wrote:
the important part is the name of the installed app under application list. user portal will only see it if you have the guest agent installed (which you can validate by checking what you see under the webadmin, standing on the VM, looking at the application list).
for name of config value: engine-config -g SpiceDriverNameInGuest
I begin to think something essential for this is missing in oVirt. From when I started testing oVirt, I never found anything in applications part of details pane for a VM. This in VMs with Windows XP, Windows 7 and Linux too (tried Fedora and CentOS). See this image for this windows xp. https://docs.google.com/file/d/0BwoPbcrMv8mvWHF6WDgtMEF5Wms/edit?usp=sharing
Possibly the free agent is not capable to get the list of applications installed and pass to webadmin gui.... Or there is another component to install/enable that is not inside the spice-guest-tools-0.3.exe...
And also, in my engine that is 3.2 stable from f18 ovirt repo I don't have this kind of key at all...
[root@tekkaman ~]# engine-config -g SpiceDriverNameInGuest Error fetching SpiceDriverNameInGuest value: no such entry. Please verify key name and property file support.
The available ones are here:
[root@tekkaman ~]# engine-config -l | grep -i spice WANDisableEffects: "Disabled WAN Effects value to send to the SPICE console" (Value Type: StringMultiple) WANColorDepth: "WAN Color Depth value to send to the SPICE console" (Value Type: Integer) EnableSpiceRootCertificateValidation: "Enable Spice Root Certification Validation" (Value Type: String) SpiceReleaseCursorKeys: "Keyboard keys combination that causes the mouse cursor to be released from its grab on SPICE" (Value Type: String) SpiceSecureChannels: "SPICE Secure Channels" (Value Type: StringMultiple) SpiceToggleFullScreenKeys: "Keyboard keys combination that toggles the full-screen state of SPICE client window" (Value Type: String) SpiceUsbAutoShare: "Enable USB devices sharing by default in SPICE" (Value Type: String) SSLEnabled: "SPICE SSL Enabled" (Value Type: String)
[root@tekkaman ~]# engine-config -a | grep -i spice EnableSpiceRootCertificateValidation: true version: general SpiceReleaseCursorKeys: shift+f12 version: general SpiceSecureChannels: smain,sinputs version: 3.0 SpiceSecureChannels: smain,sinputs,scursor,splayback,srecord,sdisplay,susbredir,ssmartcard version: 3.1 SpiceSecureChannels: smain,sinputs,scursor,splayback,srecord,sdisplay,susbredir,ssmartcard version: 3.2 SpiceToggleFullScreenKeys: shift+f11 version: general SpiceUsbAutoShare: true version: general
So the question is if I can add this key you referred and in that case then how to get list of applications transmitted to web admin gui.
Thanks for your time Itamar.
Gianluca
1. ok, the config key isn't user editable, not an issue. 2. for ovirt to see list of applications, you need to have the ovirt-guest-agent installed as well, not just the spice one.

On Sun, Mar 3, 2013 at 7:52 AM, Itamar Heim wrote:
1. ok, the config key isn't user editable, not an issue. 2. for ovirt to see list of applications, you need to have the ovirt-guest-agent installed as well, not just the spice one.
Trying to build on windows 7 following git instructions. http://gerrit.ovirt.org/gitweb?p=ovirt-guest-agent.git;a=blob;f=ovirt-guest-... I obtained OVirtGuestService.exe and w9xpopen.exe The instructions say... " Running the service: 32 -------------------- 33 34 > python OVirtGuestService.py -install 35 > net start OVirtGuestService 36 37 Building executable file: 38 ------------------------- 39 40 > python setup.py py2exe -b 1 " I don't understand how to match the instructions with what I got... Can anyone help in this? Gianluca

On Mon, Mar 4, 2013 at 4:37 PM, Gianluca Cecchi wrote:
On Sun, Mar 3, 2013 at 7:52 AM, Itamar Heim wrote:
1. ok, the config key isn't user editable, not an issue. 2. for ovirt to see list of applications, you need to have the ovirt-guest-agent installed as well, not just the spice one.
Trying to build on windows 7 following git instructions. http://gerrit.ovirt.org/gitweb?p=ovirt-guest-agent.git;a=blob;f=ovirt-guest-...
I obtained
OVirtGuestService.exe and w9xpopen.exe
The instructions say... " Running the service: 32 -------------------- 33 34 > python OVirtGuestService.py -install 35 > net start OVirtGuestService 36 37 Building executable file: 38 ------------------------- 39 40 > python setup.py py2exe -b 1
"
I don't understand how to match the instructions with what I got... Can anyone help in this?
Gianluca
So I have to simply run what is written: - Opening a console window as administrator: C:\....> python OVirtGuestService.py install Installing service OVirtGuestService Service installed - Tryng to start the installed service C:\....> net start OVirtGuestService The OVirt Guest Agent Service service is starting. The OVirt Guest Agent Service service could not be started. A service specific error occurred: 1. More help is available by typing NET HELPMSG 3547. but nothing interesting with "NET HELPMSG 3547" for debugging... Gianluca

One problem was setting where to put the .ini file. For now I put it where the python is called and the service starts now. But no ip and no applications are populated even after setting service to auto and restart win7 vm. Where to look for now? Thanks Gianluca

On 03/04/2013 07:59 PM, Gianluca Cecchi wrote:
One problem was setting where to put the .ini file. For now I put it where the python is called and the service starts now. But no ip and no applications are populated even after setting service to auto and restart win7 vm. Where to look for now? Thanks Gianluca
guest agent and vdsm log

This is a multi-part message in MIME format. --------------060902070608020202030304 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, On 03/04/2013 06:59 PM, Gianluca Cecchi wrote:
One problem was setting where to put the .ini file. For now I put it where the python is called and the service starts now. But no ip and no applications are populated even after setting service to auto and restart win7 vm. Where to look for now?
Do you have the virtio-serial drivers installed? If not please do so. Otherwise you might try to restart vdsmd on the host.
Thanks Gianluca
_______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users
-- Regards, Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com --------------060902070608020202030304 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#FFFFFF" text="#000000"> <div class="moz-cite-prefix">Hi,<br> <br> On 03/04/2013 06:59 PM, Gianluca Cecchi wrote:<br> </div> <blockquote cite="mid:CAG2kNCyUsYn3og+NTBD57Gob3FL9yaVhW5pD-6Dmo0WT-qLTfQ@mail.gmail.com" type="cite"> <p dir="ltr">One problem was setting where to put the .ini file.<br> For now I put it where the python is called and the service starts now.<br> But no ip and no applications are populated even after setting service to auto and restart win7 vm.<br> Where to look for now?<br> </p> </blockquote> Do you have the virtio-serial drivers installed?<br> If not please do so.<br> Otherwise you might try to restart vdsmd on the host.<br> <blockquote cite="mid:CAG2kNCyUsYn3og+NTBD57Gob3FL9yaVhW5pD-6Dmo0WT-qLTfQ@mail.gmail.com" type="cite"> <p dir="ltr"> Thanks<br> Gianluca</p> </blockquote> <blockquote cite="mid:CAG2kNCyUsYn3og+NTBD57Gob3FL9yaVhW5pD-6Dmo0WT-qLTfQ@mail.gmail.com" type="cite"> <br> <fieldset class="mimeAttachmentHeader"></fieldset> <br> <pre wrap="">_______________________________________________ Users mailing list <a class="moz-txt-link-abbreviated" href="mailto:Users@ovirt.org">Users@ovirt.org</a> <a class="moz-txt-link-freetext" href="http://lists.ovirt.org/mailman/listinfo/users">http://lists.ovirt.org/mailman/listinfo/users</a> </pre> </blockquote> <br> <br> <pre class="moz-signature" cols="72">-- Regards, Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com</pre> </body> </html> --------------060902070608020202030304--

On Tue, Mar 5, 2013 at 5:12 PM, Vinzenz Feenstra wrote:
Hi,
On 03/04/2013 06:59 PM, Gianluca Cecchi wrote:
One problem was setting where to put the .ini file. For now I put it where the python is called and the service starts now. But no ip and no applications are populated even after setting service to auto and restart win7 vm. Where to look for now?
Do you have the virtio-serial drivers installed? If not please do so. Otherwise you might try to restart vdsmd on the host.
Thanks Gianluca
Tomorrow I should be able to collect those infos for w7 guest. In the mean time I did the same for a Windows XP vm in another environment (all-in-one 3.2 repo for f18) I was able to start the service, virtio serial device is present in hardware devices. As soon as I start the service I can see IP and list of applications in webadmin gui for the VM (no need to restart vdsmd). A problem regards how ip is shown: two times + an entry of the form 0.0.0.0 ... See screenshot: https://docs.google.com/file/d/0BwoPbcrMv8mvcEdKTy1tdFV1TEk/edit?usp=sharing But even with shutdown and power off of the vm and then starting it, I can't see any wan option in user portal. Also tried here to restart vdsmd. Here the rhev-agent.log generated on winxp guest: https://docs.google.com/file/d/0BwoPbcrMv8mvRUlQYjNYTXpORTQ/edit?usp=sharing Here you can find vdsm.log. The service was set to automatic and the VM was powered on around 00:27 https://docs.google.com/file/d/0BwoPbcrMv8mvUXJhSzlWVXA3RWM/edit?usp=sharing NOTE to correlate between VM and host that VM time is about 13 hours behind host time, for another problem I'm going to send eventually a separate e-mail (by default I notice template/VM is created with timezone -12 and I'm in +1.... and it seems I cannot change it afterwards...) BTW: how can I configure the service so that log file is not in C:\Python26\Lib\site-packages\win32 but inside a directory of my choice? In general can I proceed this way for the service, to put it and its files in a dedicated directory: - Update the AGENT_CONFIG global variable in OVirtGuestService.py to point to C:\ovirt-guest-agent - update a tbd file to set logile as C:\ovirt-guest-agent\ovirt-guest-agent.log - build - put OVirtGuestService.py and ... what? (OVirtGuestService.pyc? other files?) in C:\ovirt-guest-agent - put ovirt-guest-agent.ini in C:\ovirt-guest-agent - cd C:\ovirt-guest-agent - python OVirtGuestService.py install - net start OVirtGuestService - run services.msc and set the service to auto ?

I was also able to connect to the infra with the windows 7 VM. After restarting vdsmd I was able to see ip and applications for the VM Still no wan options in user portal.

On Wed, Mar 6, 2013 at 1:48 AM, Gianluca Cecchi wrote:
I was also able to connect to the infra with the windows 7 VM. After restarting vdsmd I was indeed able to see ip and applications for the VM in web admin gui Still no wan options in user portal.
Logs for vdsm of this infra with Windows 7 VM here: https://docs.google.com/file/d/0BwoPbcrMv8mvTGk1d0x5N2NQZ2c/edit?usp=sharing Gianluca

On 03/06/2013 01:50 AM, Gianluca Cecchi wrote:
On Wed, Mar 6, 2013 at 1:48 AM, Gianluca Cecchi wrote:
I was also able to connect to the infra with the windows 7 VM. After restarting vdsmd I was indeed able to see ip and applications for the VM in web admin gui Still no wan options in user portal. Logs for vdsm of this infra with Windows 7 VM here: https://docs.google.com/file/d/0BwoPbcrMv8mvTGk1d0x5N2NQZ2c/edit?usp=sharing
Gianluca Did you configure Windows 7 also in the configuration for the VM in the admin portal? If not you might need to shutdown the VM and edit the settings to Windows 7. Then you should be able to see the WAN option.-- Regards, Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com

On Wed, Mar 6, 2013 at 9:36 AM, Vinzenz Feenstra wrote:
Did you configure Windows 7 also in the configuration for the VM in the admin portal? If not you might need to shutdown the VM and edit the settings to Windows 7. Then you should be able to see the WAN option.-- Regards, Vinzenz Feenstra |
WHat do you mean with " Did you configure Windows 7 also in the configuration for the VM in the admin portal? " I configured OS as Windows 7 from the beginning. I set spice as protocol in console section, in fact from the beginning I was able to connect via spice I don't see any other settings related to wan optiization in create/edit part of the VM.... Gianluca

On Wed, Mar 6, 2013 at 9:36 AM, Vinzenz Feenstra wrote:
Did you configure Windows 7 also in the configuration for the VM in the admin portal? If not you might need to shutdown the VM and edit the settings to Windows 7. Then you should be able to see the WAN option.-- Regards, Vinzenz Feenstra | WHat do you mean with
" Did you configure Windows 7 also in the configuration for the VM in the admin portal? "
I configured OS as Windows 7 from the beginning. I set spice as protocol in console section, in fact from the beginning I was able to connect via spice I don't see any other settings related to wan optiization in create/edit part of the VM.... The WAN option should be then visible in the UI in the user portal. Not in the configuration of the VM. The option for the Operating System must be set where I have shown it in
On 03/06/2013 09:48 AM, Gianluca Cecchi wrote: the screenshot attached.
Gianluca
-- Regards, Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com

On Wed, Mar 6, 2013 at 10:07 AM, Vinzenz Feenstra wrote:
The WAN option should be then visible in the UI in the user portal. Not in the configuration of the VM. The option for the Operating System must be set where I have shown it in the screenshot attached.
Gianluca
-- Regards,
Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo
Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com
environment all-in-one f18 rpm from ovirt repo 3.2 with windos xp vm this is edit vm screen: https://docs.google.com/file/d/0BwoPbcrMv8mvVHpDTUJyR1ZkeXM/edit?usp=sharing and this is user portal as you can see there is the application detail pane populated, but no option for wan optimization... https://docs.google.com/file/d/0BwoPbcrMv8mvWHZYNlBtSTN5bmc/edit?usp=sharing

On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi <gianluca.cecchi@gmail.com> wrote:
On Wed, Mar 6, 2013 at 10:07 AM, Vinzenz Feenstra wrote:
The WAN option should be then visible in the UI in the user portal. Not in the configuration of the VM. The option for the Operating System must be set where I have shown it in the screenshot attached.
Gianluca
-- Regards,
Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo
Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com
environment all-in-one f18 rpm from ovirt repo 3.2 with windos xp vm this is edit vm screen: https://docs.google.com/file/d/0BwoPbcrMv8mvVHpDTUJyR1ZkeXM/edit?usp=sharing
and this is user portal
as you can see there is the application detail pane populated, but no option for wan optimization... https://docs.google.com/file/d/0BwoPbcrMv8mvWHZYNlBtSTN5bmc/edit?usp=sharing
engine.log https://docs.google.com/file/d/0BwoPbcrMv8mvUXNwZUxRTnNBckE/edit?usp=sharing vdsm.log https://docs.google.com/file/d/0BwoPbcrMv8mva0xhN1ZONjFKVWM/edit?usp=sharing Gianluca

Hello, any update on logs contents? coming back to what Itamar wrote some mails ago: ... 2. for ovirt to see list of applications, you need to have the ovirt-guest-agent installed as well, not just the spice one. Now I see some applications listed, but I don't see ovirt-guest-agent itself between them... could it be an issue? Actually I think ovirt-guest-agent is a service not an application, correct? Is there any way to copy/paste and/or extract the list of applications I see listed in webadmin gui, so that you can crosscheck? Gianluca

On 03/12/2013 11:00 PM, Gianluca Cecchi wrote:
Hello, any update on logs contents?
coming back to what Itamar wrote some mails ago: ... 2. for ovirt to see list of applications, you need to have the ovirt-guest-agent installed as well, not just the spice one.
Now I see some applications listed, but I don't see ovirt-guest-agent itself between them... could it be an issue? Actually I think ovirt-guest-agent is a service not an application, correct?
Is there any way to copy/paste and/or extract the list of applications I see listed in webadmin gui, so that you can crosscheck?
Gianluca
you can use the REST API (/api/vms/vm-uuid to see it in the browser)

On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi <gianluca.cecchi@gmail.com> wrote:
On Wed, Mar 6, 2013 at 10:07 AM, Vinzenz Feenstra wrote:
The WAN option should be then visible in the UI in the user portal. Not in the configuration of the VM. The option for the Operating System must be set where I have shown it in the screenshot attached.
Gianluca
-- Regards,
Vinzenz Feenstra | Senior Software Engineer RedHat Engineering Virtualization R & D Phone: +420 532 294 625 IRC: vfeenstr or evilissimo
Better technology. Faster innovation. Powered by community collaboration. See how it works at redhat.com
environment all-in-one f18 rpm from ovirt repo 3.2 with windos xp vm this is edit vm screen: https://docs.google.com/file/d/0BwoPbcrMv8mvVHpDTUJyR1ZkeXM/edit?usp=sharing
and this is user portal
as you can see there is the application detail pane populated, but no option for wan optimization... https://docs.google.com/file/d/0BwoPbcrMv8mvWHZYNlBtSTN5bmc/edit?usp=sharing
engine.log https://docs.google.com/file/d/0BwoPbcrMv8mvUXNwZUxRTnNBckE/edit?usp=sharing
vdsm.log https://docs.google.com/file/d/0BwoPbcrMv8mva0xhN1ZONjFKVWM/edit?usp=sharing
Gianluca _______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).

On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications? Gianluca

-----Original message-----
From:Gianluca Cecchi <gianluca.cecchi@gmail.com> Sent: Friday 15th March 2013 18:30 To: Itamar Heim <iheim@redhat.com> Cc: users <users@ovirt.org> Subject: Re: [Users] Configure spice plugin for wan
On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
Gianluca _______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users

Il giorno 15/mar/2013 18:50, "René Koch" <r.koch@ovido.at> ha scritto:
-----Original message-----
From:Gianluca Cecchi <gianluca.cecchi@gmail.com> Sent: Friday 15th March 2013 18:30 To: Itamar Heim <iheim@redhat.com> Cc: users <users@ovirt.org> Subject: Re: [Users] Configure spice plugin for wan
On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be
checking
for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
Gianluca _______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users
So any way to send list of applications displayed in raw text format? Or only a screenshot is feasible?
Btw: Itamar, what a great deal of emails: previously blocked in a queue or Asterix potion ? ;-)

On Fri, Mar 15, 2013 at 7:23 PM, Gianluca Cecchi wrote:
So any way to send list of applications displayed in raw text format? Or only a screenshot is feasible?
In the mean time I was able to copy and paste the list of applications from webadmin gui.... here it is. I don't see ovirt-guest-agent and I see strange lines at the beginning Installed Applications 0 150 (Array Networks) 4 Adobe Flash Player 11 ActiveX Adobe Flash Player 11 Plugin Adobe Reader X (10.1.0) - Italiano Aggiornamento della protezione per Windows Internet Explorer 8 (KB2510531) Aggiornamento della protezione per Windows Internet Explorer 8 (KB2544521) Aggiornamento della protezione per Windows Internet Explorer 8 (KB2586448) Aggiornamento della protezione per Windows Internet Explorer 8 (KB2744842) Aggiornamento della protezione per Windows Internet Explorer 8 (KB982381) Aggiornamento della protezione per Windows Media Player (KB2378111) Aggiornamento della protezione per Windows Media Player (KB952069) Aggiornamento della protezione per Windows Media Player (KB954155) Aggiornamento della protezione per Windows Media Player (KB973540) Aggiornamento della protezione per Windows Media Player (KB975558) Aggiornamento della protezione per Windows Media Player (KB978695) Aggiornamento della protezione per Windows XP (KB2079403) Aggiornamento della protezione per Windows XP (KB2115168) Aggiornamento della protezione per Windows XP (KB2229593) Aggiornamento della protezione per Windows XP (KB2296011) Aggiornamento della protezione per Windows XP (KB2347290) Aggiornamento della protezione per Windows XP (KB2360937) Aggiornamento della protezione per Windows XP (KB2387149) Aggiornamento della protezione per Windows XP (KB2393802) Aggiornamento della protezione per Windows XP (KB2412687) Aggiornamento della protezione per Windows XP (KB2419632) Aggiornamento della protezione per Windows XP (KB2423089) Aggiornamento della protezione per Windows XP (KB2440591) Aggiornamento della protezione per Windows XP (KB2443105) Aggiornamento della protezione per Windows XP (KB2476490) Aggiornamento della protezione per Windows XP (KB2478960) Aggiornamento della protezione per Windows XP (KB2478971) Aggiornamento della protezione per Windows XP (KB2479943) Aggiornamento della protezione per Windows XP (KB2481109) Aggiornamento della protezione per Windows XP (KB2483185) Aggiornamento della protezione per Windows XP (KB2485663) Aggiornamento della protezione per Windows XP (KB2506212) Aggiornamento della protezione per Windows XP (KB2507618) Aggiornamento della protezione per Windows XP (KB2507938) Aggiornamento della protezione per Windows XP (KB2508272) Aggiornamento della protezione per Windows XP (KB2508429) Aggiornamento della protezione per Windows XP (KB2509553) Aggiornamento della protezione per Windows XP (KB2510581) Aggiornamento della protezione per Windows XP (KB2535512) Aggiornamento della protezione per Windows XP (KB2536276-v2) Aggiornamento della protezione per Windows XP (KB2544521) Aggiornamento della protezione per Windows XP (KB2544893-v2) Aggiornamento della protezione per Windows XP (KB2562937) Aggiornamento della protezione per Windows XP (KB2566454) Aggiornamento della protezione per Windows XP (KB2567053) Aggiornamento della protezione per Windows XP (KB2567680) Aggiornamento della protezione per Windows XP (KB2570222) Aggiornamento della protezione per Windows XP (KB2570947) Aggiornamento della protezione per Windows XP (KB2584146) Aggiornamento della protezione per Windows XP (KB2585542) Aggiornamento della protezione per Windows XP (KB2586448) Aggiornamento della protezione per Windows XP (KB2592799) Aggiornamento della protezione per Windows XP (KB2598479) Aggiornamento della protezione per Windows XP (KB2603381) Aggiornamento della protezione per Windows XP (KB2618451) Aggiornamento della protezione per Windows XP (KB2619339) Aggiornamento della protezione per Windows XP (KB2620712) Aggiornamento della protezione per Windows XP (KB2624667) Aggiornamento della protezione per Windows XP (KB2631813) Aggiornamento della protezione per Windows XP (KB2646524) Aggiornamento della protezione per Windows XP (KB2653956) Aggiornamento della protezione per Windows XP (KB2655992) Aggiornamento della protezione per Windows XP (KB2659262) Aggiornamento della protezione per Windows XP (KB2661637) Aggiornamento della protezione per Windows XP (KB2676562) Aggiornamento della protezione per Windows XP (KB2686509) Aggiornamento della protezione per Windows XP (KB2691442) Aggiornamento della protezione per Windows XP (KB2698365) Aggiornamento della protezione per Windows XP (KB2705219) Aggiornamento della protezione per Windows XP (KB2707511) Aggiornamento della protezione per Windows XP (KB2712808) Aggiornamento della protezione per Windows XP (KB2719985) Aggiornamento della protezione per Windows XP (KB2723135) Aggiornamento della protezione per Windows XP (KB2731847) Aggiornamento della protezione per Windows XP (KB923561) Aggiornamento della protezione per Windows XP (KB923789) Aggiornamento della protezione per Windows XP (KB946648) Aggiornamento della protezione per Windows XP (KB950762) Aggiornamento della protezione per Windows XP (KB950974) Aggiornamento della protezione per Windows XP (KB951376-v2) Aggiornamento della protezione per Windows XP (KB952004) Aggiornamento della protezione per Windows XP (KB952954) Aggiornamento della protezione per Windows XP (KB954459) Aggiornamento della protezione per Windows XP (KB956572) Aggiornamento della protezione per Windows XP (KB956744) Aggiornamento della protezione per Windows XP (KB956802) Aggiornamento della protezione per Windows XP (KB956844) Aggiornamento della protezione per Windows XP (KB958644) Aggiornamento della protezione per Windows XP (KB959426) Aggiornamento della protezione per Windows XP (KB960803) Aggiornamento della protezione per Windows XP (KB960859) Aggiornamento della protezione per Windows XP (KB961501) Aggiornamento della protezione per Windows XP (KB969059) Aggiornamento della protezione per Windows XP (KB970430) Aggiornamento della protezione per Windows XP (KB971657) Aggiornamento della protezione per Windows XP (KB972270) Aggiornamento della protezione per Windows XP (KB973507) Aggiornamento della protezione per Windows XP (KB973869) Aggiornamento della protezione per Windows XP (KB973904) Aggiornamento della protezione per Windows XP (KB974112) Aggiornamento della protezione per Windows XP (KB974318) Aggiornamento della protezione per Windows XP (KB974392) Aggiornamento della protezione per Windows XP (KB974571) Aggiornamento della protezione per Windows XP (KB975025) Aggiornamento della protezione per Windows XP (KB975467) Aggiornamento della protezione per Windows XP (KB975560) Aggiornamento della protezione per Windows XP (KB975562) Aggiornamento della protezione per Windows XP (KB975713) Aggiornamento della protezione per Windows XP (KB977816) Aggiornamento della protezione per Windows XP (KB977914) Aggiornamento della protezione per Windows XP (KB978338) Aggiornamento della protezione per Windows XP (KB978542) Aggiornamento della protezione per Windows XP (KB978601) Aggiornamento della protezione per Windows XP (KB978706) Aggiornamento della protezione per Windows XP (KB979309) Aggiornamento della protezione per Windows XP (KB979482) Aggiornamento della protezione per Windows XP (KB979687) Aggiornamento della protezione per Windows XP (KB980436) Aggiornamento della protezione per Windows XP (KB981322) Aggiornamento della protezione per Windows XP (KB981997) Aggiornamento della protezione per Windows XP (KB982132) Aggiornamento della protezione per Windows XP (KB982665) Aggiornamento della sicurezza per Microsoft Windows (KB2564958) Aggiornamento per Windows Internet Explorer 8 (KB2598845) Aggiornamento per Windows XP (KB2345886) Aggiornamento per Windows XP (KB2467659) Aggiornamento per Windows XP (KB2541763) Aggiornamento per Windows XP (KB2641690) Aggiornamento per Windows XP (KB2718704) Aggiornamento per Windows XP (KB2736233) Aggiornamento per Windows XP (KB898461) Aggiornamento per Windows XP (KB951978) Aggiornamento per Windows XP (KB955759) Aggiornamento per Windows XP (KB968389) Aggiornamento per Windows XP (KB971029) Aggiornamento per Windows XP (KB973687) Aggiornamento per Windows XP (KB973815) Aggiornamento rapido per Windows XP (KB2570791) Aggiornamento rapido per Windows XP (KB2633952) Aggiornamento rapido per Windows XP (KB952287) Apple Application Support Apple Mobile Device Support Apple Software Update Array Networks SSL VPN Client 8 Bonjour Check Point SSL Network Extender ClamWin Free Antivirus 0.97.6 Java 7 Update 15 Java Auto Updater Java(TM) 6 Update 35 Microsoft .NET Framework 2.0 Service Pack 2 Microsoft .NET Framework 3.0 Service Pack 2 Microsoft .NET Framework 3.5 SP1 Microsoft .NET Framework 3.5 SP1 Microsoft .NET Framework 4 Client Profile Microsoft .NET Framework 4 Client Profile Microsoft .NET Framework 4 Extended Microsoft .NET Framework 4 Extended Microsoft Kernel-Mode Driver Framework Feature Pack 1.9 Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148 Microsoft Visual J# 2.0 Redistributable Package - SE Microsoft Visual J# 2.0 Redistributable Package - SE Mozilla Firefox 17.0.1 (x86 en-US) Mozilla Maintenance Service PDFCreator Python 2.6 py2exe-0.6.9 Python 2.6 pywin32-216 Python 2.6.6 Skype Click to Call Skype™ 5.8 VLC media player 1.1.11 VMware vSphere Client 5.1 WebFldrs XP Windows Genuine Advantage Notifications (KB905474) Windows Genuine Advantage Validation Tool (KB892130) Windows Genuine Advantage Validation Tool (KB892130) Windows Internet Explorer 8 iTunes

On Sat, Mar 16, 2013 at 10:14 PM, Itamar Heim wrote:
On 03/16/2013 01:34 AM, Gianluca Cecchi wrote:
Python 2.6 py2exe-0.6.9 Python 2.6 pywin32-216 Python 2.6.6
I'm guessing this is the ovirt-guest-agent, and i'm guessing compiling it from source isn't listing it correctly when installed as an app...
Yes I used the guest itself to compile the ovirt-guest-agent. what do you mean with "compiling it from source isn't listing it correctly when installed as an app... " ? How to install as an app instead? I also executed python setup.py py2exe -b 1 as mentioned in the README file, but I didn't understand exactly where to pick the resulting "app"... any more intuitive workflow..? Gianluca

On 03/15/2013 08:23 PM, Gianluca Cecchi wrote:
Il giorno 15/mar/2013 18:50, "René Koch" <r.koch@ovido.at <mailto:r.koch@ovido.at>> ha scritto:
-----Original message-----
From:Gianluca Cecchi <gianluca.cecchi@gmail.com
<mailto:gianluca.cecchi@gmail.com>>
Sent: Friday 15th March 2013 18:30 To: Itamar Heim <iheim@redhat.com <mailto:iheim@redhat.com>> Cc: users <users@ovirt.org <mailto:users@ovirt.org>> Subject: Re: [Users] Configure spice plugin for wan
On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be
checking
for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
Gianluca _______________________________________________ Users mailing list Users@ovirt.org <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users
So any way to send list of applications displayed in raw text format? Or only a screenshot is feasible?
Btw: Itamar, what a great deal of emails: previously blocked in a queue or Asterix potion ? ;-)
too many travel, but enough battery on last flight to clean enough of the email queue...

On 03/15/2013 07:50 PM, René Koch wrote:
-----Original message-----
From:Gianluca Cecchi <gianluca.cecchi@gmail.com> Sent: Friday 15th March 2013 18:30 To: Itamar Heim <iheim@redhat.com> Cc: users <users@ovirt.org> Subject: Re: [Users] Configure spice plugin for wan
On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this? as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats

On Sat, Mar 16, 2013 at 10:20 PM, Itamar Heim wrote:
interesting. michael - any reason for this? as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
$ sudo vdsClient -s 0 getAllVmStats 2981b979-a363-4ab9-a251-439b5774b04d Status = Running memUsage = 31 acpiEnable = true netIfaces = [{'name': u"Red Hat VirtIO Ethernet Adapter - Miniport dell'Utilit\xe0 di pianificazione pacchetti", 'inet6': [], 'inet': ['192.168.1.75'], 'hw': '00:1a:4a:a8:01:52'}, {'name': u"Red Hat VirtIO Ethernet Adapter - Miniport dell'Utilit\xe0 di pianificazione pacchetti", 'inet6': [], 'inet': ['192.168.1.75'], 'hw': '00:1a:4a:a8:01:52'}, {'name': u"Check Point Virtual Network Adapter For SSL Network Extender - Miniport dell'Utilit\xe0 di pianificazione pacchetti", 'inet6': [], 'inet': ['0.0.0.0'], 'hw': '54:cf:5e:da:9e:0c'}] session = Unknown vmType = kvm timeOffset = -43309 balloonInfo = {'balloon_max': 1048576, 'balloon_cur': 1048576} pauseCode = NOERR disksUsage = [{'path': 'c:\\', 'total': '11811123200', 'fs': 'NTFS', 'used': '8879144960'}] network = {'vnet0': {'macAddr': '00:1a:4a:a8:01:52', 'rxDropped': '0', 'txDropped': '0', 'rxErrors': '0', 'txRate': '0.0', 'rxRate': '0.0', 'txErrors': '0', 'state': 'unknown', 'speed': '1000', 'name': 'vnet0'}} memoryStats = {'swap_out': '0', 'majflt': '0', 'mem_free': '721744', 'swap_in': '0', 'pageflt': '88021', 'mem_total': '1048104', 'mem_unused': '721744'} guestName = TEKKAMAN elapsedTime = 38 displayType = qxl cpuSys = 9.86 appsList = ['Adobe Flash Player 11 ActiveX', 'Adobe Flash Player 11 Plugin', 'Array Networks SSL VPN Client 8,4,0,150 (Array Networks)', 'ClamWin Free Antivirus 0.97.6', 'Windows Internet Explorer 8', 'Aggiornamento della protezione per Windows XP (KB2079403)', 'Aggiornamento della protezione per Windows XP (KB2115168)', 'Aggiornamento della protezione per Windows XP (KB2229593)', 'Aggiornamento della protezione per Windows XP (KB2296011)', 'Aggiornamento per Windows XP (KB2345886)', 'Aggiornamento della protezione per Windows XP (KB2347290)', 'Aggiornamento della protezione per Windows XP (KB2360937)', 'Aggiornamento della protezione per Windows Media Player (KB2378111)', 'Aggiornamento della protezione per Windows XP (KB2387149)', 'Aggiornamento della protezione per Windows XP (KB2393802)', 'Aggiornamento della protezione per Windows XP (KB2412687)', 'Aggiornamento della protezione per Windows XP (KB2419632)', 'Aggiornamento della protezione per Windows XP (KB2423089)', 'Aggiornamento della protezione per Windows XP (KB2440591)', 'Aggiornamento della protezione per Windows XP (KB2443105)', 'Aggiornamento per Windows XP (KB2467659)', 'Aggiornamento della protezione per Windows XP (KB2476490)', 'Aggiornamento della protezione per Windows XP (KB2478960)', 'Aggiornamento della protezione per Windows XP (KB2478971)', 'Aggiornamento della protezione per Windows XP (KB2479943)', 'Aggiornamento della protezione per Windows XP (KB2481109)', 'Aggiornamento della protezione per Windows XP (KB2483185)', 'Aggiornamento della protezione per Windows XP (KB2485663)', 'Aggiornamento della protezione per Windows XP (KB2506212)', 'Aggiornamento della protezione per Windows XP (KB2507618)', 'Aggiornamento della protezione per Windows XP (KB2507938)', 'Aggiornamento della protezione per Windows XP (KB2508272)', 'Aggiornamento della protezione per Windows XP (KB2508429)', 'Aggiornamento della protezione per Windows XP (KB2509553)', 'Aggiornamento della protezione per Windows Internet Explorer 8 (KB2510531)', 'Aggiornamento della protezione per Windows XP (KB2510581)', 'Aggiornamento della protezione per Windows XP (KB2535512)', 'Aggiornamento della protezione per Windows XP (KB2536276-v2)', 'Aggiornamento per Windows XP (KB2541763)', 'Aggiornamento della protezione per Windows XP (KB2544521)', 'Aggiornamento della protezione per Windows Internet Explorer 8 (KB2544521)', 'Aggiornamento della protezione per Windows XP (KB2544893-v2)', 'Aggiornamento della protezione per Windows XP (KB2562937)', 'Aggiornamento della sicurezza per Microsoft Windows (KB2564958)', 'Aggiornamento della protezione per Windows XP (KB2566454)', 'Aggiornamento della protezione per Windows XP (KB2567053)', 'Aggiornamento della protezione per Windows XP (KB2567680)', 'Aggiornamento della protezione per Windows XP (KB2570222)', 'Aggiornamento rapido per Windows XP (KB2570791)', 'Aggiornamento della protezione per Windows XP (KB2570947)', 'Aggiornamento della protezione per Windows XP (KB2584146)', 'Aggiornamento della protezione per Windows XP (KB2585542)', 'Aggiornamento della protezione per Windows XP (KB2586448)', 'Aggiornamento della protezione per Windows Internet Explorer 8 (KB2586448)', 'Aggiornamento della protezione per Windows XP (KB2592799)', 'Aggiornamento della protezione per Windows XP (KB2598479)', 'Aggiornamento per Windows Internet Explorer 8 (KB2598845)', 'Aggiornamento della protezione per Windows XP (KB2603381)', 'Aggiornamento della protezione per Windows XP (KB2618451)', 'Aggiornamento della protezione per Windows XP (KB2619339)', 'Aggiornamento della protezione per Windows XP (KB2620712)', 'Aggiornamento della protezione per Windows XP (KB2624667)', 'Aggiornamento della protezione per Windows XP (KB2631813)', 'Aggiornamento rapido per Windows XP (KB2633952)', 'Aggiornamento per Windows XP (KB2641690)', 'Aggiornamento della protezione per Windows XP (KB2646524)', 'Aggiornamento della protezione per Windows XP (KB2653956)', 'Aggiornamento della protezione per Windows XP (KB2655992)', 'Aggiornamento della protezione per Windows XP (KB2659262)', 'Aggiornamento della protezione per Windows XP (KB2661637)', 'Aggiornamento della protezione per Windows XP (KB2676562)', 'Aggiornamento della protezione per Windows XP (KB2686509)', 'Aggiornamento della protezione per Windows XP (KB2691442)', 'Aggiornamento della protezione per Windows XP (KB2698365)', 'Aggiornamento della protezione per Windows XP (KB2705219)', 'Aggiornamento della protezione per Windows XP (KB2707511)', 'Aggiornamento della protezione per Windows XP (KB2712808)', 'Aggiornamento per Windows XP (KB2718704)', 'Aggiornamento della protezione per Windows XP (KB2719985)', 'Aggiornamento della protezione per Windows XP (KB2723135)', 'Aggiornamento della protezione per Windows XP (KB2731847)', 'Aggiornamento per Windows XP (KB2736233)', 'Aggiornamento della protezione per Windows Internet Explorer 8 (KB2744842)', 'Windows Genuine Advantage Validation Tool (KB892130)', 'Aggiornamento per Windows XP (KB898461)', 'Aggiornamento della protezione per Windows XP (KB923561)', 'Aggiornamento della protezione per Windows XP (KB923789)', 'Aggiornamento della protezione per Windows XP (KB946648)', 'Aggiornamento della protezione per Windows XP (KB950762)', 'Aggiornamento della protezione per Windows XP (KB950974)', 'Aggiornamento della protezione per Windows XP (KB951376-v2)', 'Aggiornamento per Windows XP (KB951978)', 'Aggiornamento della protezione per Windows XP (KB952004)', 'Aggiornamento della protezione per Windows Media Player (KB952069)', 'Aggiornamento rapido per Windows XP (KB952287)', 'Aggiornamento della protezione per Windows XP (KB952954)', 'Aggiornamento della protezione per Windows Media Player (KB954155)', 'Aggiornamento della protezione per Windows XP (KB954459)', 'Aggiornamento per Windows XP (KB955759)', 'Aggiornamento della protezione per Windows XP (KB956572)', 'Aggiornamento della protezione per Windows XP (KB956744)', 'Aggiornamento della protezione per Windows XP (KB956802)', 'Aggiornamento della protezione per Windows XP (KB956844)', 'Aggiornamento della protezione per Windows XP (KB958644)', 'Aggiornamento della protezione per Windows XP (KB959426)', 'Aggiornamento della protezione per Windows XP (KB960803)', 'Aggiornamento della protezione per Windows XP (KB960859)', 'Aggiornamento della protezione per Windows XP (KB961501)', 'Aggiornamento per Windows XP (KB968389)', 'Aggiornamento della protezione per Windows XP (KB969059)', 'Aggiornamento della protezione per Windows XP (KB970430)', 'Aggiornamento per Windows XP (KB971029)', 'Aggiornamento della protezione per Windows XP (KB971657)', 'Aggiornamento della protezione per Windows XP (KB972270)', 'Aggiornamento della protezione per Windows XP (KB973507)', 'Aggiornamento della protezione per Windows Media Player (KB973540)', 'Aggiornamento per Windows XP (KB973687)', 'Aggiornamento per Windows XP (KB973815)', 'Aggiornamento della protezione per Windows XP (KB973869)', 'Aggiornamento della protezione per Windows XP (KB973904)', 'Aggiornamento della protezione per Windows XP (KB974112)', 'Aggiornamento della protezione per Windows XP (KB974318)', 'Aggiornamento della protezione per Windows XP (KB974392)', 'Aggiornamento della protezione per Windows XP (KB974571)', 'Aggiornamento della protezione per Windows XP (KB975025)', 'Aggiornamento della protezione per Windows XP (KB975467)', 'Aggiornamento della protezione per Windows Media Player (KB975558)', 'Aggiornamento della protezione per Windows XP (KB975560)', 'Aggiornamento della protezione per Windows XP (KB975562)', 'Aggiornamento della protezione per Windows XP (KB975713)', 'Aggiornamento della protezione per Windows XP (KB977816)', 'Aggiornamento della protezione per Windows XP (KB977914)', 'Aggiornamento della protezione per Windows XP (KB978338)', 'Aggiornamento della protezione per Windows XP (KB978542)', 'Aggiornamento della protezione per Windows XP (KB978601)', 'Aggiornamento della protezione per Windows Media Player (KB978695)', 'Aggiornamento della protezione per Windows XP (KB978706)', 'Aggiornamento della protezione per Windows XP (KB979309)', 'Aggiornamento della protezione per Windows XP (KB979482)', 'Aggiornamento della protezione per Windows XP (KB979687)', 'Aggiornamento della protezione per Windows XP (KB980436)', 'Aggiornamento della protezione per Windows XP (KB981322)', 'Aggiornamento della protezione per Windows XP (KB981997)', 'Aggiornamento della protezione per Windows XP (KB982132)', 'Aggiornamento della protezione per Windows Internet Explorer 8 (KB982381)', 'Aggiornamento della protezione per Windows XP (KB982665)', 'Microsoft .NET Framework 3.5 SP1', 'Microsoft .NET Framework 4 Client Profile', 'Microsoft .NET Framework 4 Extended', 'Microsoft Visual J# 2.0 Redistributable Package - SE', 'Mozilla Firefox 17.0.1 (x86 en-US)', 'Mozilla Maintenance Service', 'Python 2.6 py2exe-0.6.9', 'Python 2.6 pywin32-216', 'VLC media player 1.1.11', 'Microsoft Kernel-Mode Driver Framework Feature Pack 1.9', 'Windows Genuine Advantage Validation Tool (KB892130)', 'Windows Genuine Advantage Notifications (KB905474)', 'PDFCreator', 'VMware vSphere Client 5.1', 'Microsoft .NET Framework 4 Extended', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148', 'Java(TM) 6 Update 35', 'Java 7 Update 17', 'Apple Application Support', 'WebFldrs XP', 'Microsoft .NET Framework 4 Client Profile', 'Java Auto Updater', 'Python 2.6.6', 'Apple Software Update', 'Bonjour', 'Apple Mobile Device Support', 'Microsoft .NET Framework 3.0 Service Pack 2', 'Adobe Reader X (10.1.0) - Italiano', 'Skype Click to Call', 'Microsoft .NET Framework 2.0 Service Pack 2', 'Microsoft .NET Framework 3.5 SP1', 'Microsoft Visual J# 2.0 Redistributable Package - SE', u'Skype\u2122 5.8', 'Check Point SSL Network Extender', 'iTunes'] guestOs = Win XP username = None hash = 54411355922428039 pid = 30743 displayIp = 0 displayPort = 5900 guestIPs = 192.168.1.75 192.168.1.75 0.0.0.0 kvmEnable = true disks = {'vda': {'truesize': '11811164160', 'apparentsize': '11811160064', 'imageID': '75c54716-5222-4ad6-91f2-8b312eacc4b4'}, 'hdc': {'truesize': '0', 'apparentsize': '0'}} monitorResponse = 0 statsAge = 0.95 cpuUser = 23.72 lastLogin = 1363469071.2 clientIp = 192.168.1.101 displaySecurePort = 5901

On 03/16/2013 11:20 PM, Itamar Heim wrote:
On 03/15/2013 07:50 PM, René Koch wrote:
-----Original message-----
From:Gianluca Cecchi <gianluca.cecchi@gmail.com> Sent: Friday 15th March 2013 18:30 To: Itamar Heim <iheim@redhat.com> Cc: users <users@ovirt.org> Subject: Re: [Users] Configure spice plugin for wan
On Fri, Mar 15, 2013 at 11:02 AM, Itamar Heim wrote:
On 03/07/2013 08:00 AM, Gianluca Cecchi wrote:
On Thu, Mar 7, 2013 at 6:58 AM, Gianluca Cecchi
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this?
the overhead of sending a bulk of applications when listing vms at /vms, but this can be implemented as emulated sub-collection under vm (as we did for /cdroms), i've filed [1] for this. [1] https://bugzilla.redhat.com/show_bug.cgi?id=926928
as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
-- Michael Pasternak RedHat, ENG-Virtualization R&D

On Sun, Mar 24, 2013 at 10:08 AM, Michael Pasternak wrote:
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this?
the overhead of sending a bulk of applications when listing vms at /vms, but this can be implemented as emulated sub-collection under vm (as we did for /cdroms), i've filed [1] for this.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=926928
as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
It remains the problem to use wan options in oVirt. Can I execute some test as in http://www.ovirt.org/How_to_Connect_to_SPICE_Console_Without_Portal how to translate these wan options if I want to try this way? Thanks Gianluca

On 03/24/2013 09:17 PM, Gianluca Cecchi wrote:
On Sun, Mar 24, 2013 at 10:08 AM, Michael Pasternak wrote:
was this resolved? you've mentioned above you are using 'rhev-agent' - ovirt may be checking for ovirt-guest-agent'... please send list of installed applications as reported by the guest agent (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this?
the overhead of sending a bulk of applications when listing vms at /vms, but this can be implemented as emulated sub-collection under vm (as we did for /cdroms), i've filed [1] for this.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=926928
as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
It remains the problem to use wan options in oVirt. Can I execute some test as in http://www.ovirt.org/How_to_Connect_to_SPICE_Console_Without_Portal
how to translate these wan options if I want to try this way? Thanks Gianluca
spice-devel - what's the command line option for virt-viewer to tweak spice wan behavior?

----- Original Message -----
From: "Itamar Heim" <iheim@redhat.com> To: "Gianluca Cecchi" <gianluca.cecchi@gmail.com> Cc: "Michael Pasternak" <mpastern@redhat.com>, spice-devel@lists.freedesktop.org, "users" <users@ovirt.org>, "René Koch" <r.koch@ovido.at> Sent: Saturday, April 20, 2013 5:03:25 PM Subject: Re: [Spice-devel] [Users] Configure spice plugin for wan
On 03/24/2013 09:17 PM, Gianluca Cecchi wrote:
On Sun, Mar 24, 2013 at 10:08 AM, Michael Pasternak wrote:
> was this resolved? > you've mentioned above you are using 'rhev-agent' - ovirt may > be checking > for ovirt-guest-agent'... > please send list of installed applications as reported by the > guest agent > (restapi probably easiest).
No, only a few lines shown for applications and no wan option shown in user portal... I "compiled" ovirt-guest-agent service for windows XP and Windows7 A quick command line example of using rest/api to get applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this?
the overhead of sending a bulk of applications when listing vms at /vms, but this can be implemented as emulated sub-collection under vm (as we did for /cdroms), i've filed [1] for this.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=926928
as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
It remains the problem to use wan options in oVirt. Can I execute some test as in http://www.ovirt.org/How_to_Connect_to_SPICE_Console_Without_Portal
how to translate these wan options if I want to try this way? Thanks Gianluca
spice-devel - what's the command line option for virt-viewer to tweak spice wan behavior? _________________________________________
--spice-disable-effects=<wallpaper,font-smooth,animation,all> \\ ______
Spice-devel mailing list Spice-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/spice-devel

--=-DmcLZeTJpJyMw/lg7vbq Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Andrew Cathrow p=C3=AD=C5=A1e v Ne 21. 04. 2013 v 20:05 -0400:
=20 ----- Original Message -----
From: "Itamar Heim" <iheim@redhat.com> To: "Gianluca Cecchi" <gianluca.cecchi@gmail.com> Cc: "Michael Pasternak" <mpastern@redhat.com>, spice-devel@lists.freede= sktop.org, "users" <users@ovirt.org>, "Ren=C3=A9 Koch" <r.koch@ovido.at> Sent: Saturday, April 20, 2013 5:03:25 PM Subject: Re: [Spice-devel] [Users] Configure spice plugin for wan =20 On 03/24/2013 09:17 PM, Gianluca Cecchi wrote:
On Sun, Mar 24, 2013 at 10:08 AM, Michael Pasternak wrote:
>> was this resolved? >> you've mentioned above you are using 'rhev-agent' - ovirt may >> be checking >> for ovirt-guest-agent'... >> please send list of installed applications as reported by the >> guest agent >> (restapi probably easiest). > > No, only a few lines shown for applications and no wan option > shown in > user portal... > I "compiled" ovirt-guest-agent service for windows XP and > Windows7 > A quick command line example of using rest/api to get > applications?
Applications aren't accessible using REST-API. But it would be great if this would be added as a feature in 3.3... :)
interesting. michael - any reason for this?
the overhead of sending a bulk of applications when listing vms at /vms, but this can be implemented as emulated sub-collection under vm (as we did for /cdroms), i've filed [1] for this.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=3D926928
as a workaround, command line can be done at host level via vdsClient -s 0 getAllVmStats
It remains the problem to use wan options in oVirt. Can I execute some test as in http://www.ovirt.org/How_to_Connect_to_SPICE_Console_Without_Portal
how to translate these wan options if I want to try this way? Thanks Gianluca
=20 spice-devel - what's the command line option for virt-viewer to tweak spice wan behavior? _________________________________________ =20 =20 --spice-disable-effects=3D<wallpaper,font-smooth,animation,all> \\
plus --spice-color-depth=3D16 David
=20 =20 =20 =20 ______
Spice-devel mailing list Spice-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/spice-devel
_______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users
--=20 David Ja=C5=A1a, RHCE SPICE QE based in Brno GPG Key: 22C33E24=20 Fingerprint: 513A 060B D1B4 2A72 7F0D 0278 B125 CD00 22C3 3E24 --=-DmcLZeTJpJyMw/lg7vbq Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Disposition: attachment; filename="smime.p7s" Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIMdTCCBjQw ggQcoAMCAQICAR4wDQYJKoZIhvcNAQEFBQAwfTELMAkGA1UEBhMCSUwxFjAUBgNVBAoTDVN0YXJ0 Q29tIEx0ZC4xKzApBgNVBAsTIlNlY3VyZSBEaWdpdGFsIENlcnRpZmljYXRlIFNpZ25pbmcxKTAn BgNVBAMTIFN0YXJ0Q29tIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA3MTAyNDIxMDE1NVoX DTE3MTAyNDIxMDE1NVowgYwxCzAJBgNVBAYTAklMMRYwFAYDVQQKEw1TdGFydENvbSBMdGQuMSsw KQYDVQQLEyJTZWN1cmUgRGlnaXRhbCBDZXJ0aWZpY2F0ZSBTaWduaW5nMTgwNgYDVQQDEy9TdGFy dENvbSBDbGFzcyAxIFByaW1hcnkgSW50ZXJtZWRpYXRlIENsaWVudCBDQTCCASIwDQYJKoZIhvcN AQEBBQADggEPADCCAQoCggEBAMcJg8zOLdgasSmkLhOrlr6KMoOMpohBllVHrdRvEg/q6r8jR+EK 75xCGhR8ToREoqe7zM9/UnC6TS2y9UKTpT1v7RSMzR0t6ndl0TWBuUr/UXBhPk+Kmy7bI4yW4urC +y7P3/1/X7U8ocb8VpH/Clt+4iq7nirMcNh6qJR+xjOhV+VHzQMALuGYn5KZmc1NbJQYclsGkDxD z2UbFqE2+6vIZoL+jb9x4Pa5gNf1TwSDkOkikZB1xtB4ZqtXThaABSONdfmv/Z1pua3FYxnCFmdr /+N2JLKutIxMYqQOJebr/f/h5t95m4JgrM3Y/w7YX9d7YAL9jvN4SydHsU6n65cCAwEAAaOCAa0w ggGpMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRTcu2SnODaywFc fH6WNU7y1LhRgjAfBgNVHSMEGDAWgBROC+8apEBbpRdphzDKNGhD0EGu8jBmBggrBgEFBQcBAQRa MFgwJwYIKwYBBQUHMAGGG2h0dHA6Ly9vY3NwLnN0YXJ0c3NsLmNvbS9jYTAtBggrBgEFBQcwAoYh aHR0cDovL3d3dy5zdGFydHNzbC5jb20vc2ZzY2EuY3J0MFsGA1UdHwRUMFIwJ6AloCOGIWh0dHA6 Ly93d3cuc3RhcnRzc2wuY29tL3Nmc2NhLmNybDAnoCWgI4YhaHR0cDovL2NybC5zdGFydHNzbC5j b20vc2ZzY2EuY3JsMIGABgNVHSAEeTB3MHUGCysGAQQBgbU3AQIBMGYwLgYIKwYBBQUHAgEWImh0 dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwDQYJKoZIhvcNAQEFBQADggIBAAqDCH14qywG XLhjjF6uHLkjd02hcdh9hrw+VUsv+q1eeQWB21jWj3kJ96AUlPCoEGZ/ynJNScWy6QMVQjbbMXlt UfO4n4bGGdKo3awPWp61tjAFgraLJgDk+DsSvUD6EowjMTNx25GQgyYJ5RPIzKKR9tQW8gGK+2+R HxkUCTbYFnL6kl8Ch507rUdPPipJ9CgJFws3kDS3gOS5WFMxcjO5DwKfKSETEPrHh7p5shuuNktv sv6hxHTLhiMKX893gxdT3XLS9OKmCv87vkINQcNEcIIoFWbP9HORz9v3vQwR4e3ksLc2JZOAFK+s sS5XMEoznzpihEP0PLc4dCBYjbvSD7kxgDwZ+Aj8Q9PkbvE9sIPP7ON0fz095HdThKjiVJe6vofq +n6b1NBc8XdrQvBmunwxD5nvtTW4vtN6VY7mUCmxsCieuoBJ9OlqmsVWQvifIYf40dJPZkk9YgGT zWLpXDSfLSplbY2LL9C9U0ptvjcDjefLTvqSFc7tw1sEhF0n/qpA2r0GpvkLRDmcSwVyPvmjFBGq Up/pNy8ZuPGQmHwFi2/14+xeSUDG2bwnsYJQG2EdJCB6luQ57GEnTA/yKZSTKI8dDQa8Sd3zfXb1 9mOgSF0bBdXbuKhEpuP9wirslFe6fQ1t5j5R0xi72MZ8ikMu1RQZKCyDbMwazlHiMIIGOTCCBSGg AwIBAgIDBl1jMA0GCSqGSIb3DQEBBQUAMIGMMQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRD b20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzE4MDYG A1UEAxMvU3RhcnRDb20gQ2xhc3MgMSBQcmltYXJ5IEludGVybWVkaWF0ZSBDbGllbnQgQ0EwHhcN MTMwNDEwMTE0ODI4WhcNMTQwNDEwMTM1MDM0WjBXMRkwFwYDVQQNExAxUktWVnliSEdDZnRMWjY3 MRkwFwYDVQQDDBBkamFzYUByZWRoYXQuY29tMR8wHQYJKoZIhvcNAQkBFhBkamFzYUByZWRoYXQu Y29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx8unM64NLnlRZujXHb0ilCaqc7KB r1MwlyCtOWAyH4M/24zvfyRQyTz4ZkHd1sMeewJ5ap1/128hLSqMY/6So5yhL6UlK3nM1r9H9PTz CiPEMZmDazIzMb/Mt/4N3kkJBLpWPFRB5aB+COcex7a4dlmnUJASVWkVwvHRmfa06anME7DTccV5 cV95FKqoRUXawopdu5W2NhailCtbQJAbMIGf9FpH+J98swAsVHdvjZkSDnZcoQIPHzoPrEBawb7C vsmCe8p7pv5Dxtx3T47FdAXJiO9u+QJkaBFjfiA9ywN8fFo3Q/Jr4vl6WqEr1SyQjgL9/dWeQSYI 8LzByChnXQIDAQABo4IC1jCCAtIwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0lBBYwFAYI KwYBBQUHAwIGCCsGAQUFBwMEMB0GA1UdDgQWBBQ5AqZ3fyU5HOme+iF4KA3f8RxHPjAfBgNVHSME GDAWgBRTcu2SnODaywFcfH6WNU7y1LhRgjAbBgNVHREEFDASgRBkamFzYUByZWRoYXQuY29tMIIB TAYDVR0gBIIBQzCCAT8wggE7BgsrBgEEAYG1NwECAzCCASowLgYIKwYBBQUHAgEWImh0dHA6Ly93 d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwgfcGCCsGAQUFBwICMIHqMCcWIFN0YXJ0Q29tIENl cnRpZmljYXRpb24gQXV0aG9yaXR5MAMCAQEagb5UaGlzIGNlcnRpZmljYXRlIHdhcyBpc3N1ZWQg YWNjb3JkaW5nIHRvIHRoZSBDbGFzcyAxIFZhbGlkYXRpb24gcmVxdWlyZW1lbnRzIG9mIHRoZSBT dGFydENvbSBDQSBwb2xpY3ksIHJlbGlhbmNlIG9ubHkgZm9yIHRoZSBpbnRlbmRlZCBwdXJwb3Nl IGluIGNvbXBsaWFuY2Ugb2YgdGhlIHJlbHlpbmcgcGFydHkgb2JsaWdhdGlvbnMuMDYGA1UdHwQv MC0wK6ApoCeGJWh0dHA6Ly9jcmwuc3RhcnRzc2wuY29tL2NydHUxLWNybC5jcmwwgY4GCCsGAQUF BwEBBIGBMH8wOQYIKwYBBQUHMAGGLWh0dHA6Ly9vY3NwLnN0YXJ0c3NsLmNvbS9zdWIvY2xhc3Mx L2NsaWVudC9jYTBCBggrBgEFBQcwAoY2aHR0cDovL2FpYS5zdGFydHNzbC5jb20vY2VydHMvc3Vi LmNsYXNzMS5jbGllbnQuY2EuY3J0MCMGA1UdEgQcMBqGGGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t LzANBgkqhkiG9w0BAQUFAAOCAQEArlvH1bAdnpLvyeMQzPtJYs65ur7cpYnrxrIZ3P/r0F7juzIU fb1S+M9sYBhalmBoZQMySlVveDYHUHPDsNJQtqUzYAJMbVTdRtviCSq3wmYtG/VJOOif11gM25u4 HcgXVuhF3di5G0CHwAIx0mjUi7fPJ3WMeFKWp550ZqpbFK/i9A5fJGfHk3MfXOhAu7vkEEjJY+gA BpFqvk134+30mP4KoXfNGZpekWvj6lS/tfaxuuSTusPcY0yIGGtJqqFtL1tRlTIoaDGiok5O0k6W pMFPtm+dGnOyKT4HQMFCaAgBOVCQFDYthuGlnUlJOP/BheuvaMfwgIqM4ir+DIqOyjGCAhswggIX AgEBMIGUMIGMMQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzE4MDYGA1UEAxMvU3RhcnRDb20gQ2xh c3MgMSBQcmltYXJ5IEludGVybWVkaWF0ZSBDbGllbnQgQ0ECAwZdYzAJBgUrDgMCGgUAoF0wGAYJ KoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTMwNDIyMTEzNTQyWjAjBgkq hkiG9w0BCQQxFgQUw8MsXwOBp+5ZtsItZyp4iju8cM0wDQYJKoZIhvcNAQEBBQAEggEAAmvwbMyV udnAOo8PizTWiY9CnMxgmdTZX83eWEVe+/0fKVi9wP8SnTWZE0GTlR5Sn3fCydTD91OS+8CvPTTS z2qzeX9Kj2hvYKhJGvF+UyCBBzzTsqGHh4gEyE4Po7g9jg4UOhCoFlbbnnSglNGVel+NxgNX79mE c9NUcRxKV7Fd4bTtY6dFy/J2m2BHSZZmCisBGtNrttPDp9ddZPMFY2RmHEsT4QkcFNDUBD+8liX7 JQ+TIjTwdSJsCFZyCMPYy4xggZHXYykdoY6zeL/I65W+FdEF8p/GegEsSx0Nnzyd8btc+i5IOlbx +Gtyr/rVq69rUeYdtuUXgqwbX090MQAAAAAAAA== --=-DmcLZeTJpJyMw/lg7vbq--

Itamar Heim:
On 26/02/2013 15:13, Gianluca Cecchi wrote:
I remember someone talking about an option of setting spice to operate over wan, in the sense that this way automatically it would disable effects in windows 7 VM, ecc... I don't remember if this is a VM parameter, hook or other... Or if this is an option available only in RHEV-M
iirc, it's a checkbox in the user portal to pass the wan option flag to spice.
Does this checkbox mean there are some optimization for spice on wan? How does the checkbox affect the remote video stream support? It seems that spice protocol waste many cycles on mjpeg encoding and decoding for video stream.
_______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users
-- --- 舒明 Shu Ming Open Virtualization Engineerning; CSTL, IBM Corp. Tel: 86-10-82451626 Tieline: 9051626 E-mail: shuming@cn.ibm.com or shuming@linux.vnet.ibm.com Address: 3/F Ring Building, ZhongGuanCun Software Park, Haidian District, Beijing 100193, PRC
participants (8)
-
Andrew Cathrow
-
David Jaša
-
Gianluca Cecchi
-
Itamar Heim
-
Michael Pasternak
-
René Koch
-
Shu Ming
-
Vinzenz Feenstra