Here is a #Linux or #Unix command to search the entire system for files with no group or user:
```
sudo find / -nogroup -o -nouser -print 2>/dev/null
```
See https://www.cyberciti.biz/faq/find-files-that-do-not-have-any-owners-or-do-not-belong-to-any-user-under-linuxunix/ for more info.
@nixCraft Have you ever seen any? I can't think of a situation where it could happen, an inode has to have a uid and gid assigned, so it's going to be *something* surely?
@CryogenicIce9 it is useful when unauthorised files created by rooted servers. You can locate such files. Not finding anything is a good thing