无法安装开放式 ssh 服务器

无法安装开放式 ssh 服务器

我对 Ubuntu 环境完全陌生。我正尝试使用 sudo apt-get install openssh-server 在我的 Ubuntu 服务器上安装 open ssh 服务器

但我收到以下错误:

Some packages could not be installed.This may mean you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.

请帮忙。

提前致谢。

斯里兰卡

答案1

尝试这个:

sudo dpkg --configure -a
sudo apt-get clean
sudo apt-get update
sudo apt-get install --fix-missing
sudo apt-get install openssh-server

答案2

尝试使用aptitude而不是apt-get

sudo aptitude install <packagename>

如果你的机器上没有 aptitude,你可以通过输入以下命令来获取:

sudo apt-get install aptitude

并尝试再次安装 OpenSSH:

sudo aptitude install openssh-server

相关内容