[Linux] 7z 압축 및 해제
[Linux] 7z 압축 및 해제
p7zip 설치하기
우분투(Ubuntu)에서 p7zip 설치하기
1
sudo apt-get install p7zip
- 위 명령어로 설치가 안되면 아래 명령어로 검색하셔서 설치하시길 바란다.
1
apt-cache search 7z
- 페도라(Fedora)에서 p7zip 설치하기
1
yum install p7zip
- 위 명령어로 설치가 안되면 아래 명령어로 검색하셔서 설치하시길 바란다.
1
yum search 7z
7z 압축하기
명령어
1
7zr a {압축 파일명}.zip {압축할 파일 혹은 Directory1} {압축할 파일 혹은 Directory2}...
파일 압축하기
- test1, test2, test3 파일을 라고 test.7z 파일명으로 압축을 하는 명령어는 다음과 같다.
1
7zr a test.7z test1 test2 test3
7z 압축 풀기
명령어
1
7zr x {압축 파일명}.zip
- test.7z 압축 파일을 푸는 명령어를 다음과 같다.
1
7zr x test.7z
This post is licensed under CC BY 4.0 by the author.