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 1000 is the old UID and 5000 is the new one. I just listed all files (outside /home/seb) owned by UID=1000 and found that most are in the /proc directory.
find / -uid 1000 \! -wholename '/home/seb/*'
Is it save or necessary to perform the suggested UID change? I'm not familiar with the purpose of these /proc files, but I assume they would be created as needed when I log in with the new user.
Note: There are also some files in /dev owned by UID=1000, but those are just the terminals open by the user (e.g. /dev/pts/23)
/procis a virtual filesystem used for processes (remember UNIX philosophy is that everything "is a file"). Therefore things that would usually work on normal files won't work here. – MaxMackie Jan 10 '12 at 14:25