Custom Query (230 matches)
Results (46 - 48 of 230)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#236 | invalid | Setting Up WinSwitch over a local network | ||
Description |
I have two computers networked together via an ethernet crossover cable and I'm trying to figure out what to do to make WinSwitch? work between them. There is a lot of jargon being used the software that I'm not familiar with. Could I perhaps get a step by step on how to set up WinSwitch?? I'm running Windows 7 on both machines. I already use Mouse Without Borders between the two computers to allow the mouse and individual files to go between both computers, but it would be nice to move program windows as well. |
|||
#235 | notabug | GPG error: expired keys | ||
Description |
Using Debians apt-get update give me this error message: '''W: GPG error: http://winswitch.org sid Release: The following signatures were invalid: KEYEXPIRED 1367717527 KEYEXPIRED 1367717527 KEYEXPIRED 1367717527''' My /etc/apt/sources.list.d/winswitch.list contains this: ## TigerVNC deb http://winswitch.org/ sid main Yours sincerely Joerg Schiermeier |
|||
#233 | fixed | distros without glib bindings - Attribute Error: 'module' object has no attribute 'threads_init' | ||
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' |