화면 매뉴얼 페이지에 따르면 :
screen -d -m
분리 모드에서 시작 화면. 새 세션이 생성되지만 연결되지는 않습니다. 시스템 시작 스크립트에 유용합니다.
-S sessionname
새 세션의 이름을 sessionname으로 설정하십시오.
그래서 내가 명령을 실행할 때 당신은 제공했습니다 : screen -dmS name ./script.sh
Screen은 name이라는 창을 시작하고 해당 script.sh를 자동으로 실행합니다. 상태를 확인하기 위해 다시 들어가려면 간단히 입력하십시오.screen -r test
Ubuntu 14.04에서는 명령이 약간 다릅니다. 시험:
screen -d -m -S test
이제 스크립트를 실행하려면 구성 파일로 이동해야합니다.
sudo vim /etc/screenrc
일단 아래로 스크롤하면 아래로 스크롤됩니다.
# Example of automatically running some programs in windows on screen startup.
#
# The following will open top in the first window, an ssh session to monkey
# in the next window, and then open mutt and tail in windows 8 and 9
# respectively.
#
# screen top
# screen -t monkey ssh monkey
# screen -t mail 8 mutt
# screen -t daemon 9 tail -f /var/log/daemon.log
실행할 스크립트 이름을 추가해야하는 섹션으로, 화면에서 필요한 모든 작업을 수행 할 수 있습니다.
"$0"
여기에 무엇입니까?