Installing Azure IoTEdge Runtime on Jetson Orin

Hello,

I am trying to use the Orin as an edge device and I’ve been struggling with the installation of the IotEdge Runtime on the Jetson Orin. I’ve followed different wikis while trying to get it to work, but I haven’t succeded so far.

This is the main wiki I followed:

I may be missing a key information here, let me know if you have any advice on how I could make it work.

Hi,

We can install it with the following command.
Please give it a try:

$ sudo apt install curl
$ bash -c "$(curl -sL https://aka.ms/ava-edge/prep_device)"
$ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
$ sudo cp ./microsoft.gpg /etc/apt/trusted.gpg.d/
$ curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list  > ./microsoft-prod.list
$ sudo cp ./microsoft-prod.list /etc/apt/sources.list.d/
$ sudo apt-get update
$ sudo apt-get install -y libssl1.1 moby-engine moby-cli iotedge

Thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.