1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:02:07 +02:00
tldr/pages/linux/runcon.md
2019-10-29 07:45:37 +01:00

20 lines
458 B
Markdown

# runcon
> Run a program in a different SELinux security context.
> With neither context nor command, print the current security context.
- Determine the current domain:
`runcon`
- Specify the domain to run a command in:
`runcon -t {{domain}}_t {{command}}`
- Specify the context role to run a command with:
`runcon -r {{role}}_r {{command}}`
- Specify the full context to run a command with:
`runcon {{user}}_u:{{role}}_r:{{domain}}_t {{command}}`