Tagged Questions
5
votes
3answers
939 views
Changing the UID of files in /proc
In a follow up to this question about changing the UID of a user, it is recommended to change the ownership of all files on the system (this answer)
find / -uid 1000 -exec chown 5000 '{}' \+
where ...