Which values can be passed to the podman run --personality=persona
?
#25262
-
What arguments can one pass to My use case is to disable address space layout randomization within the container. This can be achieved with the help of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Trying the obvious does not work: $ podman run -i -t --rm --personality=ADDR_NO_RANDOMIZE debian:12
Error: OCI runtime error: crun: unknown persona specified `ADDR_NO_RANDOMIZE` |
Beta Was this translation helpful? Give feedback.
-
Eventually it comes down to the values that https://github.com/opencontainers/runtime-spec/blob/main/config-linux.md#personality offers: only "LINUX" and "LINUX32" should be accepted. |
Beta Was this translation helpful? Give feedback.
Eventually it comes down to the values that https://github.com/opencontainers/runtime-spec/blob/main/config-linux.md#personality offers: only "LINUX" and "LINUX32" should be accepted.