압축, 아카이빙 압축 gzip/ gunzip bzip2 /bynzip2 압축 + 아카이빙 명령어 tar (잘안쓰임) zip/ unzip (잘안쓰임) 압축 관련 명령어 (gzip/gunzip 명령어) #gzip file1 #gunzip -c file1.gz(#zcat file1.gz) #gunzip file1.gz(#gzip -d gile1.gz) gzip/gunzip 명령어 (압축) # gzip file1 file1.gz (확인) # gunzip -c file1.gz (# zcat file1.gz) (해제) # gunzip file1.gz (# gzip -d file1.gz) 옵션 -S : 기본 생성 파일인 .gz 형태가 아닌 지정한 파일로 생성한다. -d : 압축된 파일의 압축을 해제한다. 이는 unc..