Package: python-x2go
Severity: wishlist
Enable TCP socket in PulseAudio before starting a session (that
requests pulse support). See below.
Mike
----- Weitergeleitete Nachricht von Tim Kruse <tim.kruse(a)kikxxl.de> -----
Datum: Wed, 16 Oct 2013 13:23:19 +0200
Von: Tim Kruse <tim.kruse(a)kikxxl.de>
Betreff: Re: [X2Go-User] pyhoca-cli sound issues [SOLVED]
An: x2go-user(a)lists.berlios.de
Am 16.10.2013 12:44, schrieb Tim Kruse:
> which is clear, as there is no open port 4713.
>
> So, if pyhoca or python-x2go is not able to handle this, is there a
> chance to let pulseaudio open this port otherwise? I think of some kind
> of script, which will be executed before pyhoca ...
I got it:
pacmd load-module module-native-protocol-tcp listen=0.0.0.0
before the start of pyhoca-cli let the running pulseaudio deamon open
it's port. Or let pulseaudio open the port by default by adding the
above line to /etc/pulse/default.pa ...
Perhaps it's possible to let pyhoca, or python-x2go respectively, open
the port like x2goclient does ... but for me the above solution is
enough ...
So long, Tim
_______________________________________________
X2Go-User mailing list
X2Go-User(a)lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-user
----- Ende der weitergeleiteten Nachricht -----
--
DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148
GnuPG Key ID 0x25771B31
mail: mike.gabriel(a)das-netzwerkteam.de, http://das-netzwerkteam.de
freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.x…
Processing commands for control(a)bugs.x2go.org:
> archive #84
Bug #84 {Done: Juri Grabowski <x2go(a)jugra.de>} [nx-libs] DESTDIR and OPTFLAGS patches for nx-libs
archived 84 to archive/84 (from 84)
> archive #879
Bug #879 [nx-libs] CVE backports incomplete or wrong
Bug 879 cannot be archived
> archive #866
Bug #866 [nx-libs] Fix compilation errors in nxcomp (nx-libs) when macros TEST/DEBUG/... are defined (developer support)
Bug 866 cannot be archived
> kthxbye
Stopping processing here.
Please contact me if you need assistance.
--
84: https://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=84
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Processing control commands:
> close -1
Bug #392 [python-x2go] Wishlist for USB support in unity greeter
Marked Bug as done
> tag -1 wontfix
Bug #392 {Done: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>} [python-x2go] Wishlist for USB support in unity greeter
Added tag(s) wontfix.
--
392: https://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=392
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Control: close -1
Control: tag -1 wontfix
This feature will not be worked on any time soon unless contracted. So
closing.
--
DAS-NETZWERKTEAM
c\o Technik- und Ökologiezentrum Eckernförde
Mike Gabriel, Marienthaler Str. 17, 24340 Eckernförde
mobile: +49 (1520) 1976 148
landline: +49 (4351) 850 8940
GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22 0782 9AF4 6B30 2577 1B31
mail: mike.gabriel(a)das-netzwerkteam.de, http://das-netzwerkteam.de
Package: python-x2go
Severity: wishlist
Version: 0.5.0.1
Hi all,
below is a recipe to get Python X2Go flying on Mac OS X (up to 10.10).
Mike
----- Weitergeleitete Nachricht von Pedro Pinto <ppinto(a)alum.mit.edu> -----
Datum: Mon, 20 Oct 2014 14:01:32 -0700
Von: Pedro Pinto <ppinto(a)alum.mit.edu>
Betreff: Re: Python X2Go for Mac OS X
An: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Hi Mike,
Thanks for your help over the weekend.
> Have you had success already with monkey patching Xlib? Is the
> nxproxy build working on Yosemite?
Indeed, with your help I was able to patch Xlib and recompile nxproxy,
so that python-x2go works on yosemite!
> here is a short reminder message for sending me the diff between
> Python X2Go 0.4.0.8 and your fork for Mac OS X.
My fork of Python X2GO 0.4.0.8 is quite modified to tailor the
specifics of the product my company is working on
(https://www.lytmus.io/ <https://www.lytmus.io/>), but the basic
changes to get it working on Mac and Yosemite are trivial, and I have
included them below.
By the way, I’m happy to test the new release of Python X2go 0.5 over
the next weekend, just let me know.
Python-Xlib 0.15rc1
Replace two instances of:
host.startswith('/tmp/') ——> host.startswith('/')
NXproxy
Apply this patch and recompile:
http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=b0727a02ff417b3983…
<http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=b0727a02ff417b3983…>
Neverpanic helped me recompile nxproxy and nxcomp.
python x2go 0.4.0.8
You just need to specify the path to the nxproxy file on the Mac package.
The code below is specific to how I package my app (I use py2app).
else:
self.PROXY_CMD = "/usr/bin/nxproxy
——>
elif _X2GOCLIENT_OS == 'Darwin':
if hasattr(sys, 'frozen'): # if client app is frozen
self.PROXY_CMD = join(os.environ['RESOURCEPATH'], 'nxproxy')
else:
self.PROXY_CMD = join(x2go_abs, 'contrib', 'mac’,
nxproxy', 'nxproxy')
elif _X2GOCLIENT_OS == 'Linux':
if hasattr(sys, 'frozen'): # if client app is frozen
self.PROXY_CMD = join(os.environ['RESOURCEPATH'],
'nxproxy', 'start_nxproxy')
else:
self.PROXY_CMD = join(x2go_abs, 'contrib', 'linux’,
'nxproxy', 'start_nxproxy')
----- Ende der weitergeleiteten Nachricht -----
--
DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148
GnuPG Key ID 0x25771B31
mail: mike.gabriel(a)das-netzwerkteam.de, http://das-netzwerkteam.de
freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.x…
Processing commands for control(a)bugs.x2go.org:
> archive 866
Bug #866 [nx-libs] Fix compilation errors in nxcomp (nx-libs) when macros TEST/DEBUG/... are defined (developer support)
Bug 866 cannot be archived
> thanks
Stopping processing here.
Please contact me if you need assistance.
--
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Processing commands for control(a)bugs.x2go.org:
> archive 879
Bug #879 [nx-libs] CVE backports incomplete or wrong
Bug 879 cannot be archived
> thanks
Stopping processing here.
Please contact me if you need assistance.
--
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Processing commands for control(a)bugs.x2go.org:
> close 84
Bug #84 [nx-libs] DESTDIR and OPTFLAGS patches for nx-libs
Marked Bug as done
> Hello,
Unknown command or malformed arguments to command.
> Note, that we are currently migrating to GitLab and its issue tracker, hence
Unknown command or malformed arguments to command.
> the manual bug closure.
Unknown command or malformed arguments to command.
> nx-libs becomes a new upstream on github:
Unknown command or malformed arguments to command.
> https://github.com/ArcticaProject/nx-libs
Unknown command or malformed arguments to command.
Too many unknown commands, stopping here.
Please contact me if you need assistance.
--
84: https://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=84
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Processing commands for control(a)bugs.x2go.org:
> archive 84
Bug #84 [nx-libs] DESTDIR and OPTFLAGS patches for nx-libs
Bug 84 cannot be archived
> thanks
Stopping processing here.
Please contact me if you need assistance.
--
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems
Processing commands for control(a)bugs.x2go.org:
> archive 884
Bug #884 {Done: Juri Grabowski <x2go(a)jugra.de>} [nx-libs] nxagent fails to run with "Could not open default font 'fixed'"
archived 884 to archive/84 (from 884)
> thanks
Stopping processing here.
Please contact me if you need assistance.
--
884: https://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=884
X2Go Bug Tracking System
Contact owner(a)bugs.x2go.org with problems