debian10系统安装包依赖问题
查看环境
cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
安装 压缩工具或者解压工具
aptitude install -y unzip zip
缓存清理
rm -rf /var/cache/apt/archives/
mkdir -p /var/cache/apt/archives/
测试安装htop
aptitude -d install htop
ls | grep htop #查看已经有安装包了
对安装包进行打包
zip -r docker-ce.zip /var/cache/apt/archives/*
打包成功之后,把这个包复制到需要安装此服务的主机中的其中一台进行安装及配置私有
打包之后我们查看一下文件大小
du -sh docker-ce.zip
解压并安装
unzip docker-ce.zip
本地安装验证
cd /var/cache/apt/archives/
dpkg -i vsftpd_3.0.3-12_amd64.deb #安装的单一个包
dpkg -i /var/cache/apt/archives/*.deb #安装所有包