Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
linux/restorecon Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# restorecon
> Restore SELinux security context on files/directories according to persistent rules.
> See also: `semanage-fcontext`.
> More information: <https://manned.org/restorecon>.
- View the current security context of a file or directory:
`ls -dlZ {{path/to/file_or_directory}}`
- Restore the security context of a file or directory:
`restorecon {{path/to/file_or_directory}}`
- Restore the security context of a directory recursively, and show all changed labels:
`restorecon -R -v {{path/to/directory}}`
- Restore the security context of a directory recursively, using all available threads, and show progress:
`restorecon -R -T {{0}} -p {{path/to/directory}}`
- Preview the label changes that would happen without applying them:
`restorecon -R -n -v {{path/to/directory}}`