-1

I have created different users and set their home directories to particular folders. I have limited the users' access other than their directories. How could I limit users from writing data?

Dipak
  • 249

1 Answers1

0

See the chmod and chown command using man. You can modify files and directories so that they belong to root and are not writeable by anyone other than root, for example.

Example (as root): chown root:root file

mmstick
  • 1,977