首页 > 系统相关 >ubuntu下载deb包及其所有依赖包

ubuntu下载deb包及其所有依赖包

时间:2023-02-09 12:22:50浏览次数:43  
标签:依赖 no -- apt depends ubuntu deb 下载

1、查看依赖

apt-cache depends XXX

2、*下载deb及其依赖包*

apt-get download $(apt-cache depends --recurse --no-recommends --no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances --no-pre-depends XXX | grep -v i386 | grep "^\w")

3.使用dpkg命令离线安装*

sudo dpkg -i *.deb

标签:依赖,no,--,apt,depends,ubuntu,deb,下载
From: https://www.cnblogs.com/jerry-0910/p/17104845.html

相关文章