I have a machine that is not in use and I wish to do a clean install of Linux on the machine. There may be important files on the machine.
How do you list all files created by the user after a clean install?
I was thinking of doing a simple find all files in / and then for loop to iterate followed by rpm -q --whatprovides to list all files that a user created (I.e not listed in any rpm's manifest). I think this would work... But it may be extremely slow and take more than 8 hours. I'll have to try.
I listed rpm but I think this also applies to any Linux distro... But I need a rpm solution first in the short term.