① 여러개의 파일을 한개의 파일로 묶기 
a1.html과 a2.html을 a.html로 묶기
tar cvfp 파일명 묶일파일명1 묶일파일명2
-------------------------------------------

# tar cvfp a.htm.tar a1.html a2.html 

 

② 묶여진 파일 풀기 
tar xvfp 묶여진파일명 
-------------------------------------------

# tar xvfp public_html.tar
# tar zxvfp public_html.tar.gz

 

③ 디렉토리 파일 묶기
tar cvfpz 파일명 대상디렉토리 
public_html 디렉토리를 public_html.tar로 압축
-------------------------------------------

# tar cvfp public_html.tar public_html

 

④ 특정 하위 디렉토리 제외하고 파일 묶기 
tar cvfp public_html.tar public_html --exclude=제외디렉토리명
-------------------------------------------

# tar cvfp public_html.tar public_html --exclude=tempDir