wget -m -nv ftp://username:password@laazy.com/laazy.com //Mirror ftp directory rm -rf dirname //Deletes everything in the directory zip -r full_site_backup.zip dirname dirname2 //Zips entire directory ls -l //List files and details iftop //Monitor bandwidth in real-time (2,10,40 second intervals) httpd -k graceful //gracefully restart apache httpd grep -iR pattern dirname //Search for regex pattern in directory md5sum [File] //Calculate the md5 sum of a file tar -czf [destination file] [Dir] //Creates a tar.gz file of the directory tar -xzf [source file] //Extracts a tar.gz file zip -rP password zipfile directory //Encrypts the zip file containing "directory" -- INSECURE ps aux | grep process-name //Search for a running process mv sourceFile destinationFile //moves or renames a file from sourceFile to destinationFile cp sourceFile destinationFile //copies sourceFile to destinationFile