mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 06:34:58 +00:00

This happens in two ways: 1. LibCore now has two new methods for creating Jails and attaching processes to a Jail. 2. We introduce 3 new utilities - lsjails, jail-create and jails-attach, which list jails, create jails and attach processes to a Jail, respectively.
20 lines
249 B
Markdown
20 lines
249 B
Markdown
## Name
|
|
|
|
jail-create - create a new jail
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ jail-create <name>
|
|
```
|
|
|
|
## Description
|
|
|
|
`jail-create` creates a new jail, with a specified name
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
# Create jail with the name "test-jail"
|
|
$ jail-create test-jail
|
|
```
|