1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 12:35:22 +02:00
tldr/pages/linux/chattr.md

25 lines
603 B
Markdown
Raw Normal View History

2016-02-16 13:44:30 +05:30
# chattr
> Change attributes of files or directories.
> More information: <https://manned.org/chattr>.
2016-02-16 13:44:30 +05:30
- Make a file or directory [i]mmutable to changes and deletion, even by superuser:
2016-02-16 13:44:30 +05:30
`chattr +i {{path/to/file_or_directory}}`
2016-02-16 13:44:30 +05:30
- Make a file or directory mutable:
2016-02-16 13:44:30 +05:30
`chattr -i {{path/to/file_or_directory}}`
2016-02-16 13:44:30 +05:30
- [R]ecursively make an entire directory and contents immutable:
2016-02-16 13:44:30 +05:30
`chattr -R +i {{path/to/directory}}`
2025-06-05 05:36:18 +03:00
- Mark a directory and its files to be interpreted in a case-insensitive manner:
`chattr +F {{path/to/directory}}`
- Set a file to only allow [a]ppending:
2025-06-05 05:36:18 +03:00
`chattr +a {{path/to/file}}`