Question 4:
SIMULATION - Find the files owned by harry, and copy it to catalog: /opt/dir
Answer correct:
See explanation below.
# cd /opt/ # mkdir dir # find / -user harry -exec cp -rfp {} /opt/dir/ \;