Has anyone ever encountered a scenario where you are logged into a system going about your standard business, cat, ls, tail, grep, vim, find etc. and suddenly permissions to regular things stop working? When I do a whoami it turns out I'm not my regular user but another user.
For example
bash>whoami
mark
bash>cat /dev/null > perm.mark
bash>clear
bash>tail -f perm.mark
bash>^C
bash>cat /dev/null > perm.mark
permission denied
bash>whoami
adam
Any ideas about what's happening here?
