QUOTE(tymek88 @ Dec 3 2009, 22:05)

Hi!
How to run H@H via ssh?
I have ssh (putty) without VNC.
Hello!
Personnaly, I use 'screen' to start H@H remotely. screen can run multiple terminals and will not be killed once you stop your ssh connection. I suggest you to google for 'screen' to learn about all the features of screen.
Here is a small howto (assuming you have installed screen on your linux server.)
CODE
# first connect to the remote server
ssh user@myserver
# on the remote server, execute screen
# this will probably prompt you some text, type enter to proceed to the terminal
screen
# got to your H@H directory
cd /path/to/hath
# execute H@H
java -jar HentaiAtHome.jar
This should start H@H remotely. You can simply close putty, it will not kill your screen process.
Some hints:
If you want to leave screen (detach) and return to your original terminal session, you will have to press on Ctrl+a, then d.
If you want to retrieve (reattach) your screen, type on your terminal:
CODE
screen -r
If you want to create a new terminal on the same screen process type Ctrl-a, then c. Then you can move to a terminal by pressing Ctrl-a, then the number of the terminal (0, 1, 2, ...)
If you want to kill a screen terminal, select it first, then type 'exit'. If all the terminals are killed, screen is killed and you return to your original terminal.