如果没有管理员权限就不能单纯地用
yum install -y unzip
进行安装了,所以我们要曲线救国——采用源码编译安装
wget http://downloads.sourceforge.net/infozip/unzip552.tar.gz
tar zxvf unzip552.tar.gz
cd unzip-5.52/
cp unix/Makefile .
make generic
make install
会报错,因为usr/bin没有访问权限
所以我们只能安装到我们自己用户的目录下。
4.1 修改安装目录——将Makefile里面的prefix改成**/home/uxxxx/local_install
**
4.2 真正 · 安装
make generic
make install
就成功啦~
gedit ~/.bashrc
PATH=/home/uxxxx/usr/local_install/bin/:$PATH
source ~/.bashrc