How to install unzip on Linux: First obtain the unzip source code and decompress it; then enter the directory; then copy the Makefile from the unix subdirectory to the current directory; and finally install it.
After installing linux, I found that there is no UNZIP, so I have no choice but to reinstall it.
How to install unzip on Linux?
Linux installation unzip method steps:
1. Get the unzip source code
sudo wget http://downloads.sourceforge.net/infozip/unzip552.tar.gz
2. Unzip
tar zxvf unzip552.tar.gz
3 , enter the directory
cd unzip-5.52/
4, copy the Makefile from the unix subdirectory to the current directory
cp unix/Makefile ./
5, install
make generic make install
The above is the detailed content of How to install unzip on linux. For more information, please follow other related articles on the PHP Chinese website!