자주 사용하는 압축 관련 명령 요약
----------------------------------------------------
# tar cvf /tmp/etc.tar /etc <-- 디렉토리 묶기
# tar tvf /tmp/etc.tar <-- 묶은 내용 보기
# tar xvf /tmp/etc.tar <-- 묶은것 풀기
# compress /tmp/etc.tar <-- 압축풀기
# zcat /tmp/etc.tar.Z | tar xf - <-- 한번에 풀기
# jar cvf /tmp/etc.jar /etc <-- 압축과 동시에 파일 묶기
# jar tvf /tmp/etc.jar <-- 파일 내용 확인
# jar xvf /tmp/etc.jar <-- 압축 해제와 동시에 파일 풀기
# gzip /tmp/etc.tar <-- 압축하기 ( .gz 로 압축)
# gzip -d /tmp/etc.tar.gz <-- 압축풀기
# gzip -dc /tmp/etc.tar.gz | tar xf - <-- 한번에 풀기
# zip -r etc.zip /etc <-- zip 으로 압축
# unzip etc.zip <-- zip 파일 풀기
# bzip2 -z /tmp/etc.tar <-- 압축하기
# bzip2 -d /tmp/etc.tar.bz2 <-- 압축 풀기
% bzip2 는 위에 열거한 압축 명령 중에서 압축율이 높음.
'Infrastructure' 카테고리의 다른 글
Windows Server 2008 새로운 기능 (0) | 2007.05.22 |
---|---|
php 서버설치 (1) | 2007.05.03 |
유닉스 명령어 (0) | 2007.05.03 |
자신의 계정에 phpMyAdmin 설치하기 (0) | 2007.05.03 |
tar 압축과 해제 (3) | 2007.05.03 |