标签:ash ble restart mct release 地址 tool update sof
安装依赖
sudo apt-get install apt-transport-https ca-certificates software-properties-common
添加清华源镜像地址
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add
添加仓库
sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
更新软件源
sudo apt-get update
安装docker-ce 也可以指定固定的版本,默认是安装最新版本。
默认最新:sudo apt-get install docker-ce //这条命令就可以
指定版本:sudo apt-get install docker-ce=<VERSION>
根据需要来 配置docker 自启动或者禁用
sudo systemctl enable/disable docker
启动docker
sudo systemctl start docker
建立docker 组
sudo groupadd docker //可能提示你已经存在
将当前用户添加进docker组
sudo gpasswd -a ${USER} docker
此时group命令获取到的是缓存组的信息。所以我们要手动刷新一下
newgrp - docker
这个网络你不设置个加速器能气死你。
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://8ad7943c.m.daocloud.io
重启docker
sudo systemctl restart docker
标签:ash ble restart mct release 地址 tool update sof
原文地址:https://www.cnblogs.com/aric2016/p/12045233.html