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

https://en.wikipedia.org/wiki/job_control_(unix)#commands


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -