Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread John A. Sullivan III
On Tue, 2010-06-22 at 23:10 -0500, Gerry Reno wrote:
 Don't know if these are errors are just info.
 From /var/log/cups/error_log:
 E [22/Jun/2010:16:38:04 +] Unable to remove temporary file
 /var/spool/cups/tmp/.hplip - Is a directory
 E [22/Jun/2010:16:38:04 +] Unable to open listen socket for
 address :::631 - Address family not supported by protocol.
 E [22/Jun/2010:16:38:04 +] Unable to open listen socket for
 address ::1:631 - Address family not supported by protocol.
 E [22/Jun/2010:16:38:04 +] Unable to bind socket for address
 127.0.0.1:631 - Address already in use.
 
 I think the last line is there because I put 'Listen localhost:631' in
 conf file.  But that was after getting no printing so I just wanted to
 make sure that was in there.  The other lines are related to ipv6
 which is disabled.
 
 -Gerry
 
 
 Jun 22, 2010 11:52:55 PM, x2go-dev@lists.berlios.de wrote:
 Been sitting here waiting for a followup post of mine to hit
 the list.  But it's been almost two hours and nothing.  Seems
 like it takes almost an hour for my posts to hit this list.
 Very strange.
 
 Anyway, I've been looking through every log I can find and the
 only small things that I found on the client are this:
 
 /var/log/kern.log:800:Jun 21 12:28:57 grp-01-23-02 kernel: [
 12.471640] amd64_edac: probe of :00:18.2 failed with error
 -22
 /var/log/kern.log:887:Jun 21 14:10:23 grp-01-23-02 kernel:
 [ 6072.764688] x2goclient_gtk[2808]: segfault at 7e ip
 7fc828b5cb20 sp 7fff60ad3f70 error 4 in
 libglib-2.0.so.0.2400.0[7fc828b28000+db000]
 /var/log/messages:630:Jun 21 12:28:57 grp-01-23-02 kernel: [
 12.471640] amd64_edac: probe of :00:18.2 failed with error
 -22
 /var/log/messages:716:Jun 21 14:10:23 grp-01-23-02 kernel:
 [ 6072.764688] x2goclient_gtk[2808]: segfault at 7e ip
 7fc828b5cb20 sp 7fff60ad3f70 error 4 in
 libglib-2.0.so.0.2400.0[7fc828b28000+db000]
 /var/log/dmesg:799:[   12.471640] amd64_edac: probe of
 :00:18.2 failed with error -22
 
 That's all.
 
 And I doubt these segfaults are relevant because I've tried
 printing dozens of times.
 
snip
I doubt your problem is specifically the printing although it is
possible.  It seems more related to fuse/sshfs since you also cannot
establish local shares.  That's why I would suggest either adding some
debugging to the x2gomountdirs script or try to reproduce its activities
manually to see where it is failing.

Out of curiosity, what happens if you use the regular, Qt client rather
than the gtk client? I'm not sure at what point development of the gtk
client stopped.  Good luck - John

___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] Extra functions requested in x2go

2010-06-23 Thread John A. Sullivan III
On Tue, 2010-06-22 at 17:10 +0200, Dick Kniep wrote:
  
 
 
 Hi List,
  
 
 Well, actually it is not that difficult to export from the server to
 the client. In fact, as the user directory is mounted and the user is
 logged on to the server and is executing our system, it is quite easy.
 From our system we write the file to the mounted directory and voila
 it is on the client. No problems with authorization either, because
 the user himself is writing to the mounted directory.
 
  
 
 The next part is trickier. If we want to start the application on the
 client we should have a command in x2go so that it signals the
 x2goclient to start the specific file. So no polling, but simply an
 extra command that is called on the server and sends a message to the
 client. Now this means a change in the client, and a protocol for the
 message that is used. Furthermore a command on the server should be
 there to signal the start of the program on the client. This could be
 something like x2gorunclient path-to-the-file
snip
Hmm . . . if you do have ssh in both directions, perhaps you could have
the script reside on the client and have the server call it.  So the
client script would be:

#!/bin/bash
x2goscript ${1}

