mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 01:25:07 +00:00

The Core::System::create_jail function already provided the new jail index as a result, so it was just a matter of using it when calling the LibCore join_jail function to use the new jail.
31 lines
646 B
Markdown
31 lines
646 B
Markdown
## Name
|
|
|
|
jail-attach - attach a new process to existing jail
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ jail-attach <jail index> <command>
|
|
```
|
|
|
|
## Description
|
|
|
|
`jail-attach` attaches a new process by specifying a command, to an existing jail, with a
|
|
specified jail index.
|
|
|
|
## Options
|
|
|
|
* `-i`, `--jail-index`: Use an already existing jail with its index
|
|
* `-n`, `--jail-name`: Create a new jail with a provided name
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
# Attach the command "ps -ef" to an already existing jail with the index 0
|
|
$ jail-attach -i 0 ps -ef
|
|
```
|
|
|
|
```sh
|
|
# Attach the command "/bin/Shell" to a new jail with the name "test jail"
|
|
$ jail-attach -n "test jail" /bin/Shell
|
|
```
|