답변:
가장 쉬운 방법은 fg
포 그라운드로 가져 오는 것입니다.
$ help fg
fg: fg [job_spec]
Move job to the foreground.
Place the job identified by JOB_SPEC in the foreground, making it the
current job. If JOB_SPEC is not present, the shell's notion of the
current job is used.
Exit Status:
Status of command placed in foreground, or failure if an error occurs.
또는 bg
백그라운드에서 계속 실행되도록 실행할 수 있습니다.
$ help bg
bg: bg [job_spec ...]
Move jobs to the background.
Place the jobs identified by each JOB_SPEC in the background, as if they
had been started with `&'. If JOB_SPEC is not present, the shell's notion
of the current job is used.
Exit Status:
Returns success unless job control is not enabled or an error occurs.
방금 히트 Ctrl Z한 경우 작업을 다시 수행하려면 fg
인수없이 실행하십시오 .
fg
인수가 필요하지 않습니다. 방금 히트 한 경우 동일한 터미널에서 ^Z
실행 fg
하면 첫 번째 작업이 다시 시작됩니다.
kill
명령 행에서 CONTINUE 신호를 프로세스에 전송하는 명령을 사용하여 일시 중단 된 프로세스를 다시 시작할 수 있어야합니다 .
kill -CONT 92929
fg
원래 터미널 내부에 있어야합니다 . 리소스를 절약하기 위해 -STOP 및 -CONT gui 프로그램을 좋아하지만 어쨌든 백그라운드에서 효과적으로 실행되고 있습니다.
sleep
그 것이다 kill
)하는 과정은 .. 원하는 것이 아니다
fg telnet
하지만. 그것은 말했다Terminated
, 아마도 내 이전의 C / Bkill
cmd를.