tldr/pages/linux/chattr.md

16 lines
362 B
Markdown
Raw Normal View History

2016-02-16 08:14:30 +00:00
# chattr
> Change attributes of files or directories.
2016-02-16 08:14:30 +00:00
- Make a file or directory immutable to changes and deletion, even by superuser:
2016-02-16 08:14:30 +00:00
`chattr +i {{path/to/file_or_directory}}`
2016-02-16 08:14:30 +00:00
- Make a file or directory mutable:
2016-02-16 08:14:30 +00:00
`chattr -i {{path/to/file_or_directory}}`
2016-02-16 08:14:30 +00:00
- Recursively make an entire directory and contents immutable:
2016-02-16 08:14:30 +00:00
`chattr -R +i {{path/to/directory}}`