So we have SSH access to a Ubuntu server, and we need to setup some programs that require visual access, but we have no clue how to do this through SSH.
Asked
Active
Viewed 601 times
2 Answers
1
If the Ubuntu server has X11 server running (you can check it with echo $DISPLAY, it should return non-empty string on success), you can forward X11 by using
ssh -X me@remote-host
After logging in to the remote host, windows for visual programs launched there should appear as if they were launched locally.
If X11 server is not installed in the remote machine, you can install it, i.e. you can refer to the thread here:
powermelon
- 19