1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:02:09 +02:00
tldr/pages/linux/systemd-nspawn.md
K.B.Dharun Krishna c91fd38d59
systemd-nspawn: add page (#11398)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Shashank Hebbar <shashankhebbarm@gmail.com>
2023-11-06 18:55:39 +01:00

20 lines
697 B
Markdown

# systemd-nspawn
> Spawn a command or OS in a lightweight container.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemd-nspawn.html>.
- Run a command in a container:
`systemd-nspawn --directory {{path/to/container_root}}`
- Run a full Linux-based OS in a container:
`systemd-nspawn --boot --directory {{path/to/container_root}}`
- Run the specified command as PID 2 in the container (as opposed to PID 1) using a stub init process:
`systemd-nspawn --directory {{path/to/container_root}} --as-pid2`
- Specify the machine name and hostname:
`systemd-nspawn --machine={{container_name}} --hostname={{container_host}} --directory {{path/to/container_root}}`