일반
linux 파일 분할 압축 후 해제
한츄
2025. 3. 26. 15:57
SMALL
unzip과 zip사용시 분할압축된 파일을 zip으로 다시 합치고 unzip해야하므로 번거로움
7z 설치
# ubuntu
sudo apt install p7zip-full
7z로 압축 해제
7za x test.zip
특정 디렉토리에 압축해제할때
7za x test.zip o.test
https://iambeginnerdeveloper.tistory.com/175
Ubuntu | .7z 파일 압축 해제하기, Ubuntu .7z file unzip | 리눅스, p7zip(7-Zip) 사용
이때까지 마주한 압축 파일 포맷은 .zip과 .tar이 전부였는데 이번에 .7z라는 파일을 마주하게 되었다. p7zip는 리눅스에서 사용할 수 있는 7-Zip이며 압축률이 높아서 zip이나 tgz보다 작은 파일을 만
iambeginnerdeveloper.tistory.com
LIST