and the server would be
#!/bin/bash
cp spreadsheet.xls ~/media/someshare/
ssh clientaddress x2goscript someshare/spreadsheet.xls

If it can't be driven by the server, then I suppose one could create a
daemon to poll the share directory for the appearance of new files.
Just a couple of thoughts - John

___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] Extra functions requested in x2go

2010-06-23 Thread John A. Sullivan III
On Tue, 2010-06-22 at 17:10 +0200, Dick Kniep wrote:
  
 
 
 Hi List,
  
 
 Well, actually it is not that difficult to export from the server to
 the client. In fact, as the user directory is mounted and the user is
 logged on to the server and is executing our system, it is quite easy.
 From our system we write the file to the mounted directory and voila
 it is on the client. No problems with authorization either, because
 the user himself is writing to the mounted directory.
 
  
 
 The next part is trickier. If we want to start the application on the
 client we should have a command in x2go so that it signals the
 x2goclient to start the specific file. So no polling, but simply an
 extra command that is called on the server and sends a message to the
 client. Now this means a change in the client, and a protocol for the
 message that is used. Furthermore a command on the server should be
 there to signal the start of the program on the client. This could be
 something like x2gorunclient path-to-the-file
snip
By the way, I'm not sure how well X2Go handles multiple client instances
on the same client.  I believe that is supported in the next release;
I'm not sure if they step on each other in the current version - John

___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote:I doubt your problem is 
specifically the printing although it ispossible.  It seems more 
related to fuse/sshfs since you also cannotestablish local shares.  
That's why I would suggest either adding somedebugging to the 
x2gomountdirs script or try to reproduce its activitiesmanually to 
see where it is failing.Out of curiosity, what happens if you 
use the regular, Qt client ratherthan the gtk client? I'm not sure 
at what point development of the gtkclient stopped.  Good luck - 
John___Hi John, Well I setup a whole new server from scratch (lucid again) and tried printing from it back to the same client and got the same results - no printing or shares. So I went looking for the Qt client but I don't see it:# apt-show-versions -a -R x2go | grep clientx2goclient 3.01-5 lenny x2go.obviously-nice.dex2goclient not installedx2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.dex2goclient-cli not installedx2goclient-gtk 3.01-8 install ok installedx2goclient-gtk 3.01-8 lenny x2go.obviously-nice.dex2goclient-gtk/lenny uptodate 3.01-8x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.dex2gothinclient not installedx2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.dex2gothinclientsystem not installedIs it the plain 'x2goclient'? The version doesn't look as recent as the gtk client.-Gerry
___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread John A. Sullivan III
On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote:
 Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote:
snip
 
 Hi John,
   Well I setup a whole new server from scratch (lucid again) and tried
 printing from it back to the same client and got the same results - no
 printing or shares.  So I went looking for the Qt client but I don't
 see it:
 
 # apt-show-versions -a -R x2go | grep client
 x2goclient 3.01-5 lenny x2go.obviously-nice.de
 x2goclient not installed
 x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de
 x2goclient-cli not installed
 x2goclient-gtk 3.01-8 install ok installed
 x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de
 x2goclient-gtk/lenny uptodate 3.01-8
 x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de
 x2gothinclient not installed
 x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de
 x2gothinclientsystem not installed
 
 Is it the plain 'x2goclient'?  The version doesn't look as recent as
 the gtk client.
 
snip
Yes, sorry, that's a bit confusing.  x2goclient 3.0.1-5 is the Qt
version - John

___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

While I'm working on getting the Qt client, here's something interesting I just tried:# sshfs -o IdentityFile=keypair1.pem ubu...@testmachine1:/home/ubuntu /tmp/sshfs_mount# mount | grep sshubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs (rw,nosuid,nodev,max_read=65536)So I can mount a server directory back on the client manually.-GerryJun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote:On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote: Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote:  Hi John,   Well I setup a whole new server from scratch (lucid again) and tried printing from it back to the same client and got the same results - no printing or shares.  So I went looking for the Qt client but I don't see it:  # apt-show-versions -a -R x2go | grep client x2goclient 3.01-5 lenny x2go.obviously-nice.de x2goclient not installed x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de x2goclient-cli not installed x2goclient-gtk 3.01-8 install ok installed x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de x2goclient-gtk/lenny uptodate 3.01-8 x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de x2gothinclient not installed x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de x2gothinclientsystem not installed  Is it the plain 'x2goclient'?  The version doesn't look as recent as the gtk client. Yes, sorry, that's a bit confusing.  x2goclient 3.0.1-5 is the Qtversion - John___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev
___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread John A. Sullivan III
By the way, is the X2Go Server running on bare-metal so to speak or is
it a virtual machine? If the latter, what type? Thanks - John

On Wed, 2010-06-23 at 15:05 -0500, Gerry Reno wrote:
 While I'm working on getting the Qt client, here's something
 interesting I just tried:
 
 # sshfs  -o IdentityFile=keypair1.pem
 ubu...@testmachine1:/home/ubuntu  /tmp/sshfs_mount
 # mount | grep ssh
 ubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs
 (rw,nosuid,nodev,max_read=65536)
 
 So I can mount a server directory back on the client manually.
 
 -Gerry
 
 
 
 Jun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote:
 On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote:
  Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote:
 
  
  Hi John,
  Well I setup a whole new server from scratch (lucid again)
 and tried
  printing from it back to the same client and got the same
 results - no
  printing or shares. So I went looking for the Qt client but
 I don't
  see it:
  
  # apt-show-versions -a -R x2go | grep client
  x2goclient 3.01-5 lenny x2go.obviously-nice.de
  x2goclient not installed
  x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de
  x2goclient-cli not installed
  x2goclient-gtk 3.01-8 install ok installed
  x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de
  x2goclient-gtk/lenny uptodate 3.01-8
  x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de
  x2gothinclient not installed
  x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de
  x2gothinclientsystem not installed
  
  Is it the plain 'x2goclient'? The version doesn't look as
 recent as
  the gtk client.
  
 
 Yes, sorry, that's a bit confusing. x2goclient 3.0.1-5 is the
 Qt
 version - John
 
 ___
 X2go-dev mailing list
 X2go-dev@lists.berlios.de
 https://lists.berlios.de/mailman/listinfo/x2go-dev
 ___
 X2go-dev mailing list
 X2go-dev@lists.berlios.de
 https://lists.berlios.de/mailman/listinfo/x2go-dev


___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

The server is running on Xen hypervisor. I wouldn't think that would make any difference at all. I have tons of servers running on Xen without any problems.-GerryJun 23, 2010 04:31:45 PM, x2go-dev@lists.berlios.de wrote:By the way, is the X2Go Server running on bare-metal so to speak or isit a virtual machine? If the latter, what type? Thanks - JohnOn Wed, 2010-06-23 at 15:05 -0500, Gerry Reno wrote: While I'm working on getting the Qt client, here's something interesting I just tried:  # sshfs  -o IdentityFile=keypair1.pem ubu...@testmachine1:/home/ubuntu  /tmp/sshfs_mount # mount | grep ssh ubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs (rw,nosuid,nodev,max_read=65536)  So I can mount a server directory back on the client manually.  -GerryJun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote: On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote:  Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote: Hi John,  Well I setup a whole new server from scratch (lucid again) and tried  printing from it back to the same client and got the same results - no  printing or shares. So I went looking for the Qt client but I don't  see it:# apt-show-versions -a -R x2go | grep client  x2goclient 3.01-5 lenny x2go.obviously-nice.de  x2goclient not installed  x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de  x2goclient-cli not installed  x2goclient-gtk 3.01-8 install ok installed  x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de  x2goclient-gtk/lenny uptodate 3.01-8  x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de  x2gothinclient not installed  x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de  x2gothinclientsystem not installedIs it the plain 'x2goclient'? The version doesn't look as recent as  the gtk client.Yes, sorry, that's a bit confusing. x2goclient 3.0.1-5 is the Qt version - John  ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev
___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

