$ lsattr /media/alex/.../.rsync.log
-----a-------e-- /media/alex/.../.rsync.log
O a
é o anexo apenas o sinalizador , que funciona bit como a bandeira imutável na medida em que também impede a remoção do arquivo. Também para root:
# touch file.txt ; chattr +a file.txt ; lsattr file.txt ; rm file.txt
-----a-------e-- file.txt
rm: cannot remove 'file.txt': Operation not permitted
A file with the 'a' attribute set can only be open in append mode for writing. Only the superuser or a process possessing the CAP_LINUX_IMMUTABLE capability can set or clear this attribute.
chattr -a /media/alex/.../.rsync.log
como root deve se livrar dele.