나의 프로세스를 살리자... 리눅스에서 터미널을 나올경우 이전에 실행했던 프로세서가 죽는다.. (백그라운드 포함)참 허잡한 실수였음.... 그럴경우 아래와 같이 백그라운드로 보내고 disown -h %1 이렇게 하여 계속 돌도록 할 수 있다.ref : http://stackoverflow.com/questions/625409/how-do-i-put-an-already-running-process-under-nohupup vote down voteaccepted Using the Job Control of bash to send the process into the background:Ctrl+Z to stop (pause) the program and get back to the shell.bg to r..