Here is the cups access log on the server.You can see that everything looks normal.localhost - ubuntu [23/Jun/2010:17:35:26 +] "POST /admin/ HTTP/1.1" 200 141 Resume-Printer successful-oklocalhost - ubuntu [23/Jun/2010:17:35:26 +] "POST /admin/ HTTP/1.1" 200 141 CUPS-Accept-Jobs successful-oklocalhost - ubuntu [23/Jun/2010:17:35:26 +] "POST /admin/ HTTP/1.1" 200 141 CUPS-Set-Default successful-oklocalhost - ubuntu [23/Jun/2010:17:35:26 +] "POST /admin/ HTTP/1.1" 200 163 CUPS-Add-Modify-Printer successful-oklocalhost - ubuntu [23/Jun/2010:17:35:26 +] "POST /admin/ HTTP/1.1" 200 184 CUPS-Add-Modify-Printer successful-oklocalhost - - [23/Jun/2010:17:35:42 +] "POST /printers/Generic-CUPS-X2GO-Printer HTTP/1.1" 200 205779 Print-Job successful-oklocalhost - - [23/Jun/2010:17:35:43 +] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-oklocalhost - - [23/Jun/2010:17:36:15 +] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-oklocalhost - - [23/Jun/2010:20:27:02 +] "POST /printers/Generic-CUPS-X2GO-Printer HTTP/1.1" 200 11157 Print-Job successful-oklocalhost - - [23/Jun/2010:20:47:32 +] "POST /printers/Generic-CUPS-X2GO-Printer HTTP/1.1" 200 11157 Print-Job successful-okExcept no output ever goes anywhere.-GerryJun 23, 2010 04:36:12 PM, x2go-dev@lists.berlios.de wrote:



The server is running on Xen hypervisor. I wouldn't think that would make any difference at all. I have tons of servers running on Xen without any problems.-GerryJun 23, 2010 04:31:45 PM, x2go-dev@lists.berlios.de wrote:By the way, is the X2Go Server running on bare-metal so to speak or isit a virtual machine? If the latter, what type? Thanks - JohnOn Wed, 2010-06-23 at 15:05 -0500, Gerry Reno wrote: While I'm working on getting the Qt client, here's something interesting I just tried:  # sshfs  -o IdentityFile=keypair1.pem ubu...@testmachine1:/home/ubuntu  /tmp/sshfs_mount # mount | grep ssh ubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs (rw,nosuid,nodev,max_read=65536)  So I can mount a server directory back on the client manually.  -GerryJun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote: On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote:  Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote: Hi John,  Well I setup a whole new server from scratch (lucid again) and tried  printing from it back to the same client and got the same results - no  printing or shares. So I went looking for the Qt client but I don't  see it:# apt-show-versions -a -R x2go | grep client  x2goclient 3.01-5 lenny x2go.obviously-nice.de  x2goclient not installed  x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de  x2goclient-cli not installed  x2goclient-gtk 3.01-8 install ok installed  x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de  x2goclient-gtk/lenny uptodate 3.01-8  x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de  x2gothinclient not installed  x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de  x2gothinclientsystem not installedIs it the plain 'x2goclient'? The version doesn't look as recent as  the gtk client.Yes, sorry, that's a bit confusing. x2goclient 3.0.1-5 is the Qt version - John  ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev
___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

Ok, I just installed the Qt client and it connects to the server just fine but has the exact same problem as the gtk client - no printing - no shares. This is using lucid for both client and server. I cannot find any errors and the cups log shows that my docs are printing.-GerryJun 23, 2010 04:06:04 PM, x2go-dev@lists.berlios.de wrote:



While I'm working on getting the Qt client, here's something interesting I just tried:# sshfs -o IdentityFile=keypair1.pem ubu...@testmachine1:/home/ubuntu /tmp/sshfs_mount# mount | grep sshubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs (rw,nosuid,nodev,max_read=65536)So I can mount a server directory back on the client manually.-GerryJun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote:On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote: Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote:  Hi John,   Well I setup a whole new server from scratch (lucid again) and tried printing from it back to the same client and got the same results - no printing or shares.  So I went looking for the Qt client but I don't see it:  # apt-show-versions -a -R x2go | grep client x2goclient 3.01-5 lenny x2go.obviously-nice.de x2goclient not installed x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de x2goclient-cli not installed x2goclient-gtk 3.01-8 install ok installed x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de x2goclient-gtk/lenny uptodate 3.01-8 x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de x2gothinclient not installed x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de x2gothinclientsystem not installed  Is it the plain 'x2goclient'?  The version doesn't look as recent as the gtk client. Yes, sorry, that's a bit confusing.  x2goclient 3.0.1-5 is the Qtversion - John___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev
___
X2go-dev mailing list
X2go-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2go-dev] trouble getting printing to work

