Re: Miscellaneous questions
On Mon, Apr 21, 2008 at 05:03:53PM +0800, Rommel Martinez wrote:
> 2.
> Has anybody experienced running LispWorks from the network?
>
> I'm trying to run LispWorks from an X tunnel via SSH. It seems
> to load well, but then I use some of the tools, like the Window
> Browser, I get a dialog box saying something like the following:
>
> ----------------------------------------------------------------------
> X ERROR
> Display: #<X-LIBRARY:DISPLAY "localhost:10.0" = #x0817E800>
> Error: BadGC (invalid GC parameter)
> Major opcode of failed request: 59 (X_SetClipRectangles)
> ResourceID: 0x1A00281 (27263617)
> ----------------------------------------------------------------------
>
> With only an OK button. Now when I click that button, another window
> with the same contents appear, and so on. And the only way (so far)
> that I know to stop it is to kill LispWorks altogether.
>
> Is it an X problem? Is it because of the tunnel? What have I
> missed? It works well however, when ran locally.
I have not tried Lispworks over ssh, but I have had problems running
some programs over ssh using ssh's dedicated X forwarding. For some
programs, you can workaround by forwarding X using normal ssh port
forwarding, e.g.
% ssh -R 6001:localhost:6000 host
% export DISPLAY=localhost:1
% your_program
I don't know why this works. :(
And, of course, this may or may not help with Lispworks.
-- Larry