要将 Debian Unstable 中的软件包安装到我的测试版本中,我遵循了在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
没有结果。为什么?
您无法在测试或不稳定的情况下安装该软件包的原因是它在一年前被删除,因为它已经过时了。它不会成为下一个版本的一部分。它应该被替换,
filemanager-actions
但它似乎没有被打包在 Debian 中(它已被请求但尚未打包)。它仍然在 arm64 的 debports 中列为可用,但这只是因为它还没有在那里被清理;你实际上不能从 debports 下载它(如果你点击链接,你最终会得到 404)。
正如您的链接所说,它是一个debports包,因此它仅适用于arm64架构。您确定您使用的是基于 arm64 的机器吗?