If you are looking to prevent any file from being modified, delete or renaming, you will need to set the immutable flag on it. It can set on files or directories. Once the immutable flag is added, files/folders can't be modified or deleted. If you have added an immutable flag and want to make changes in your files, you will need to remove the immutable flag. It is an extended file system attribute.
Please refer to the following steps to set the immutable flag. You will require to log in with root to set the immutable flag.
- First, we will create a file named test.txt with the below command.
# touch test.txt
- Use lsattr command to check the extended attribute. By default, there is only 'e' is present.
# lsattr test.txt
- We will add some content on the test.txt and it should work fine as we haven't made any changes yet.
# echo This is a test of immutable flage >> test.txt
# cat test.txt - Let us use chattr command to set +i flag. Here, i mean immutable.
# sudo chattr +i test.txt
- Now we will use the below command to verify the immutable for the file test.txt
# lsattr test.txt
Output :
----i---------e---- test.txt
- As per the above output test.txt is now immutable. We will try to modify or delete the same file.
# echo test-modification >> test.txt
-bash: test.txt: Permission denied# rm -f test.txt
rm: cannot remove ‘test.txt’: Operation not permitted# mv test.txt test2.txt
mv: cannot move ‘test.txt’ to ‘test2.txt’: Operation not permittedAs per the above error, we can see that file is not been able to modify or delete as we have set the immutable flag on it. Please note that if you set immutable to any of the folder, it will set the immutable flag for entire files/folders inside the same folder.
- If you want to make changes on the same file, you will need to remove the immutable. Following command will remove the immutable flag from any of the file.
# chattr -i test.txt
- We will verify that immutable flag is not removed.
# lsattr test.txt
Output :
-------------e-- test.txt
Now, you can modify or delete the file without any issue.