3

I used the following command to see who had permission to my directory.

fs la

I then wanted to block someone out, so I used the command (and accidentally used my username instead of the person I wanted to block out.

fs sa . <myusername> none

AND NOW I AM BLOCKED out of my directory. It says

files1: Permission denied.

How do I reset my permissions, so I can re-access my directory?

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311

2 Answers2

2

fixed using

fs sa <directoryname> <username> all
0

I have never used AFS, but normally you would need a root user to change the permissions back.

Martin
  • 121