I've got a directory that I want to be owned by multiple users on the system. That is, I want any application running as oli to think those files are owned by oli, just as any application run by jim will think the same. This is not the same as just giving permissions as I have an issue where ownership matters. I trust all users in this scenario.
My immediate thought is some sort of bind mount that translates IDs transparently, and I'm sure there's a way to do this with fuse but quick and fast (kernel level) would be preferable for me.
To be clear, I'm not looking for actual mutiple ownership, I just want multiple users to see the files as theirs. There are a few different layers I know of in Linux that can map user IDs from one to another, so one of those is probably going to do the job here.