ssh - Send UI to bakcground and get back UI of an application in linux -
i'm running linux vm, os rhel 6.5, i'll access machine via putty(ssh) , i'll use export display option run gui app's.
i've java application , have jar's, run application i'll use below command in putty.
java -dcms.console.available=false -dcms.user="username" -dcms.password="password" -jar launcher.jar
when launch application in command prompt, i'll ui(if want run app background process i'm using '&' @ end of command, in case i'll ui), after getting ui i'll select options in ui ui load full components.
requirement:
i want send ui in background , should ui back(foreground ui) when ever want, there way achieve this?
i've tried nohup & screen didn't worked, , googled no hlep found. please me in this.
thanks in advance.
fg
, bg
this:
the posix standard specifies 2 commands resuming suspended jobs in background , foreground, respectively bg , fg. these modeled after korn shell job control commands
Comments
Post a Comment