Recently, the company newly configured a 64-bit cloud server, to deploy the time found that there is no installation of Zip/unzip compression decompression software.
So I have to install the two software, Linux is best used or yum. Two instructions are installed.
First list the Software installation package:
#yum List |grep Zip/unzip
A bunch of installation package names will appear. Then it is installed directly.
#yum Install Zip
# Yum Install unzip
OK, now you can use Zip/unzip to encrypt and decrypt the document.
Then at compile time found error: Gcc:error trying to exec ' cc1plus ': execvp:no such file or directory
Use gcc-v/g++-V to view the GCC version and discover that g++ is not installed. Just start installing g++
#yum List |grep gcc
Locate the installation package, the package name is gcc-c++.x86_64, and then start the installation.
# Yum Install gcc-c++
And then compile it to succeed.
# Yum Install unzip
Linux installation zip/unzip/g++ and other software