Difference between revisions of "APITestPage"

From FriendlyELEC WiKi
Jump to: navigation, search
(updated by API)
(updated by API)
Line 27: Line 27:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
结果如下:<br />
 
结果如下:<br />
     No LSB modules are available.<br />
+
<syntaxhighlight lang="bash">
     Distributor ID: Debian<br />
+
     No LSB modules are available.
     Description:    Debian GNU/Linux 8.8 (jessie)<br />
+
     Distributor ID: Debian
     Release:    8.8<br />
+
     Description:    Debian GNU/Linux 8.8 (jessie)
     Codename:  jessie<br />
+
     Release:    8.8
<br />
+
     Codename:  jessie
 +
</syntaxhighlight>

Revision as of 07:26, 11 March 2019

1 Docker的安装与使用

1.1 安装Docker

使用以下命令安装:

wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/containerd.io_1.2.4-1_arm64.deb
wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/docker-ce-cli_18.09.3~3-0~ubuntu-bionic_arm64.deb
wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/docker-ce_18.09.3~3-0~ubuntu-bionic_arm64.deb
sudo dpkg -i containerd.io_1.2.4-1_arm64.deb
sudo dpkg -i docker-ce-cli_18.09.3~3-0~ubuntu-bionic_arm64.deb
sudo dpkg -i docker-ce_18.09.3~3-0~ubuntu-bionic_arm64.deb

1.2 验证Docker的安装

  • 用Docker创建一个debian镜像
git clone https://github.com/friendlyarm/debian-jessie-aarch64-docker
cd debian-jessie-aarch64-docker
./rebuild-image.sh
  • 运行Docker镜像:
# ./run.sh
  • 查看容器中的debian版本:
apt-get install lsb-release
lsb_release -a

结果如下:

    No LSB modules are available.
    Distributor ID: Debian
    Description:    Debian GNU/Linux 8.8 (jessie)
    Release:    8.8
    Codename:   jessie