Centos8 安装飞行舱和 docker
最小化安装 选择了开发的包 有个不理解的就是 centos8 只出现了 dvd 的包,还没有出现 mini 的 安装飞行舱 #yum install -y cockpit #systemctl start cockpit # systemctl enable --now cockpit.socket 效果图如下 安装 docker yum install docker-ce 安装过程中报错了 问题: package docker-ce-3:19.03.4-3.el7.x86_64 requires containerd.io >= 1.2.2-3, but none of the providers can be installed 去 docker 的官方 repo 里面看到 centos8 并没有,只有 7 的,所以下载了一个最新的 https://download.docker.com/linux/centos/7/x86_64/stable/Packages/ 执行 yum localinstall containerd.io-1.2.10-3.2.el7.x86_64.rpm,安装成功 a....