许多存储库目录被组织为 dists、pool 等。任何人都可以简单地编辑 sources.list 文件以添加新的存储库。
我需要添加一个结构非常复杂的仓库,例如这。
如何在不提供任何版本和存储库名称的情况下添加此存储库?
(根据给出的答案,似乎在末尾添加 / 是可行的,而不是发布名称 repo 名称)
答案1
从官方文档我们可以使用下面的方法:
2.3.3 在基于 Debian 的 Linux 发行版上安装
Debian / Ubuntu
Bareos 版本 >= 15.2.0 需要 Jansson 库包。在 Ubuntu 上,它可在 Ubuntu Universe 中找到。在 Debian 中,它包含在主存储库中。
# # define parameter # DIST=Debian_9.0 # or # DIST=Debian_8.0 # DIST=xUbuntu_16.04 # DIST=xUbuntu_14.04 # DIST=xUbuntu_12.04 RELEASE=release/17.2/ # or # RELEASE=release/latest/ # RELEASE=experimental/nightly/ URL=http://download.bareos.org/bareos/$RELEASE/$DIST # add the Bareos repository printf "deb $URL /\n" > /etc/apt/sources.list.d/bareos.list # add package key wget -q $URL/Release.key -O- | apt-key add - # install Bareos packages apt-get update apt-get install bareos bareos-database-postgresql
提到 Jansson库已打包在 Ubuntu 上。