2010-06-23 Thread Gerry Reno

I closed out the existing 'gedit' and restarted the session again and this time I have 2 sshfs mounts and printing now works as well. What an exercise!-GerryJun 23, 2010 10:46:15 PM, x2go-dev@lists.berlios.de wrote:



Ok, I go and 'modprobe fuse' again on both server and client. On client I get an error: FATAL: Module fuse not found. I know this is stupid error because I already have manually mounted sshfs previously. I go into x2goclient interface and redefine mountpoint, redo everything under printing. Disconnect, reboot everything, reconnect. I click the Share button on the client and select the mount and click Share. I run 'mount' on the server and lo and behold I see a sshfs mounted directory. Yay! So then I bring up 'gedit' and type a few words and try to print but I get same as before - no printing. So I got halfway there but I'm really not sure exactly what made the shares work. Now to try to figure out what keeps printing from working...-GerryJun 23, 2010 08:24:39 PM, x2go-dev@lists.berlios.de wrote:Then I think you are going to have to add debugging to the scripts orwalk through them and try the commands manually to find out where it isfailing.  I do know Ubuntu is not a supported platform but the fixes tomake it work may be simple.Ah - just a thought.  It could be the scripts are making calls that areonly supported in bash.  I believe the default shell in Ubuntu is dash.What happens if you change the default system shell, i.e., links /bin/shto /bin/bash instead of /bin/dash? Does that fix the problem? - JohnOn Wed, 2010-06-23 at 15:32 -0500, Gerry Reno wrote: Ok, I just installed the Qt client and it connects to the server just fine but has the exact same problem as the gtk client - no printing - no shares.  This is using lucid for both client and server.  I cannot find any errors and the cups log shows that my docs are printing.  -GerryJun 23, 2010 04:06:04 PM, x2go-dev@lists.berlios.de wrote: While I'm working on getting the Qt client, here's something interesting I just tried:  # sshfs  -o IdentityFile=keypair1.pem ubu...@testmachine1:/home/ubuntu  /tmp/sshfs_mount # mount | grep ssh ubu...@testmachine1:/home/ubuntu on /tmp/sshfs_mount type fuse.sshfs (rw,nosuid,nodev,max_read=65536)  So I can mount a server directory back on the client manually.  -GerryJun 23, 2010 03:38:38 PM, x2go-dev@lists.berlios.de wrote: On Wed, 2010-06-23 at 13:21 -0500, Gerry Reno wrote:  Jun 23, 2010 06:19:18 AM, x2go-dev@lists.berlios.de wrote: Hi John,  Well I setup a whole new server from scratch (lucid again) and tried  printing from it back to the same client and got the same results - no  printing or shares. So I went looking for the Qt client but I don't  see it:# apt-show-versions -a -R x2go | grep client  x2goclient 3.01-5 lenny x2go.obviously-nice.de  x2goclient not installed  x2goclient-cli 3.0.1-1.2 lenny x2go.obviously-nice.de  x2goclient-cli not installed  x2goclient-gtk 3.01-8 install ok installed  x2goclient-gtk 3.01-8 lenny x2go.obviously-nice.de  x2goclient-gtk/lenny uptodate 3.01-8  x2gothinclient 1.0.1-1 lenny x2go.obviously-nice.de  x2gothinclient not installed  x2gothinclientsystem 1.0.1-2 lenny x2go.obviously-nice.de  x2gothinclientsystem not installedIs it the plain 'x2goclient'? The version doesn't look as recent as  the gtk client.Yes, sorry, that's a bit confusing. x2goclient 3.0.1-5 is the Qt version - John  ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev   __  ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev ___ X2go-dev mailing list X2go-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing listX2go-dev@lists.berlios.dehttps://lists.berlios.de/mailman/listinfo/x2go-dev___X2go-dev mailing