[Linux] 7z 압축 및 해제

p7zip 설치하기 #

우분투(Ubuntu)에서 p7zip 설치하기 #

1sudo apt-get install p7zip
  • 위 명령어로 설치가 안되면 아래 명령어로 검색하셔서 설치하시길 바란다.
1apt-cache search 7z
  • 페도라(Fedora)에서 p7zip 설치하기
1yum install p7zip
  • 위 명령어로 설치가 안되면 아래 명령어로 검색하셔서 설치하시길 바란다.
1yum search 7z

7z 압축하기 #

명령어 #

17zr a {압축 파일명}.zip {압축할 파일 혹은 Directory1} {압축할 파일 혹은 Directory2}...

파일 압축하기 #

  • test1, test2, test3 파일을 라고 test.7z 파일명으로 압축을 하는 명령어는 다음과 같다.
17zr a test.7z test1 test2 test3

7z 압축 풀기 #

명령어 #

17zr x {압축 파일명}.zip
  • test.7z 압축 파일을 푸는 명령어를 다음과 같다.
17zr x test.7z
Advertisement