When a student leaves AIT, there is no automatic procedure to save and removes the files that were created on the local disks of guppy.
Further more, because the students are using some tools to virtualize environment, there are many file duplicates that should be taken into account to reduce the space on the final backup. In some instances, a space reduction of 30% could be achieved by simply removing the duplicated files.
find /home2/user -type f -exec xz -f -9 {} \;
freedups.pl -a /home2/user
cd /home2/user; tar cf - . |ssh someone@banyan sudo -A 'sh -c "cd /home/corse/deleted/user/guppy; tar xfBp -"'