tar -cvf [압축파일명] [압축할 파일 혹은 폴더 경로]
ex) tar -cvf hi.tar /user/csy9604
tar -xvf [압축파일명]
ex) tar -xvf hi.tar
tar -zcvf [압축파일명] [압축할 파일 혹은 폴더 경로]
ex) tar -zcvf hi /user/csy9604
tar -zxvf [압축파일명]
ex) tar -zxvf hi.tar.gz
-z : gzip(gz)으로 압축
-c : tar로 묶기
-x : tar를 풀기
-f : 파일을 묶도록 지정 (반드시 추가되어야 함)
-v : 각 파일 압축 메시지 출력
-j : bzip2(bz)로 압축
-p : 파일의 권한 저장