Ubuntu(Debian系列)
apt update 更新软件仓库信息
apt install -y zip 安装 zip软件
apt remove zip 删除zip软件
CentOS(Redhat系列)
yum update 更新软件仓库信息
yum install -y zip 安装 zip 软件
yum remove zip 删除 zip 软件
上面install后面的-y
可以去掉,加上-y
表示自动选择y,全自动。