On Ubuntu, is it possible to generate a list of all files in the /home folder that were modified by a specific user? I want to find a list of all of the files that I have created or modified since I installed Ubuntu 12.04.
I mainly want to do this so that I can find all the files that I have created or modified, and then move them to my other Ubuntu installation.
use find
The -mtime is the number of days, so -90 is the last 90 days. Adjust the number of says as needed.
See also http://content.hccfl.edu/pollock/unix/findcmd.htm
It may just be easier to copy all of home,
cp -Ra home
or use rsynchttps://help.ubuntu.com/community/rsync