3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

メモ:RaspberryPiにAzure IoTEdge ランタイムをインストール

Posted at

Azure IoT Edge ランタイムのインストールを何回か行ったので忘れないようにメモ

#インストール編

詳しい手順はここを見るのが確実です。(トラブルシューティングも書いてる)

必要なのはRaspberrypi(Arm32v7以上の機種 zeroはダメでした。)

とりあえず順番にコマンドを実行すればOK

1.
curl https://packages.microsoft.com/config/debian/stretch/multiarch/prod.list > ./microsoft-prod.list

リポジトリがStretchになっているけれども、Busterでもそのままで大丈夫です。

2.
sudo cp ./microsoft-prod.list /etc/apt/sources.list.d/
3.
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
4.
sudo cp ./microsoft.gpg /etc/apt/trusted.gpg.d/
5.
sudo apt-get update
6.
sudo apt-get install moby-engine

コンテナエンジンのインストール

7.
sudo apt-get install iotedge

IoTEdgeランタイム本体のインストール

 
以上でインストールは完了です。

次は設定編です。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?