mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-11 05:58:28 +00:00
Update cheatsheets
This commit is contained in:
35
tldr/linux/chcat
Normal file
35
tldr/linux/chcat
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# chcat
|
||||
|
||||
> Change SELinux security category for files.
|
||||
> Categories provide an additional level of access control based on MCS (Multi-Category Security).
|
||||
> See also: `chcon`, `semanage`.
|
||||
> More information: <https://manned.org/chcat>.
|
||||
|
||||
- List all available categories:
|
||||
|
||||
`sudo chcat {{[-L|--list]}}`
|
||||
|
||||
- Add a category to a file:
|
||||
|
||||
`sudo chcat +{{CategoryName}} {{path/to/file}}`
|
||||
|
||||
- Remove a category from a file:
|
||||
|
||||
`sudo chcat -- -{{CategoryName}} {{path/to/file}}`
|
||||
|
||||
- Set specific categories for a file (replacing existing ones):
|
||||
|
||||
`sudo chcat {{CategoryName1,CategoryName2,...}} {{path/to/file}}`
|
||||
|
||||
- Display the categories of a file:
|
||||
|
||||
`ls {{[-Z|--context]}} {{path/to/file}}`
|
||||
|
||||
- Remove all categories from a file:
|
||||
|
||||
`sudo chcat {{[-d|--delete]}} {{path/to/file}}`
|
||||
Reference in New Issue
Block a user