Mac & Linux
screen
nockdoo
2020. 5. 10. 01:20
- SSH연결을 끊더라도 프로그램을 계속 실행해야 하는 경우.
- 가상의 터미널을 만들어 어플리케이션을 배그라운드 모드로 실행하고 다시 터미널을 불러와 포어그라운 모드로 실행.
install
$ sudo apt-get install -y screen
new screen session
$ sudo screen -S mcs java -Xmx1024M -Xms1024M -jar server.jar nogui
detach
$ control + a,d
reattach the terminal
$ sudo screen -r mcs