Update cheatsheets

This commit is contained in:
ivuorinen
2024-05-27 00:14:40 +00:00
parent 0e4d52bcd0
commit 369eb89f11
8 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# semanage permissive
> Manage persistent SELinux permissive domains.
> Note that this effectively makes the process unconfined. For long-term use, it is recommended to configure SELiunx properly.
> See also: `semanage`, `getenforce`, `setenforce`.
> More information: <https://manned.org/man/semanage-permissive>.
- List all process types (a.k.a domains) that are in permissive mode:
`sudo semanage permissive {{-l|--list}}`
- Set or unset permissive mode for a domain:
`sudo semanage permissive {{-a|--add|-d|--delete}} {{httpd_t}}`