[Bug 910058] Re: gtk-vnc is unusable slow compared to tightvncviewer

2014-04-16 Thread datube
* Do you see this only with windows guests?
No, most of our KVM machines are Debian and/or Ubuntu. I didn't yet tried a 
Windows guest.

* Is there a linux distribution/release with which you can reproduce
this?

Distribution/release which works as expected:

# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04.4 LTS
Release: 10.04
Codename: lucid

virt-manager (0.3.10-2ubuntu2.2)
libgtk-vnc-1.0-0 (0.3.10-2ubuntu2.2)
python-gtk-vnc (0.3.10-2ubuntu2.2)

Distribution which works slow:
# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 12.04.4 LTS
Release:12.04
Codename: precise

virt-manager (0.9.1-1ubuntu5.1)
libgtk-vnc-1.0-0 (0.5.0-1ubuntu1)
libgtk-vnc-2.0-0 (0.5.0-1ubuntu1)
python-gtk-vnc (0.5.0-1ubuntu1)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/910058

Title:
  gtk-vnc is unusable slow compared to tightvncviewer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk-vnc/+bug/910058/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1021579] Re: ltspfs shows wrong partition size when plug-in usb drive into thin client

2014-04-15 Thread datube
Hi,

I've downloaded the sources for the package ltspfs, applied the
following patch, compiled it, replaced /usr/bin/ltspfs manually and
then it works as expected

Patch:
{{{
--- ltspfs-1.1/src/ltspfs.c
+++ ltspfs-1.1/src/ltspfs.c
@@ -907,14 +907,14 @@
 if (ret)
 return parse_return(in);
 
-xdr_int(in, stbuf-f_type);   /* type of fs */
-xdr_int(in, stbuf-f_bsize);  /* optimal transfer 
block sz */
+xdr_int(in, f_type);   /* type of fs */
+xdr_int(in, f_bsize);  /* optimal transfer block sz 
*/
 xdr_u_longlong_t(in, stbuf-f_blocks); /* total data blocks in fs */
 xdr_u_longlong_t(in, stbuf-f_bfree);  /* free blks in fs */
 xdr_u_longlong_t(in, stbuf-f_bavail); /* free blks avail to non-su 
*/
 xdr_u_longlong_t(in, stbuf-f_files);  /* total file nodes in fs */
 xdr_u_longlong_t(in, stbuf-f_ffree);  /* free file nodes in fs */
-xdr_int(in, stbuf-f_namelen);
+xdr_int(in, f_namelen);
 
 return OK;
 }

}}}

Hope this helps, would be very great if it would be fixed...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1021579

Title:
  ltspfs shows wrong partition size when plug-in usb drive into thin
  client

To manage notifications about this bug go to:
https://bugs.launchpad.net/ltsp/+bug/1021579/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1021579] Re: ltspfs shows wrong partition size when plug-in usb drive into thin client

2014-04-15 Thread datube
Hi,

I need to complete my solution. The above patch is for the server-side
and the following fixes the one for the client (chroot):

{{{
--- ltspfs-1.1/src/ltspfsd_functions.c
+++ ltspfs-1.1/src/ltspfsd_functions.c
@@ -895,8 +895,8 @@
 xdr_int(out, i);   /* dummy length */
 i = LTSP_STATUS_OK;  /* OK status */
 xdr_int(out, i);
-xdr_int(out, f_type);  /* type of fs */
-xdr_int(out, f_bsize); /* optimal transfer block sz 
*/
+xdr_int(out, stbuf.f_type);  /* type of fs */
+xdr_int(out, stbuf.f_bsize); /* optimal transfer 
block sz */
 xdr_u_longlong_t(out, stbuf.f_blocks); /* total data blocks in fs */
 xdr_u_longlong_t(out, stbuf.f_bfree);  /* free blks in fs */
 xdr_u_longlong_t(out, stbuf.f_bavail); /* free blks avail to non-su 
*/
}}}

Still hopes this helps

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1021579

Title:
  ltspfs shows wrong partition size when plug-in usb drive into thin
  client

To manage notifications about this bug go to:
https://bugs.launchpad.net/ltsp/+bug/1021579/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1021579] Re: ltspfs shows wrong partition size when plug-in usb drive into thin client

2014-04-15 Thread datube
Hi again... I made a mistake (guess I need more coffee or something) ,
first patch is reversed... It should read:

