1

I want to hide some information in specific folder. This information is generated from one program and apart from this program nobody can access it. Actually, even if the user is root, he also should not access it.

Access permission is not enough for me. Root also should not delete this folder. Is there any structure for it ?

I also want to do not modify Kernel modules for this operation. I hope there is straightforward path for this job.

1 Answers1

1

One thing is seeing content and the other not to have a permission to delete it.

You can play a little e.g. with FolderEncryption or VeraCrypt to prevent root to see the content, but then you need to store a password/certificate somewhere.

Same with prevent deleting the folder by root. He must have the permission to do it, otherwise he will not be the root.

And that's it - it would be against the root purpose prevent him to have access to anything on that system. Than he would not be a root.

Martin
  • 481