adebian添加比较新的软件

adebian添加比较新的软件,第1张

Debian可以使用apt-get命令来添加新的软件,也可以使用Debian软件仓库中的软件包来安装新的软件。首先,需要更新软件仓库,然后使用apt-get命令搜索想要安装的软件,最后使用apt-get install命令安装软件。

1.卸载历史docker

sudo apt-get remove docker docker-engine docker.io

2. 更新apt-get源

sudo apt-get update

3.安装软件包让apt支持HTTPS

sudo apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common

4.添加docker官方GPG KEY

curl -fsSL https://download.docker.com/linux/$(. /etc/os-releaseecho"$ID")/gpg | sudo apt-key add -

5.指纹验证

sudo apt-key fingerprint 0EBFCD88

是否是:9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88

6.添加apt镜像仓库

x86_64 :

sudo add-apt-repository\"deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-releaseecho"$ID")\$(lsb_release -cs)\stable"

armhf :

echo"deb [arch=armhf] https://download.docker.com/linux/$(. /etc/os-releaseecho"$ID")\$(lsb_release -cs)stable"|\sudo tee /etc/apt/sources.list.d/docker.list

7.安装docker CE(Docker 从 17.03版本之后分为 CE(Community Edition) 和 EE(Enterprise Edition))

sudo apt-get update

sudo apt-get install docker-ce


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7969790.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存