Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu way of decompressing files     - Shell scripts get a snapshot of the page and generates thumbnails (Linux)

- MariaDB database storage path modify configuration issues (Database)

- Detailed Linux network security policies and protection measures (Linux)

- To remove those IP is prohibited Fail2ban on CentOS 6/7 (Server)

- BackTrack (BT3, BT4) Linux installation tutorial (Linux)

- Setting CentOS firewall open port (Linux)

- Atheros AR8161 / AR8162 network card driver problem solving in CentOS 6.4 (Linux)

- EChart simple and practical control on chart (Programming)

- Install Oracle 11g illustrations and dependent libraries under SUSE11 (Database)

- Introduction to thread pooling and simple implementation (Programming)

- How to configure SNMPv3 on Ubuntu, CentOS and Cisco systems (Linux)

- Timing task Crontab under Linux system (Linux)

- Nagios (centreon) monitoring LVS (Server)

- Zabbix monitors Nginx status (Server)

- Grading defense against Linux server attacks (Linux)

- Xshell configure SSH free password (Server)

- Ftp user to create multiple virtual machines to support different access rights Examples (Server)

- To setup a ftp server under Linux (Server)

- MySQL Authorized a recovered (Database)

- Linux prohibit non-WHEEL user su command Detail (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 server remote user to obtain root privileges prevention (Linux)
- [Android] Eclipse does not update the Android SDK Manager solution [using GoAgent] (Programming)
- Mhddfs: multiple smaller partitions into one large virtual storage (Linux)
- Understanding Java classes (Programming)
- Android Studio Getting Started Hello World (Programming)
- DDOS Attacks and Prevention (Linux)
- Wi-Fi hackers use to attack your seven methods (Linux)
- Linux / proc directory Comments (Linux)
- CentOS 6.5 using Virtualenv under development environment to build Python3 (Linux)
- Boot automatically remove Linux operating history records (Linux)
- Java input and output common class Scanner (Programming)
- PLSQL Developer synchronization table tools (Database)
- JavaScript subarray Deduplication (Programming)
- Linux system started to learn: Teaches you install Ubuntu 15.04 on VirtualBox (Linux)
- Django how to generate content in non-HTML formats (Programming)
- Cobbler automatic mass deployment of CentOS 6 and CentOS 7 (Linux)
- Without Visual Studio .NET Windows application development (Programming)
- To learn from scratch OpenWrt perfect tutorial (Linux)
- Linux use glibc2 library and crypt () function to generate the user password (Programming)
- RHEL 6.4 installed MySQL 5.6.27 (Database)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.