Docker安装使用教程,以及常用命令!
安装脚本
一键安装脚本!Linux系统都支持!1curl -sSL https://get.docker.com/ | sh
国内阿里云镜像1curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
Azure源(中国区azure)1curl -fsSL https://get.docker.com | bash -s docker --mirror AzureChinaCloud
启动服务
启动Docker1systemctl start docker
开机启动1systemctl enable docker
linux修改时区
12echo "Asia/shanghai" > /etc/timezonecp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
wallpaper
收藏的一些壁纸
壁纸
收藏的一些壁纸
编程环境和软件设施安装
CentOS Liunx 7 更换为阿里云的源1、备份1mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2. 下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/12wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
3. 运行 yum makecache 生成缓存1[root@localhost ~]# yum makecache
GIT⼯具安装⽅式⼀:通过包管理器安装在Linux上安装 Git 向来仅需⼀⾏命令即可搞定,因为各式各样的包管理器帮了我们⼤忙,所以对于 CentOS 系统来讲,直接执⾏如下命令即可安装:
1yum install git
当然通过这种⽅式安装的 Git 可能不是较新版的Git,以我们的实验环境 CentOS 7.8 来说,这种⽅ 式安装的 Git 版本为 1 ...