Compress files/directories into tar
Standard compression: tar cvzf destination.tgz sourcefile or directory
tar cvzf destination.tgz sourcefile or directory
Or use better compression: tar -jcf destination.tar.bz2 sourcefile or directory
tar -jcf destination.tar.bz2 sourcefile or directory
Find a file: do as root in directory to search find: find -name filename
find -name filename