libssl1.1 在 Ubuntu 22.04 中已弃用,现在该怎么办?

libssl1.1 在 Ubuntu 22.04 中已弃用,现在该怎么办?

我尝试安装活页簿 使用 Elixir,但我无法安装它。相反,当我尝试安装依赖项时,我收到此错误消息:

> sudo apt install erlang-crypto
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done

The following packages have unmet dependencies:
 erlang-crypto : Depends: libssl1.1 (>= 1.1.1) but it is not installable
E: Unable to correct problems, you have held broken packages.

libssl1.1 不再在 Ubuntu 22.04 的存储库中。

解决方法是手动安装:

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt-get update
sudo apt-get install libssl1.1

但我不确定这种方法是否会在我的计算机上引入漏洞。

据我所知,此问题也影响了其他应用程序:

那么,我们可以采取一些措施来解决这个问题,还是只能等待所有这些应用程序更新?

相关内容