mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 06:15:06 +00:00

This is quite useful for userspace applications that can't cope with the restriction, but it's still useful to impose other non-configurable restrictions by using jails.
27 lines
449 B
Markdown
27 lines
449 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
|
|
|
|
## Options
|
|
|
|
* `-p`, `--pid-isolation`: Use PID-isolation (as a custom isolation option)
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
# Create jail with the name "test-jail", with no PID isolation
|
|
$ jail-create test-jail
|
|
|
|
# Create jail with the name "test-jail", with PID isolation
|
|
$ jail-create -p test-jail
|
|
```
|