Zip software installation

# installation
yum install -y  unzip zip

# decompression
unzip xxx.zip


Copy the code

Rar software installation

First you need to make sure your system is64A still32Bitwise, through this command: [root@localhost]# uname -ax86_64is64Bitwise, none is32A. The back isX686Or X86_64The kernel is64A, I686Or I386The kernel is32A. So first determine how many bits and then install the corresponding onesrar. Enter the command in the terminal:32A:wget http://www.rarsoft.com/rar/rarlinux-4.0.1.tar.gz
64positionwget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz After downloading the installation package, the following operations are the same:tar -zxvf rarlinux-4.0.1. Tar. Gz / /32A downloadtar -zxvf rarlinux-x64-5.3.0. Tar. Gz / /64Bit downloaded into unzipped"rar"Folder:cdRar configuration:make

Copy the code