2020-10-29 11:14:20 +00:00
|
|
|
# schroot
|
|
|
|
|
2023-08-31 14:33:17 +01:00
|
|
|
> Run a command or start an interactive shell with a different root directory. More customizable than `chroot`.
|
2020-10-29 11:14:20 +00:00
|
|
|
> More information: <https://wiki.debian.org/Schroot>.
|
|
|
|
|
2023-08-31 14:33:17 +01:00
|
|
|
- List available chroots:
|
|
|
|
|
|
|
|
`schroot --list`
|
|
|
|
|
2020-10-29 11:14:20 +00:00
|
|
|
- Run a command in a specific chroot:
|
|
|
|
|
|
|
|
`schroot --chroot {{chroot}} {{command}}`
|
|
|
|
|
|
|
|
- Run a command with options in a specific chroot:
|
|
|
|
|
|
|
|
`schroot --chroot {{chroot}} {{command}} -- {{command_options}}`
|
|
|
|
|
|
|
|
- Run a command in all available chroots:
|
|
|
|
|
|
|
|
`schroot --all {{command}}`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Start an interactive shell within a specific chroot as a specific user:
|
2020-10-29 11:14:20 +00:00
|
|
|
|
|
|
|
`schroot --chroot {{chroot}} --user {{user}}`
|
|
|
|
|
2023-08-31 14:33:17 +01:00
|
|
|
- Begin a new session (a unique session ID is returned on `stdout`):
|
2020-10-29 11:14:20 +00:00
|
|
|
|
2023-08-31 14:33:17 +01:00
|
|
|
`schroot --begin-session --chroot {{chroot}}`
|
|
|
|
|
|
|
|
- Connect to an existing session:
|
|
|
|
|
|
|
|
`schroot --run-session --chroot {{session_id}}`
|
|
|
|
|
|
|
|
- End an existing session:
|
|
|
|
|
|
|
|
`schroot --end-session --chroot {{session_id}}`
|