명령어

Archive & Compress

_주야 2011. 11. 29. 14:29

 
* 아카이브 (Archive) & 압축 (Compress)

- 소스 볼륨, 파일 디렉토리 구조, 복구 정보, 파일 설명을 포함할 수 있는 메타데이터가 포함된 하나 이상의 파일.

- 보통 무손실 데이터 압축의 형태로 zip, Z, tar (압축기능 제외) 등이 대표적.

 

 

* tar

- tar 묶기

# tar -cvf test.tar test

# ls

# test.tar

 

- tar 풀기       

# tar -xvf test.tar

# ls

# test

 

- tar 압축묶기

# tar -cvzf test.tar.gz test

# ls

# test.tar.gz

 

- tar 압축풀기  

# gzip -dc test.tar.gz | tar xvf -

# ls

# test

  AIX 서버 옵션 -z (압축하기) 적용되지 않음.

 

 

* gzip

- gzip 압축하기 

# gzip -9 test

# ls

# test.gz

 

- gzip 압축풀기

# gzip -d test.gz

# ls

# test

 

 

 * zip

- zip 압축하기

# zip test.zip test

# ls

# test.zip

 

- zip 압축풀기

# unzip test.zip

# ls

# test


 

* compress 

- compress 압축

# compress test

# ls

# test.Z

 

- compress 풀기

# uncompress test.Z

# ls

# test

 

* bzip2 (압축률이 좋음) 

- bzip2 압축

# bzip2 test.tar

# ls

# test.tar.bz2글자색

 

- bzip2 풀기

# bunzip2 test.tar.bz2  | tar xvf -

# ls

# test

 

 

'명령어' 카테고리의 다른 글

find 명령어  (0) 2012.07.10
crontab 사용법  (0) 2012.06.19
vi 명령어 단축키  (0) 2011.11.08
화면 출력 명령어  (0) 2011.10.26
IBM AIX 점검명령어  (0) 2011.10.24