要将Debian不稳定包安装到我的测试版本中,我遵循了在Unix & Linux上找到的解决方案。
首先,我在/etc/apt/sources.list.d/unstable.list中添加了不稳定存储库:
$ sudo cat /etc/apt/sources.list.d/unstable.list
deb http://ftp.pl.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.pl.debian.org/debian/ unstable main contrib non-free其次,我确定了测试的优先级:
$ sudo cat /etc/apt/apt.conf.d/default-release
APT::Default-Release "testing";在执行apt update update之后,我搜索了一个包nautilus-actions,它应该是可供Sid。但是,运行apt search nautilus-actions不会给出结果。为什么?
发布于 2018-09-10 18:39:24
您不能在测试或不稳定中安装软件包的原因是它是一年前被移除,因为它已经过时了。它不会是下一个版本的一部分。它应该被filemanager-actions所取代,但它似乎并没有在Debian中打包(它是请求,但还没有打包)。
它仍然在arm64的便签中列出,但这仅仅是因为它还没有被清理;您实际上不能从便签下载它(如果您按照链接,最终将得到404)。
https://unix.stackexchange.com/questions/468074
复制相似问题