Anda dapat menyetel atribut "tidak dapat diubah" dengan sebagian besar sistem file di Linux.
chattr +i foo/bar
Untuk menghapus atribut yang tidak dapat diubah, Anda menggunakan -
bukannya +
:
chattr -i foo/bar
Untuk melihat atribut file saat ini, Anda dapat menggunakan lsattr:
lsattr foo/bar
Halaman chattr(1) menyediakan deskripsi dari semua atribut yang tersedia. Berikut adalah deskripsi untuk i
:
A file with the `i' attribute cannot be modified: it cannot be deleted
or renamed, no link can be created to this file and no data can be
written to the file. Only the superuser or a process possessing the
CAP_LINUX_IMMUTABLE capability can set or clear this attribute.