1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages.ko/linux/schroot.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/shar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/sqfstar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 15:05:30 +09:00

36 lines
941 B
Markdown

# schroot
> 다른 루트 디렉터리로 명령을 실행하거나 대화형 셸을 시작합니다. `chroot`보다 더 커스터마이즈 가능합니다.
> 더 많은 정보: <https://wiki.debian.org/Schroot>.
- 사용 가능한 chroot 목록 나열:
`schroot --list`
- 특정 chroot에서 명령 실행:
`schroot --chroot {{chroot}} {{명령}}`
- 특정 chroot에서 옵션과 함께 명령 실행:
`schroot --chroot {{chroot}} {{명령}} -- {{명령_옵션}}`
- 모든 사용 가능한 chroot에서 명령 실행:
`schroot --all {{명령}}`
- 특정 사용자로 특정 chroot 내에서 대화형 셸 시작:
`schroot --chroot {{chroot}} --user {{사용자}}`
- 새 세션 시작 (고유한 세션 ID가 `stdout`에 반환됨):
`schroot --begin-session --chroot {{chroot}}`
- 기존 세션에 연결:
`schroot --run-session --chroot {{세션_ID}}`
- 기존 세션 종료:
`schroot --end-session --chroot {{세션_ID}}`