debian10系统安装包依赖问题

查看环境
  1. cat /etc/os-release
  2. PRETTY_NAME="Debian GNU/Linux 10 (buster)"
  3. NAME="Debian GNU/Linux"
  4. VERSION_ID="10"
  5. VERSION="10 (buster)"
  6. VERSION_CODENAME=buster
  7. ID=debian
  8. HOME_URL="https://www.debian.org/"
  9. SUPPORT_URL="https://www.debian.org/support"
  10. BUG_REPORT_URL="https://bugs.debian.org/"

安装 压缩工具或者解压工具
  1. aptitude install -y unzip zip

缓存清理
  1. rm -rf /var/cache/apt/archives/
  2. mkdir -p /var/cache/apt/archives/

测试安装htop

  1. aptitude -d install htop
  2. ls | grep htop #查看已经有安装包了

debian10系统安装包依赖问题 - 图1

对安装包进行打包
  1. zip -r docker-ce.zip /var/cache/apt/archives/*

打包成功之后,把这个包复制到需要安装此服务的主机中的其中一台进行安装及配置私有

打包之后我们查看一下文件大小

  1. du -sh docker-ce.zip

解压并安装

  1. unzip docker-ce.zip

本地安装验证

  1. cd /var/cache/apt/archives/
  2. dpkg -i vsftpd_3.0.3-12_amd64.deb #安装的单一个包
  3. dpkg -i /var/cache/apt/archives/*.deb #安装所有包