Ask a Question related to FreeBSD, Design and Development.
-
Brian John #1
How can I start a GUI application through SSH
Hello,
I would like to be able to start an X application through ssh. I want the
app to actually run on my local box (meaning I want the window to pop up
on the box that I am ssh-ing to), but I just want to be able to start it
remotely. Can someone help me figure out how to do this?
Thanks
/Brian
Brian John Guest
-
Cant start CF application server [mx7]
I was updating jdbc connection information, had the mx services shut down, an when I tried to restart application server would not restart, the... -
Can't start asp.net web application
When I try, the name is greyed out. If I click OK, I get the following error message: Visual Studio Net has detected that the specified web... -
Trying to start an application
Hi, I've upgraded to .NET 2003 and I opened an .NET 2002 app and let the new IDE convert it to .NET 2003 project. Then I tried to start the... -
problem when i try to start a ASP.NET application
hai !! i have recently installed vs.net on my computer (xp pro operating system). when i tried to create web pages using asp.net it worked fine.... -
start application during flash
Hi there, is it possible to start an external application during a swf-file? Background: I want to create an desktop with flash, where it's posible... -
Ean Kingston #2
Re: How can I start a GUI application through SSH
On February 21, 2005 03:25 pm, Brian John wrote:
For the purpose of this discussion, the 'server' is the remote system the one> Hello,
> I would like to be able to start an X application through ssh. I want the
> app to actually run on my local box (meaning I want the window to pop up
> on the box that I am ssh-ing to), but I just want to be able to start it
> remotely. Can someone help me figure out how to do this?
you are ssh-ing to. The 'client' is the one you are ssh-ing from.
1) Before you leave, go to the server and logon at the console so that you
have X running. Make a note of the 'DISPLAY' variable setting. Probably
":0.0".
$ echo $DISPLAY
:0.0
Do NOT log out.
2) Use SSH to connect to the server as the same user that logged on.
3) Set the DISPLAY variable to the one indicated in step 1.
$ export DISPLAY=:0.0
4) Run the command you want (with nohup and in the background.
$ nohup xterm -sb &
That will run the command so that output is displayed on the server console
and let you log out of your ssh session.
If you want to learn more, you should read up on the xauth command. Also, try
to understand X toolkit basics.
Why do you want to do this anyway?
--
Ean Kingston
E-Mail: ean AT hedron DOT org
URL: [url]http://www.hedron.org/[/url]
Ean Kingston Guest
-
Brian John #3
Re: How can I start a GUI application through SSH
----- Original Message -----The reason that I want to do this is because I have a GUI app that> On February 21, 2005 03:25 pm, Brian John wrote:>>> Hello,
>> I would like to be able to start an X application through ssh. I want
>> the
>> app to actually run on my local box (meaning I want the window to pop up
>> on the box that I am ssh-ing to), but I just want to be able to start it
>> remotely. Can someone help me figure out how to do this?
> For the purpose of this discussion, the 'server' is the remote system the
> one
> you are ssh-ing to. The 'client' is the one you are ssh-ing from.
>
> 1) Before you leave, go to the server and logon at the console so that you
> have X running. Make a note of the 'DISPLAY' variable setting. Probably
> ":0.0".
> $ echo $DISPLAY
> :0.0
> Do NOT log out.
>
> 2) Use SSH to connect to the server as the same user that logged on.
>
> 3) Set the DISPLAY variable to the one indicated in step 1.
> $ export DISPLAY=:0.0
>
> 4) Run the command you want (with nohup and in the background.
> $ nohup xterm -sb &
>
> That will run the command so that output is displayed on the server
> console
> and let you log out of your ssh session.
>
> If you want to learn more, you should read up on the xauth command. Also,
> try
> to understand X toolkit basics.
>
> Why do you want to do this anyway?
>
basically just sits and runs and doesn't need any interaction that I want
to be able to start and stop remotely. I'm trying to test some different
command line options with it to see if it will run. Basically as long as
it keeps running I am ok.
Thanks for the help
/Brian> --
> Ean Kingston
>
> E-Mail: ean AT hedron DOT org
> URL: [url]http://www.hedron.org/[/url]
>
>Brian John Guest
-
Re: How can I start a GUI application through SSH
I usually do this by leaving a terminal window in X open. call it P0.
then I run watch
watch -oW p0
and run the app I want to pop up. I can;t control the app, but it
executes on the desktop. not terribly handy, but it would have some
applications I guess.
-------------------------
I would like to be able to start an X application through ssh. I want the
app to actually run on my local box (meaning I want the window to pop up
on the box that I am ssh-ing to), but I just want to be able to start it
remotely. Can someone help me figure out how to do this?
Guest



Reply With Quote

