Ubuntu 中自动安装依赖项的 .deb 包的替换是什么?

Ubuntu 中自动安装依赖项的 .deb 包的替换是什么?

在 Ubuntu 中,我通过 deb 包(dpkg -i)安装一些软件,因为在“apt-get install”中安装了旧版本的软件。但我必须手动安装 deb 包的所有依赖项。如何避免这种情况?

例如在 Ubuntu 中安装 bareos 16 版本。我通过 deb 包安装它官方网站

但还有其他文件(包、版本、来源...)。

其他文件

我应该使用什么以及如何替换 deb 包并自动安装依赖项?例如,据我所知,在 CentOS 中有文件 .repo

答案1

要添加 Bareos 社区存储库,您首先需要下载并导入其密钥:

curl http://download.bareos.org/bareos/release/latest/xUbuntu_16.04/Release.key | sudo apt-key add -

然后添加存储库:

echo deb http://download.bareos.org/bareos/release/latest/xUbuntu_16.04/ / | sudo tee /etc/apt/sources.list.d/bareos.list

更新前:

sudo apt update

然后,您将能够使用安装 Bareos 软件包及其依赖项,并且只要有新版本可用,apt install bareos它们就会进行升级。apt upgrade

答案2

使用apt:

$ apt-get install ./file.deb

相关内容