
ubuntu에서 7z를 명령어로 입력하면 화면과 같이 ubuntu의 패키지 관리 프로그램인 apt-get 을 사용하여 7z 명령을 포함하는 패키지를 알려준다.
yarang@ipvsix:/home1/sites/yarang/textcube_plugins/plugins$ 7z The program '7z' is currently not installed. You can install it by typing: sudo apt-get install p7zip-full
7z를 설치하는 명령은 다음과 같다.
sudo apt-get install p7zip-full
압축 해제를 위한 명령은 다음과 같다.
7z x "압축 해제할 파일"
압축 파일 생성 명령은 다음과 같다.
7z a "압축파일명" "압축할 파일"
