zoukankan      html  css  js  c++  java
  • ubuntu16.04 跑Apollo Demo

    1、安装docker(参考网址:https://docs.docker.com/install/linux/docker-ce/ubuntu/)

    Uninstall old versions

    Older versions of Docker were called docker or docker-engine. If these are installed, uninstall them:

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

     2、Install Docker CE

    (1)Update the apt package index:
    sudo apt-get update
    (2)Install packages to allow apt to use a repository over HTTPS:
    sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
    (3)Add Docker’s official GPG key:

    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
    (4)Verify that you now have the key with the fingerprint 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88, by searching for the last 8 characters of the fingerprint:
    sudo apt-key fingerprint 0EBFCD88(结果:pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) <docker@docker.com> sub 4096R/F273FCD8 2017-02-22
    (5)Use the following command to set up the stable repository. You always need the stable repository, even if you want to install builds from the edge or test repositories as well. To add the edge or test repository, add the word edge or test (or both) after the word stable in the commands below.
    sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
    (6)Update the apt package index
    sudo apt-get update
    (7)Install the latest version of Docker CE, or go to the next step to install a specific version:
    sudo apt-get install docker-ce
    (8)sudo docker run hello-world
     
     
     
  • 相关阅读:
    [linux] 使用markdown写文档
    [c/c++] C数据结构: 链表 Linked List
    Apache 2 : starting apache
    GNU/CPIO 学习小结
    lsof 命令小结
    在Linux中扩展磁盘容量(1)
    在linux中扩展磁盘容量(2)LVM
    RHEL6.0 QEMU/KVM 建立新的虚拟机之配置Birdged Networking
    NFS server down机或重启导致的NFS系统错误
    Build linux kernel Module
  • 原文地址:https://www.cnblogs.com/llfctt/p/9284264.html
Copyright © 2011-2022 走看看