To create a tar file: tar cvzf bigfile.tgz file1 file2 ... To unpack a tgz file: tar zxvf bigfile.tgz c = create z = unzip v = verbose (to follow what is happening) f = filename x = extract see man tar