하루에 한 걸음

리눅스 우분투에서 압축 해제(zip, tar, tar.xz ...) 본문

Ubuntu

리눅스 우분투에서 압축 해제(zip, tar, tar.xz ...)

유파랑 2021. 3. 24. 22:55

리눅스에서 압축파일의 종류는 여러가지가 있다.

  1. zip
  2. gzip
  3. xz
  4. tar

각 종류별로 압축하는 법, 압축 푸는 법을 알아보자.

.zip 파일 압축 / 압축 해제

.zip 압축

zip -r [압축명.zip] [target파일]
ex) zip -r hi.zip ./*

 

.zip 압축 해제

unzip [압축파일명.zip] -d [디렉토리명]
ex) unzip hi.zip -d ./hello

.gz 파일 압축 / 압축 해제

gzip 압축(단일 파일 압축)

gzip [파일명]
ex) gzip hello.c

 

gzip 압축 해제

gunzip [압축파일명.gz]
ex) gunzip hello.c.gz

.xz 파일 압축 / 압축 해제

xz 압축(단일 파일 압축)

xz [파일명]
ex) xz hello.c

 

xz 압축 해제

xz -d [압축파일명.xz]
ex) xz -d hello.c.xz

.tar 파일 압축 / 압축 해제

tar 압축

tar -cvf [파일명.tar] [타겟 파일들]
ex) tar -cvf hi.tar ./*

 

tar 압축 해제

tar -xvf [파일명.tar] -C [압축 풀 경로]
ex) tar -xvf hello.tar -C ~/hi

.tar.xz 파일 압축 / 압축 해제

.tar.xz 압축

tar -Jcvf [파일명.tar.xz] [타겟 파일들]
ex) tar -Jcvf hi.tar.xz ./*

 

.tar.xz 압축 해제

tar -Jxvf [파일명.tar.xz] -C [압축 풀 경로]
ex) tar -Jxvf hello.tar.xz -C ~/hi

.tar.gz 파일 압축 / 압축 해제

.tar.gz 압축

tar -zcvf [파일명.tar.gz] [타겟 파일들]
ex) tar -zcvf hi.tar.gz ./*

 

.tar.gz 압축 해제

tar -zxvf [파일명.tar.gz] -C [압축 풀 경로]
ex) tar -zxvf hello.tar.gz -C ~/hi

'Ubuntu' 카테고리의 다른 글

Ubuntu 18.04 Chrome 설치  (0) 2021.08.26
Ubuntu 18.04 듀얼 부팅 설치  (0) 2021.08.26
[Vim] Vim 명령어 모음  (0) 2021.03.24
Linux Ubuntu(우분투) 터미널 기본 명령어(command)  (0) 2021.03.23