Cool Command
Perform as root
set this bit to esnure file cannot be accessed to anyone ;even root
# chattr +i foo_file
undo the above
# chattr -i foo_file
show attributes
# lsattr foo_file
i-------- foo_file
The following bit allows only appending to a file – not changing existing content
# chattr +a foo_file
to unset execute below
# chattr -a foo_file