Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (226 - 228 of 230)

Ticket
#270
Description

After upgrading a linux server to openssh 6.7, I'm no longer able to connect to it from MS Windows (winswitch 0.12.20). In the server's log I see "fatal: Unable to negotiate a key exchange method [preauth]". I have no trouble connecting to the server via putty.

It seems that this is a twisted-conch issue: http://twistedmatrix.com/trac/ticket/7672

However, I assume that even once that's fixed, some work will be required on winswitch's part, too, even if only to create a new build; so opening a ticker here, too.

#120
Description

In file http://winswitch.org/dists/lenny/main/binary-i386/Packages, as well as in Packages for other Debian/Ubuntu? versions, xpra is mentioned as a dependency for winswitch, but its description is missing in the mentioned Packages. The package correctly resides in http://winswitch.org/dists/lenny/main/binary-i386/xpra-0.0.7.16.i386.deb and after downloading and installing with

dpkg --install xpra-0.0.7.16.i386.deb

the installation of winswitch from the repository succeedes.

#233
Description

When I install winswitch on Centos 6.4, I get the following error. Installation went fine, no issues. (Windows version worked fine too, no issues.) I'm assuming it needs something similar to the following added:

        try:
            glib.threads_init()
        except AttributeError:
            #old versions of glib may not have this method
            pass
        try:
            gobject.threads_init()
        except AttributeError:
            #old versions of gobject may not have this method
            pass

Here is the actual error message I'm getting:

$ winswitch_server
[DD] 2013/13/03 16:34:58.449676 main_loop.loop_init(False)
Traceback (most recent call last):
  File "/usr/bin/winswitch_server", line 5, in <module>
    server_wrapper.main()
  File "/usr/lib/python2.6/site-packages/winswitch/server/server_wrapper.py", line 50, in main
    from winswitch.server.controller import WinSwitchServer
  File "/usr/lib/python2.6/site-packages/winswitch/server/controller.py", line 20, in <module>
    reactor = loop_init(False)
  File "/usr/lib/python2.6/site-packages/winswitch/util/main_loop.py", line 21, in loop_init
    glib.threads_init()
AttributeError: 'module' object has no attribute 'threads_init'
Note: See TracQuery for help on using queries.