Find files that do not have any owners or do not belong to any user under Linux/UNIX

by nixcraft on March 28, 2006 · 0 comments

You can use find command to find out all files that do not have any owners or do not belong to any user under Linux/UNIX/BSD operating systems.

Find file owned by user id 1050 (useful if you deleted user account):

# find / -uid 1050

Find out all files that are not owned by any user:

# find / -nouser

Find out all files that are not owned by any group:

# find / -nogroup

For example in real life on busy clustered hosting server some time we remove 5-10 users and for security reasons you need to find out all files are not owned by any user or group then you can type command:

# find / -nogroup -nouser

See also:

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 8 + 9 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: