因此,我尝试在 Ubuntu 16.04 amazon ec2 实例上安装 webmin。我已经安装了 apache2、php7、mariadb。我一直在使用http://www.htpcbeginner.com/how-to-install-webmin-on-ubuntu/指南一切都进行得很顺利,直到 apt-get install 时出现此错误。
Reading package lists... Done
Building dependency tree
Reading state information... Done
N: Ignoring file 'webmin.list.' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Unable to locate package webmin
有任何想法吗?
答案1
N: Ignoring file 'webmin.list.' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
文件扩展名应该是.list
,而不是.list.
为了让 Apt 将其作为包源文件。
重命名文件:
sudo mv /etc/apt/sources.list.d/webmin.list. /etc/apt/sources.list.d/webmin.list
根据修改后的软件包源更新软件包列表:
sudo apt update
安装
webmin
软件包:sudo apt install webmin
答案2
删除 webimin ppasudo rm /etc/apt/sources.list.d/webmin*
然后确保正确添加用于安装 webmin 的 ppa
sudo sh -c "echo deb http://download.webmin.com/download/repository sarge contrib > /etc/apt/sources.list.d/webmin.list"
然后就做
sudo apt-get update
sudo apt-get install webmin
答案3
删除 webimin ppa sudo rm /etc/apt/sources.list.d/webmin*
然后确保正确添加用于安装 webmin 的 ppa
sudo sh -c “回显 debhttp://download.webmin.com/download/repository sarge 贡献 > /etc/apt/sources.list.d/webmin.list”
然后就做
sudo apt-get 更新 sudo apt-get 安装 webmin
这对我有用