当我尝试在新的 Debian 上安装 sudo 时出现“无法找到软件包 sudo”

当我尝试在新的 Debian 上安装 sudo 时出现“无法找到软件包 sudo”

我在一台小型 VPS 上安装了新的 Debian,现在当我尝试安装 sudo 时,我只收到此消息。我还尝试将 FTP 服务器添加到列表中,但仍然收到该错误。

root@srv45758:~# vi /etc/apt/sources.list
deb http://ftp.de.debian.org/debian/ jessie main contrib non-free
deb http://ftp.de.debian.org/debian/ main contrib non-free
deb http://security.debian.org jessie/updates main contrib non-free

有人知道这个问题吗?

答案1

验证你的来源这里

尝试使用apt-get install sudo来获取它。

您可以通过其配置文件来配置用户使用它:

vi /etc/sudoers

add a line:

user ALL=(ALL) ALL

答案2

apt-get update
apt-get install sudo

答案3

添加/etc/apt/sources.list

deb http://deb.debian.org/debian stretch main
deb-src http://deb.debian.org/debian stretch main

然后运行su && apt-get update。现在打开新的 shell,它就可以使用了

相关内容