Difference between revisions of "7z uncompress"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: http://www.thegeekstuff.com/2010/04/7z-7zip-7za-file-compression/ Question: How do I uncompress a *.7z file ( 7zip file ) in UNIX / Linux ? Can you explain with a simple example...)
 
 
Line 2: Line 2:
  
  
 
+
Cek 7za
Question: How do I uncompress a *.7z file ( 7zip file ) in UNIX / Linux ? Can you explain with a simple example?
 
 
 
Answer: Use 7za command to unzip a 7z file ( 7zip file ) on Unix platform as shown below.
 
 
 
Verify whether you have 7za command on your system.
 
  
 
  # whereis 7za
 
  # whereis 7za
 
  7za: /usr/bin/7za /usr/share/man/man1/7za.1.gz
 
  7za: /usr/bin/7za /usr/share/man/man1/7za.1.gz
  
If you don’t have 7za command, install p7zip package as shown below.
+
JIka tidak ada, install p7zip
Install p7zip to unzip *.7z files on Fedora
+
 
 +
Install p7zip di fedora
  
 
  # yum install p7zip
 
  # yum install p7zip
  
Install p7zip to unzip *.7z files on Debian and Ubuntu
+
Install p7zip-full di ubuntu
  
  $ sudo apt-get install p7zip
+
  $ sudo apt-get install p7zip-full
  
Uncompressing a *.7z 7zip files in Linux using 7za
+
Uncompress *.7z 7zip file
  
 
  $ 7za e myfiles.7z  
 
  $ 7za e myfiles.7z  

Latest revision as of 16:09, 28 July 2015

Sumber: http://www.thegeekstuff.com/2010/04/7z-7zip-7za-file-compression/


Cek 7za

# whereis 7za
7za: /usr/bin/7za /usr/share/man/man1/7za.1.gz

JIka tidak ada, install p7zip

Install p7zip di fedora

# yum install p7zip

Install p7zip-full di ubuntu

$ sudo apt-get install p7zip-full

Uncompress *.7z 7zip file

$ 7za e myfiles.7z 



Referensi