我要评分
获取效率
正确性
完整性
易理解

Installing runC

  • Install runC on the management and compute nodes.
  • If you do not have access to the Internet, configure a proxy .

Procedure

  1. Clone the runC repository code.
    1
    2
    cd /root
    git clone https://github.com/opencontainers/runc -b v1.1.0
    
  2. Compile the source code.
    1
    2
    cd runc
    make
    

  3. Install runC.
    1
    make install
    

  4. Check whether runC is successfully installed.
    1
    runc --version
    

    If the runC version is displayed, the installation is successful.