安装 wget 包

安装 wget 包

当我尝试在 ubuntu 上安装 webmin 时

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package webmin

我正在使用本指南https://www.digitalocean.com/community/tutorials/how-to-install-webmin-on-ubuntu-16-04尝试过很多次了,有什么想法吗?哦,我对 ubuntu 也了解不多。谢谢

答案1

请按照以下步骤操作:

安装 wget 包

$sudo apt install wget

安装 webmin

$ wget -qO- http://www.webmin.com/jcameron-key.asc | sudo apt-key add

$ sudo add-apt-repository "deb http://download.webmin.com/download/repository sarge contrib"

$ sudo apt update

现在安装 webmin

$ sudo apt -y install webmin

安装完成。

现在访问http://localhost:10000

相关内容