[리눅스] tar, gz 압축 및 해제
— linux, tar, gz — 1 min read
tar
압축(Compress)
1tar -cvf {file.tar} {target_path}
압축 해제(Extract)
1tar -xvf {file.tar} {target_path}
gz
압축(Compress)
1tar -zcvf {file.tar.gz} {target_path}
압축 해제(Extract)
1tar -zxvf {file.tar.gz} {target_path}
Options
- c : tar 압축
- x : tar 압축 해제
- v : 진행과정 출력
- z : gzip 압축 & 압축 해제
- C : 경로 지정
- f : 파일 이름 지정
- p : 파일 권한 저장