리눅스 gzip 명령어 사용 방법 총정리

리눅스에서 많이 사용되는 gzip 명령어를 이용해서 파일 또는 디렉토리들을 압축하고 압축 해제 하는 방법에 대해서 알아보도록 하겠습니다.

 

리눅스 gzip 사용 방법

리눅스를 설치한 패키지에 따라서 다르겠지만 기본적으로 gzip이 설치되어 있는 확률이 높습니다.

rpm -qa | grep gzip 명령어로 gzip 설치 여부를 확인합니다.

 

패키지 설치 방법

설치되어 있지 않다면 아래의 명령어로 패키지 설치를 진행해줍니다.

 

레드햇

yum -y install gzip

 

데비안

apt -y install gzip

 

[IT/리눅스(Linux)] - [Linux] yum 실행 안될 때 cannot find a valid baseurl for repo

 

[Linux] yum 실행 안될 때 cannot find a valid baseurl for repo

cannot find a valid baseurl for repo base/7/x86_64 Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 알 수 없는 오류" One of th

coconuts.tistory.com

 

gzip 압축 방법

gzip 압축파일명

 

ex) gzip test.txt

 

 

gzip 압축해제 방법

gzip -d 압축해제할파일명.gz

ex) gzip test.txt

 

참고로 -d 옵션은 decompress의 약자입니다.

옵션을 붙이지 않고 gzip 명령어를 사용하게 되면 기본적으로 압축하겠다는 명령어로 인식됩니다.

댓글

Designed by JB FACTORY