Ubuntu 离线安装软件

前言

在线下载

  • 下载
PACKAGES="smbclient cifs-utils"
apt download $(apt depends --recurse --no-recommends --no-suggests \
  --no-conflicts --no-breaks --no-replaces --no-enhances \
  --no-pre-depends ${PACKAGES} | grep "^\w") 
  • 打包
tar -czvf smb.tar.gz ./smb/

离线安装

  • 解压
tar -xzvf smb.tar.gz
  • 安装
sudo dpkg -i *.deb
本文出自 qbit snap

你可能感兴趣的:(linuxdeb)