Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu way of decompressing files     - To install Google Chrome browser under Ubuntu 14.04 LTS (Linux)

- MySQL Data Types (Database)

- Oracle database NUMBER (x, y) data types (Database)

- Compare Dalvik virtual machine and the JVM (Linux)

- VPS xen openvz kvm (Server)

- Manually compile Hadoop 2.6.0 under Ubuntu 14.04 (Server)

- Sorting Algorithm (1) Quick Sort C ++ implementation (Programming)

- To install Git on Ubuntu systems (Server)

- Summary of Docker mounted directory (Server)

- MySQL separation Amoeba achieve literacy (Database)

- Using Linux command line and execute PHP code (Programming)

- How to use the command line to obtain Freely RSS source on Linux (Linux)

- Archive log file size and redo log file size relationship (Database)

- Getting Started with Linux system to learn: how to install USB webcams come in raspberry (Linux)

- Spring use Cache (Programming)

- sudoers file parsing (Linux)

- To install Xen in Ubuntu 12.04 (Linux)

- TypeScript basic grammar (Programming)

- CentOS7 boot systemd introduction and use of management (Linux)

- Ubuntu 12.04 installation instructions under GAMIT10.40 (Linux)

 
         
  Ubuntu way of decompressing files
     
  Add Date : 2018-11-21      
         
         
         
  Record Ubuntu various compression and decompression method:

.tar
Unpack: tar xvf FileName.tar
Packing: tar cvf FileName.tar DirName
(Note: tar package is not compressed!)
---------------
.gz
Unzip 1: gunzip FileName.gz
Unzip 2: gzip -d FileName.gz
Compression: gzip FileName
.tar.gz
Decompression: tar zxvf FileName.tar.gz
Compression: tar zcvf FileName.tar.gz DirName
---------------
.bz2
Unzip 1: bzip2 -d FileName.bz2
Unzip 2: bunzip2 FileName.bz2
Compression: bzip2 -z FileName
.tar.bz2
Decompression: tar jxvf FileName.tar.bz2
Compression: tar jcvf FileName.tar.bz2 DirName
---------------
.bz
Unzip 1: bzip2 -d FileName.bz
Unzip 2: bunzip2 FileName.bz
.tar.bz
Decompression: tar jxvf FileName.tar.bz
---------------
.Z
Decompression: uncompress FileName.Z
Compression: compress FileName
.tar.Z
Decompression: tar Zxvf FileName.tar.Z
Compression: tar Zcvf FileName.tar.Z DirName
---------------
.tgz
Decompression: tar zxvf FileName.tgz
.tar.tgz
Decompression: tar zxvf FileName.tar.tgz
Compression: tar zcvf FileName.tar.tgz FileName
---------------
.zip
Decompression: unzip FileName.zip
Compression: zip FileName.zip DirName
---------------
.rar
Decompression: rar a FileName.rar
Compression: rar e FileName.rar
---------------
.lha
Decompression: lha -e FileName.lha
Compression: lha -a FileName.lha FileName
     
         
         
         
  More:      
 
- Linux terminal interface font color settings (Linux)
- Spring Boot + Nginx + Tomcat + SSL configuration notes (Server)
- How to build Memcached Docker container (Server)
- Thrift 0.9.3 compiler installation under Ubuntu (Linux)
- pdf.js Tutorial (Linux)
- Oracle to use full-text indexing (Database)
- Difference Docker mirror and containers (Server)
- How to adjust the system time CentOS (Linux)
- CentOS installation of the ftp (Linux)
- CentOS install Redis (Database)
- PPA on Ubuntu Linux installation Plank 0.8.0 (Linux)
- Use netcat [nc] command on Linux and Unix port scan (Server)
- Oracle archive log deletion (Database)
- Linux upgrade Glibc (Linux)
- Redhat 7 modify the default run level method --RHEL7 use systemd to create a symbolic link to the default runlevel (Linux)
- Use PXE with kickstart to install Linux automatically (Linux)
- Linux Apache server configure to protect system security (Linux)
- xCAT deployment (Linux)
- Installation JDK1.7 under Ubuntu14.04 64-bit (Linux)
- CentOS 6.4 installation and configuration LNMP build PHP server runtime environment (Server)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.