写点什么

极客时间运维进阶训练营第一周作业

作者:独钓寒江
  • 2022-12-26
    广东
  • 本文字数:664 字

    阅读完需:约 2 分钟

1. 梳理各 Namespace 的作用


https://en.wikipedia.org/wiki/Linux_namespaces


| 简称 | 全名 | 作用 |

| ---- | ---- | ---- |

| MNT Namespace | Mount Namespace | 磁盘挂载点、文件系统的隔离 |

| IPC Namespace | Interprocess Communication Namespace | 进程间通信资源隔离 |

| UTS namespaces | UNIX Time-Sharing | 主机名隔离 |

| PID namespace | Process ID namespace | 进程隔离 |

| Net namespace | Network namespace | 网络隔离 |

| User namespace | User namespace | 用户隔离 |

| Time namespace | Time namespace | 时间隔离 |

| syslog namespace | syslog namespace | syslog 隔离 |

| cgroup namespace | Control group namespace | 进程所属的控制组的身份隔离 |

2. 使用 apt/yum/ 二进制安装指定版本的 Docker

https://docs.docker.com/engine/install/binaries/


Download the static binary archive. Go to https://download.docker.com/linux/static/stable/x86_64/


cd /opt/

ll


Extract the archive using the tar utility.

tar xvfz docker-20.10.22.tgz
复制代码


Move the binaries to a directory on your executable path, such as /usr/bin/

cp docker/* /usr/bin/


Start the Docker daemon:

dockerd &


docker --version


docker info


docker run hello-world


https://docs.docker.com/engine/install/linux-postinstall/

  1. Create the docker group.

    $ sudo groupadd docker

  2. Add your user to the docker group.

    $ sudo usermod -aG docker $USER


3. 熟练使用 Docker 数据卷

4. 熟练使用 Docker 的 bridge 和 container 模式网络

用户头像

独钓寒江

关注

还未添加个人签名 2018-08-08 加入

还未添加个人简介

评论

发布
暂无评论
极客时间运维进阶训练营第一周作业_独钓寒江_InfoQ写作社区