z옵션 지원하는 경우
묶기
tar cvfz myfiles.tar.gz /etc
풀기
tar xvfz myfiles.tar.gz
z옵션을 지원안하는 경우
묶기
tar cvf myfiles.tar /etc
gzip myfiles.tar
풀기
gunizp myfiles.tar.gz
tar xvf myfiles.tar
묶기
tar cvfz myfiles.tar.gz /etc
풀기
tar xvfz myfiles.tar.gz
묶기
tar cvf myfiles.tar /etc
gzip myfiles.tar
풀기
gunizp myfiles.tar.gz
tar xvf myfiles.tar