{{{
--- ltspfs-1.1/src/ltspfs.c
+++ ltspfs-1.1/src/ltspfs.c
@@ -907,14 +907,14 @@
 if (ret)
 return parse_return(in);

- xdr_int(in, f_type); /* type of fs */
- xdr_int(in, f_bsize); /* optimal transfer block sz */
+ xdr_int(in, stbuf-f_type); /* type of fs */
+ xdr_int(in, stbuf-f_bsize); /* optimal transfer block sz */
 xdr_u_longlong_t(in, stbuf-f_blocks); /* total data blocks in fs */
 xdr_u_longlong_t(in, stbuf-f_bfree); /* free blks in fs */
 xdr_u_longlong_t(in, stbuf-f_bavail); /* free blks avail to non-su */
 xdr_u_longlong_t(in, stbuf-f_files); /* total file nodes in fs */
 xdr_u_longlong_t(in, stbuf-f_ffree); /* free file nodes in fs */
- xdr_int(in, f_namelen);
+ xdr_int(in, stbuf-f_namelen);

 return OK;
 }

}}}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1021579

Title:
  ltspfs shows wrong partition size when plug-in usb drive into thin
  client

To manage notifications about this bug go to:
https://bugs.launchpad.net/ltsp/+bug/1021579/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 910058] Re: gtk-vnc is unusable slow compared to tightvncviewer

2014-04-15 Thread datube
Hi,

I would help you if I was able to understand what you mean. Can you give
me some more directions or can I help in another way?

Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/910058

Title:
  gtk-vnc is unusable slow compared to tightvncviewer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk-vnc/+bug/910058/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 582145] Re: Virtual guests' console is unusably slow due to framebuffer usage

2014-04-04 Thread datube
Hi,

We recently also experiencing this issue on Ubuntu 12.04.  I've tried the 
suggestions stated in comment:1. This didn't gave any relief. To get back to 
the console speed I was used to in Lucid, I did the following:
- downloaded the following files: libgtk-vnc-1.0-0_0.3.10-2ubuntu2.2_i386.deb  
python-gtk-vnc_0.3.10-2ubuntu2.2_i386.deb
- from  python-gtk-vnc: boldy copied /usr/lib/python2.6/dist-packages/gtkvnc.so 
over /usr/lib/python2.7/dist-packages/gtkvnc.so
- downgraded libgtk-vnc: dpkg -i --force-all 
libgtk-vnc-1.0-0_0.3.10-2ubuntu2.2_i386.deb

After that I gained back the usability for virt-manager and I'm able to
watch htop (for examle) as I expected. Maybe this helps.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/582145

Title:
  Virtual guests' console is unusably slow due to framebuffer usage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/582145/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 910058] Re: gtk-vnc is unusable slow compared to tightvncviewer

2014-04-04 Thread datube
Hi,

Although I know that this one is an old one, we experiencing the same
problem with virt-manager. The console is unusable slow to be usefull.
To get back to the console speed I was used to in Lucid, in Precise I
did the following:

- downloaded the following files: libgtk-vnc-1.0-0_0.3.10-2ubuntu2.2_i386.deb  
python-gtk-vnc_0.3.10-2ubuntu2.2_i386.deb
- from python-gtk-vnc: boldy copied /usr/lib/python2.6/dist-packages/gtkvnc.so 
over /usr/lib/python2.7/dist-packages/gtkvnc.so
- downgraded libgtk-vnc: dpkg -i --force-all 
libgtk-vnc-1.0-0_0.3.10-2ubuntu2.2_i386.deb

After that I gained back the usability for virt-manager and I'm able to
watch htop (for example) on a guest as I expected. Hopefully this will
be resolved. Thanks in advance.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/910058

Title:
  gtk-vnc is unusable slow compared to tightvncviewer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk-vnc/+bug/910058/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 969343] Re: Unable to connect to WPA enterprise wireless

2013-05-30 Thread datube
We just implemented a lot Aruba (ap-105) access points and I (we) also
experience this problem (as described @Impact) .  While searching the
www I couldn't really pinpoint what I could do as a work-around. I
myself use 12.04, but the problem also exists on 13.04. I have a
Thinkpad T410s. With the stock kernel (and up-to-date system) I wasn't
able to connect to our wireless network, so I decided to do an install
of a mainline kernel (v3.4-precise). After rebooting I was able to
connect without any troubles.

Do not know if it's (still) relevant but if it is I want to provide you
with any information possible to help with a solution

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/969343

Title:
  Unable to connect to WPA enterprise wireless

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/969343/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 487856] Re: Print dialog goes off the screen

2011-01-28 Thread datube
Ubuntu 9.10
epdfview: 0.1.7-2

Hi, here at our site we have the same problem. I've included a patch
which we succesfully implemented. I'm not a C/GTK programmer, but the
solution seems to do the job. The attached patch adds scrollbars to the
treeview widget (which is used to show the available printers).

** Patch added: Add scrollbars to the printer list
   
https://bugs.launchpad.net/ubuntu/+source/epdfview/+bug/487856/+attachment/1812415/+files/epdfview_0.1.7-2_i386.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/487856

Title:
  Print dialog goes off the screen

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs