59doit
Linux 압축파일 관리 7z 본문
반응형
| 7z 압축하기, 압축풀기
7z 압축하기
7zr a {압축 파일명}.zip {압축할 파일 혹은 디렉토리1} {압축할 파일 혹은 디렉토리2}...
- 파일압축하기
더보기
7zr a test.7z test1 test2 test3
→ test1, test2, test3 파일을 라고 test.7z 파일명으로 압축을 하는 명령어
7z 압축풀기
7zr x {압축 파일명}.zip
더보기
7zr x test.7z
→ test.7z 압축 파일을 푸는 명령어
p7zip 설치하기
- Ubuntu에서 p7zip 설치
더보기
apt-get install p7zip
→ 안되면
더보기
apt-cache search 7z
- 페도라(Fedora)에서 p7zip 설치
더보기
yum install p7zip
→ 안되면
더보기
yum search 7z
반응형
'Linux' 카테고리의 다른 글
Linux 패키지 관리 yum (0) | 2023.02.12 |
---|---|
Linux 패키지 관리 apt-get (0) | 2023.02.11 |
Linux 압축파일관리 gz (4) | 2023.02.07 |
Linux 압축파일관리 zip, unzip (3) | 2023.02.07 |
Linux 압축파일 관리 tar (0) | 2023.02.06 |
Comments