Background에서 작업 실행
$ python3 file.py &
Foreground 작업을 Background로 옮기기
$ python3 file.py
Ctrl+Z
$ bg
$ disown -h
Background 작업을 Foreground로 옮기기
$ jobs
$ fg
Background 작업 확인 (특정 포트)
$ netstat -nap | grep [포트번호]
Background 프로세스 종료
$ kill -9 [프로세스ID]