我正在尝试按照教程来安装 docker:
sudo yum -y update
sudo yum install -y docker
但是我收到以下错误:
Repository 'sslstrip': Error parsing config: Error parsing "baseurl = 'sslstrip'": URL must be http, ftp, file or https not ""
There are no enabled repos.
Run "yum repolist all" to see the repos you have.
You can enable repos with yum-config-manager --enable <repo>
我尝试了几种方法,但都未能摆脱这个问题。
我如何启用 sslstrip?我如何解决有关 sslstrip 的问题?
答案1
yum
是 RedHat 系列发行版(RHEL、Fedora、Centos)的安装管理器。在 Ubuntu 上,您应该使用apt
/ apt-get
:
sudo apt install docker-ce
但是,由于您似乎运行的是相当旧的 Ubuntu 版本(16.04?),最好从 Docker 存储库安装 Docker 以获取最新版本:
https://docs.docker.com/engine/install/ubuntu/
(Ubuntu 存储库中的版本在发行版发布时就被冻结了,因此apt
您安装的版本将运行 4 到 5 年前的版本)。