Data protection is one of the main job of a System administrator. There are numerous free and commercial data protection softwares are available on the market. But, as you might know, there is a simple, yet useful commandline utility called “chattr” (abbreviation of Ch ange Attr ibute) which can be used to prevent files and folders from accidental deletion in Unix-like distributions. It applies certain attributes to a file or folder in your linux system. So the users can’t delete or modify the files and folders either accidentally or intentionally, even as root user. Sounds useful, isn’t it?
Download Free eGuide: “7 Completely Free VPN Services to Protect Your Privacy”
In this brief tutorial, we are going to see how to use chattr in real time in-order to prevent files and folders from accidental deletion in Linux.
Prevent Files And Folders From Accidental Deletion Or Modification In LinuxBy default, Chattr is available inmost modern Linux operating systems. Let us see some examples.
The default syntax of chattr command is:
chattr [operator] [switch] [filename]chattr has the following operators.
The operator ‘+’ causes the selected attributes to be added to theexisting attributes of the files; The operator ‘-‘ causes them to be removed; The operator ‘=’ causes them to be the only attributes that the files have.
Chattr has different attributes namely aAcCdDeijsStTu. Each letter applies a particular attributes to a file.
a append only, A no atime updates, c compressed, C no copy on write, d no dump, D synchronous directory updates, e extent format, i immutable, j data journalling, P project hierarchy, s secure deletion, S synchronous updates, t no tail-merging, T top of directory hierarchy, u undeletable.In this tutorial, we are going to discuss the usage of two attributes, namely a , i which are used to prevent the deletion of files and folders.
Prevent files from accidental deletionI am going to create a file called file.txt in my current directory.
touch file.txtNow, I am going to apply “i” attribute which makes the file immutable. It means you can’t delete, modify the file, even if you’re the file owner and the root user.
sudo chattr +i file.txtYou can check the file attributes using command:
sudo lsattr file.txt Sample output: ----i---------e---- file.txtNow, try to remove the file either as a normal user or with sudo privileges.
rm file.txt Sample output: rm: cannot remove 'file.txt': Operation not permittedLet me try with sudo command:
sudo rm file.txt Sample output: rm: cannot remove 'file.txt': Operation not permittedLet us try to append some contents in the text file.
echo 'Hello World!' >> file.txt Sample output: bash: file.txt: Operation not permittedTry with sudo privilege:
sudo echo 'Hello World!' >> file.txt Sample output: bash: file.txt: Operation not permittedAs you noticed in the above outputs, We can’t delete or modify the file even as root user.
To revoke attributes, just use “-i” switch as shown below.
sudo chattr -i file.txtNow, the immutable attribute has been removed. You can now delete or modify the file.
rm file.txtSimilarly, you can restrict the directories from accidental deletion or modification as described in the next section.
Prevent folders from accidental deletion and modificationCreate a directory called dir1 and a file called file.txt inside this directory.
mkdir dir1 && touch dir1/file.txt
Now, make this directory and its contents (file.txt) immutable using command:
sudo chattr -R +i dir1Where,
-R will make the dir1 and its contents immutable recursively. +i makes the directory immutable.Now, try to delete the directory either as normal user or using sudo user.
rm -fr dir1 sudo rm -fr dir1You will get the following output:
rm: cannot remove 'dir1/file.txt': Operation not permittedTry to append some contents in the file using “echo” command:
See? You can’t modify it either.
To revoke the attributes back, run:
sudo chattr -R -i dir1Now, you can delete or modify the contents of this directory as usual.
Prevent files and folders from accidental deletion, but allow modificationWe know now how to prevent files and folders from accidental deletion and modification. Next, we are going to prevent files and folders from deletion, but allow modification.
To do so, run the following command:
For files: sudo chattr +a file.txt For directories: sudo chattr -R +a dir1The “+a” option will allow you to modify the file or folder, but you can’t delete it.
Add some contents to the file(s) to check whether it works or not.
echo 'Hello World!' >> file.txt echo 'Hello World!' >> dir1/file.txtCheck the file contents using cat command:
cat file.txt cat dir1/file.txt Sample output: Hello World!You will see that you can now be able to append the contents. It means we can modify the files and folders.
Let us try to delete the file or folder now.
rm file.txt Output: rm: cannot remove 'file.txt': Operation not permittedLet us try to delete the folder:
rm -fr dir1/ Sample output: rm: cannot remove 'dir1/file.txt': Operation not permittedTo remove the attributes, run the following commands:
For files: sudo chattr -R -a file.txt For directories: sudo chattr -R -a dir1/Now, you can delete or modify the files and folders as usual.
For more details, refer the man pages.
man chattrThat’s all for now. You know now how to apply file attributes to files and folders using chattr command, and how to prevent them from accidental deletion or modification. This can be useful to protect the important system files and datain your Linux system.
Cheers!