Linux Instructions

File System Remove directory and its contents - rm -rf directory_to_remove Check disk space - df -h /directory_to_check File Compression Create a gzipped tarball in linux - tar -zcvpf new_tarball_name.tar.gz /var/www /home/username z - use gzip for best compression c - create a new archive called new_tarball_name.tar.gz v - verbose (tar command will display progress) p...