2016-02-16 13:44:30 +05:30
|
|
|
# chattr
|
|
|
|
|
2019-02-11 19:00:49 +01:00
|
|
|
> Change attributes of files or directories.
|
2021-07-09 16:45:55 +02:00
|
|
|
> More information: <https://manned.org/chattr>.
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-08 01:31:19 +01:00
|
|
|
- Make a file or directory immutable to changes and deletion, even by superuser:
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-08 01:31:19 +01:00
|
|
|
`chattr +i {{path/to/file_or_directory}}`
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-08 01:31:19 +01:00
|
|
|
- Make a file or directory mutable:
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-08 01:31:19 +01:00
|
|
|
`chattr -i {{path/to/file_or_directory}}`
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-11 19:00:49 +01:00
|
|
|
- Recursively make an entire directory and contents immutable:
|
2016-02-16 13:44:30 +05:30
|
|
|
|
2019-02-11 19:00:49 +01:00
|
|
|
`chattr -R +i {{path/to/directory}}`
|