heimdal
我正在通过运行此命令下载该软件包的 Debian 源文件
apt-get source --download-only heimdal
这将下载该版本的源文件sid
(不稳定)。但是,我想要的是发布源stretch
(稳定)。我正在 Debian jessie
(旧稳定)机器上运行此命令。我尝试添加该-t stable
选项,但这仍然给了我不稳定的源文件。
我该怎么做呢?
答案1
apt-get source
下载默认情况下可用的最新源,但您可以通过任何常规方式指定版本来覆盖它:
apt-get source --download-only heimdal=7.1.0+dfsg-13+deb9u1
apt-get source --download-only heimdal/stretch
如果您的sources.list 中也有stretch deb-src 行,则两者都应该可以工作。
根据您的工作流程,另一种选择是数字:
dgit clone heimdal stretch,-security
将为您留下 heimdal/ 中的 git 存储库
答案2
看看这里:https://packages.qa.debian.org/h/heimdal.html
从那里您可以选择要下载的版本。
在你的情况下,那就是:https://packages.debian.org/source/stable/heimdal
这样,您就不必搞乱您的sources.list