mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 08:46:15 +02:00

* common/s*: add and update Korean translation * scamper: fix typo * Update pages.ko/common/simplehttpserver.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/steamcmd.md Co-authored-by: Chooooo <contact@choo.ooo> --------- Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com> Co-authored-by: Chooooo <contact@choo.ooo>
37 lines
690 B
Markdown
37 lines
690 B
Markdown
# screen
|
|
|
|
> 원격 서버에서 세션을 열어 유지. 단일 SSH 연결로 여러 창을 관리.
|
|
> 같이 보기: `tmux`, `zellij`.
|
|
> 더 많은 정보: <https://manned.org/screen>.
|
|
|
|
- 새 screen 세션 시작:
|
|
|
|
`screen`
|
|
|
|
- 새 이름 지정 screen 세션 시작:
|
|
|
|
`screen -S {{세션_이름}}`
|
|
|
|
- 새로운 데몬을 시작하고 출력을 `screenlog.x`에 기록:
|
|
|
|
`screen -dmLS {{세션_이름}} {{명령}}`
|
|
|
|
- 열린 screen 세션 표시:
|
|
|
|
`screen -ls`
|
|
|
|
- 열린 screen에 다시 연결:
|
|
|
|
`screen -r {{세션_이름}}`
|
|
|
|
- screen 내부에서 분리:
|
|
|
|
`<Ctrl> + A, D`
|
|
|
|
- 현재 screen 세션 종료:
|
|
|
|
`<Ctrl> + A, K`
|
|
|
|
- 분리된 screen 종료:
|
|
|
|
`screen -X -S {{세션_이름}} quit`
|