JetPack 4.3 - L4T R32.3.1 released

Hello!

I have reproduced the issue with the SD card image. Please note that although the above will fix the initial problem, this change will cause further issues. So at the moment please refrain from making this change. We will have a fix for you to try shortly.

Regards,
Jon

Hello!

On further the review, the simplest fix for the Jetson.IO tool when using the SD card is to do the following 


$ sudo mkdir /boot/dtb
$ sudo cp -v /boot/tegra210-p3448-0000-p3449-0000-[ab]0[012].dtb /boot/dtb/

Let me know if this works. I will ensure that this is fixed for future releases.

Regards,
Jon

1 Like

Apparently my worship of the old ones is insufficient. Switching to Satan. The apt configuration is incorrect on the rootfs. As such, the OTA updates would appear to be broken (maybe something happens to the sources at first boot, idk) (edit: it does).

$ sudo enter_chroot.sh rootfs
+ cp /usr/bin/qemu-aarch64-static rootfs/usr/bin
+ mount -t sysfs -o ro none rootfs/sys
+ mount -t proc -o ro none rootfs/proc
+ mount -t tmpfs none rootfs/tmp
+ mount -o bind,ro /dev rootfs/dev
+ mount -t devpts none rootfs/dev/pts
+ mount -o bind,ro /etc/resolv.conf rootfs/run/resolvconf/resolv.conf
+ chroot rootfs
root@hostname:/# apt update
Hit:1 https://repo.download.nvidia.com/jetson/common r32 InRelease
Hit:2 http://ports.ubuntu.com/ubuntu-ports bionic InRelease                                                 
Get:3 http://ports.ubuntu.com/ubuntu-ports bionic-updates InRelease [88.7 kB]                               
Hit:4 http://ports.ubuntu.com/ubuntu-ports bionic-backports InRelease                
Hit:5 http://ports.ubuntu.com/ubuntu-ports bionic-security InRelease
Ign:6 https://repo.download.nvidia.com/jetson/<SOC> r32 InRelease
Err:7 https://repo.download.nvidia.com/jetson/<SOC> r32 Release
  404  Not Found [IP: 23.194.212.195 443]
Get:8 http://ports.ubuntu.com/ubuntu-ports bionic-updates/main arm64 Packages [603 kB]
Get:9 http://ports.ubuntu.com/ubuntu-ports bionic-updates/universe arm64 Packages [924 kB]
Reading package lists... Done                                                      
E: The repository 'https://repo.download.nvidia.com/jetson/<SOC> r32 Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

If I comment out “Index” in the sources, apt update works, but I assume I’m missing packages in this case. Any idea what’s supposed to go in “” for the nano?

Edit:
To those looking for how to update these packages prior to first boot (in a chroot, for example), the script that fills in the apt sources on first boot is rootfs/etc/systemd/nvfb.sh

important bit:

# Update chipid to apt source list file
SOURCE="/etc/apt/sources.list.d/nvidia-l4t-apt-source.list"
if [ -e "${SOURCE}" ]; then
	CHIP="$(cat /proc/device-tree/compatible)"
	if [[ "${CHIP}" =~ "tegra210" ]]; then
		sed -i "s/<SOC>/t210/g" "${SOURCE}"
	elif [[ "${CHIP}" =~ "tegra186" ]]; then
		sed -i "s/<SOC>/t186/g" "${SOURCE}"
	elif [[ "${CHIP}" =~ "tegra194" ]]; then
		sed -i "s/<SOC>/t194/g" "${SOURCE}"
	else
		logger "nvfb: Updating apt source list failed with exit code: 1"
	fi
fi

so if you run into this issue, edit rootfs/etc/apt/sources.list.d/nvidia-l4t-apt-source.list to match the following for Nano (t210 is nano, right?):

deb https://repo.download.nvidia.com/jetson/common r32 main
deb https://repo.download.nvidia.com/jetson/t210 r32 main

Aha, thanks for digging into that - yes, T210 is Nano (and TX1)

YW. Thanks for the confirmation. Perhaps in future releases, SDKM could fill it in, rather than a first boot script? For those who ask, is there anything that’s not available through the online repos, that in a case of a chroot must still be installed via dpkg?

These online repos are great, btw. I just did a full system update and installed deepstream, all before first boot. Many thanks again for moving to this system rather than requiring SDKM or manual .deb installation for this step!

Do I have to reflash / reimage the Jetson Nano everytime a new Jetpack SDK is released?

I cannot for the life of me figure out how to “update” jetson nano jetpack sdk
 I originally flashed the SD card using the image from the nvidia site about 4 months ago. There have been a few jetpack SDK upgrades I need that I cant figure out how to update.

thanks . this works for me.

Hi mitchross09, you will need to re-flash your SD card to upgrade to JetPack 4.3. Be sure to backup any files you want to save from your SD card, because the SD card will be wiped during the flashing process.

Then for future upgrades, you will simply be able to upgrade to the next JetPack version from the command line without re-flashing, as JetPack 4.3 introduced a new APT server for hosting JetPack packages. You still need to re-flash to get on JetPack 4.3, but future upgrades can just use the APT server.

Does it matter that my a02 board shows b00?

The module is labelled 180-13448-DAAA-A02
The carrier is labelled 180-13449-DAAF-A02

but

cat /sys/firmware/devicetree/base/compatible
nvidia,p3449-0000-b00+p3448-0000-b00 nvidia,Jetson-nano nvidia,tegra210

and the b00 dtb is the one that gets used as the base by jetson-io.

Hello!

No this is expected. A02 and B0x are compatible and going forward we use the B00 DTB for A02 as well.

Regards,
Jon

Hi Jon,

I am having some difficulty running the jetson-io as well. The issue I am seeing is that the curses “window” pops up for an instant and then disappears immediately.

DTB Files have been copied.

root@jetson-desktop:/home/benky58un# ls /boot/dtb
tegra210-p3448-0000-p3449-0000-a00.dtb  tegra210-p3448-0000-p3449-0000-a02.dtb  tegra210-p3448-0000-p3449-0000-b00.dtb
root@jetson-desktop:/home/benky58un#

Jetson-io fails to run as described above. Return code is 1

root@jetson-desktop:/home/benky58un# python3 /opt/nvidia/jetson-io/jetson-io.py
root@jetson-desktop:/home/benky58un# echo $?
1

Debugging information as requested.

root@jetson-desktop:/home/benky58un# cat /sys/firmware/devicetree/base/compatible
nvidia,p3449-0000-a01+p3448-0000-a01nvidia,jetson-nanonvidia,tegra210
root@jetson-desktop:/home/benky58un#
root@jetson-desktop:/home/benky58un# fdtget /boot/dtb/*.dtb / compatible
Error at '/boot/dtb/tegra210-p3448-0000-p3449-0000-a02.dtb': FDT_ERR_NOTFOUND

Regards
Ben

Hi Ben,

Looks like you have an A01 board. Please try the following 


sudo cp -v /boot/tegra210-p3448-0000-p3449-0000-[ab]0[012].dtb /boot/dtb/

Regards,
Jon

Yes I just figured it out :-)

Thanks for the quick reply.

The issue is that curses clears the screen on exit and if you encounter an error, it’s not waiting for the user to press enter. The result is a quick flash and you’re back to your shell prompt.

Hello!

Have you implemented the workaround here 


You can also execute one of the commandline scripts and this should report any errors as well 


$ sudo /opt/nvidia/jetson-io/config-by-pin.py

Regards,
Jon

I shared my preliminary test results of JetPack-4.3 on Jetson Nano in this blog post “JetPack-4.3 for Jetson Nano”: https://jkjung-avt.github.io/jetpack-4.3/

My primary focus was on TensorRT 6 performance


Oh yeah, I figured it out the other day just by redirecting the output from jetson-io.py to a file. I was just reporting to you guys what the issue was. :)

Hi!
I got the same error while executing the Jetson-IO on Jetson Nano, and found the following command fixes the problem.
Hope this helps.

The error:

ubuntu@JETBOT:~$ sudo /opt/nvidia/jetson-io/config-by-pin.py -p 5
Traceback (most recent call last):
  File "/opt/nvidia/jetson-io/config-by-pin.py", line 51, in <module>
    main()
  File "/opt/nvidia/jetson-io/config-by-pin.py", line 34, in main
    jetson = board.Board()
  File "/opt/nvidia/jetson-io/Jetson/board.py", line 149, in __init__
    self.dtb = _board_get_dtb(self.compat, self.model, dtbdir)
  File "/opt/nvidia/jetson-io/Jetson/board.py", line 88, in _board_get_dtb
    raise RuntimeError("No DTB found for %s!" % model)
RuntimeError: No DTB found for NVIDIA Jetson Nano Developer Kit!

The command to fix the problem:

sudo mkdir -p /boot/dtb
ls /boot/*.dtb | xargs -I{} sudo ln -s {} /boot/dtb/

can you add nls_utf8 as a module to the next release of the kernel, one line in your base config file

CONFIG_NLS_UTF8=m

would build the module

Trying to install with sdkmanager via WSL (windows sub system for linux ubuntu 18.04 LTS) failed with this error:

23:32:22 INFO : null
23:32:29 INFO : CUDA on Host : Download ‘CUDA on Host’ success
23:32:29 INFO : Drivers for Jetson AGX : Download ‘Drivers for Jetson AGX’ success
23:32:29 INFO : OpenCV on Host : Download ‘OpenCV on Host’ success
23:32:29 INFO : CUDA Cross Compile Package on Host : Download ‘CUDA Cross Compile Package on Host’ success
23:32:29 INFO : NVIDIA Nsight Graphics : Download ‘NVIDIA Nsight Graphics’ success
23:32:29 INFO : DevTools Documentation : Download ‘DevTools Documentation’ success
23:32:29 INFO : VisionWorks on Host : Download ‘VisionWorks on Host’ success
23:32:29 INFO : NVIDIA Nsight Systems : Download ‘NVIDIA Nsight Systems’ success
23:32:29 INFO : CUDA on Host : install ‘CUDA on Host’ success
23:32:29 INFO : Drivers for Jetson AGX : install ‘Drivers for Jetson AGX’ success
23:32:30 INFO : OpenCV on Host : install ‘OpenCV on Host’ success
23:32:30 INFO : CUDA Cross Compile Package on Host : install ‘CUDA Cross Compile Package on Host’ success
23:32:30 INFO : NVIDIA Nsight Graphics : install ‘NVIDIA Nsight Graphics’ success
23:32:30 INFO : DevTools Documentation : install ‘DevTools Documentation’ success
23:32:30 INFO : VisionWorks on Host : install ‘VisionWorks on Host’ success
23:32:30 INFO : NVIDIA Nsight Systems : install ‘NVIDIA Nsight Systems’ success
23:32:30 INFO : CUDA Toolkit for L4T : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/cuda-repo-l4t-10-0-local-10.0.326_1.0-1_arm64.deb
23:32:30 INFO : OpenCV on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-libs.deb
23:32:30 INFO : OpenCV on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-dev.deb
23:32:30 INFO : OpenCV on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-licenses.deb
23:32:30 INFO : OpenCV on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-python.deb
23:32:30 INFO : OpenCV on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-samples.deb
23:32:30 INFO : OpenCV on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-dev.deb with correct checksum, skip downloading.
23:32:30 INFO : OpenCV on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-libs.deb with correct checksum, skip downloading.
23:32:30 INFO : cuDNN on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7_7.6.3.28-1+cuda10.0_arm64.deb
23:32:30 INFO : OpenCV on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-python.deb with correct checksum, skip downloading.
23:32:30 INFO : OpenCV on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-licenses.deb with correct checksum, skip downloading.
23:32:30 INFO : OpenCV on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/OpenCV-4.1.1-2-gd5a58aa75-aarch64-samples.deb with correct checksum, skip downloading.
23:32:30 INFO : cuDNN on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7-dev_7.6.3.28-1+cuda10.0_arm64.deb
23:32:30 INFO : cuDNN on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7-doc_7.6.3.28-1+cuda10.0_arm64.deb
23:32:30 INFO : File System and OS : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/Tegra_Linux_Sample-Root-Filesystem_R32.3.1_aarch64.tbz2
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer6_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : cuDNN on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7-doc_7.6.3.28-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer6_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-plugin6_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-plugin6_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-plugin-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvonnxparsers6_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-plugin-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : cuDNN on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7-dev_7.6.3.28-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvonnxparsers-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : cuDNN on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libcudnn7_7.6.3.28-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvparsers6_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvparsers-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvonnxparsers6_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvparsers6_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvonnxparsers-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-bin_6.0.1-1+cuda10.0_arm64.deb
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-doc_6.0.1-1+cuda10.0_all.deb
23:32:30 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvparsers-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-samples_6.0.1-1+cuda10.0_all.deb
23:32:30 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/tensorrt_6.0.1.10-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-bin_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-doc_6.0.1-1+cuda10.0_all.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/python-libnvinfer_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/tensorrt_6.0.1.10-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/python-libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/python3-libnvinfer_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/python-libnvinfer_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/python3-libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/python-libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/python3-libnvinfer_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/graphsurgeon-tf_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/uff-converter-tf_6.0.1-1+cuda10.0_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/graphsurgeon-tf_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/python3-libnvinfer-dev_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-cuda_10.0.326-1_arm64.deb
23:32:31 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/uff-converter-tf_6.0.1-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-cudnn_7.6.3.28-1+cuda10.0_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-tensorrt_6.0.1.10-1+cuda10.0_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-cudnn_7.6.3.28-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-cuda_10.0.326-1_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-visionworks_1.6.0.500n_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-tensorrt_6.0.1.10-1+cuda10.0_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvidia-container0_0.9.0_beta.1_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libnvidia-container-tools_0.9.0_beta.1_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvidia-container0_0.9.0_beta.1_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-csv-visionworks_1.6.0.500n_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-toolkit_1.0.1-1_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvidia-container-tools_0.9.0_beta.1_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-runtime_3.1.0-1_arm64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-docker2_2.2.0-1_all.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-runtime_3.1.0-1_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-container-toolkit_1.0.1-1_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : Multimedia API : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-l4t-jetson-multimedia-api_32.3.1-20191209230245_arm64.deb
23:32:31 INFO : VPI : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-lib-0.1.0-r2-l4t-aarch64.deb
23:32:31 INFO : NVIDIA Container Runtime with Docker integration (Beta) : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-docker2_2.2.0-1_all.deb with correct checksum, skip downloading.
23:32:31 INFO : VPI : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-dev-0.1.0-r2-l4t-aarch64.deb
23:32:31 INFO : VPI : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-lib-0.1.0-r2-l4t-aarch64.deb with correct checksum, skip downloading.
23:32:31 INFO : VPI : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-samples-0.1.0-r2-l4t-aarch64.deb
23:32:31 INFO : VPI : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-dev-0.1.0-r2-l4t-aarch64.deb with correct checksum, skip downloading.
23:32:31 INFO : VisionWorks on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-repo_1.6.0.500n_arm64.deb
23:32:31 INFO : VPI : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/vpi-samples-0.1.0-r2-l4t-aarch64.deb with correct checksum, skip downloading.
23:32:31 INFO : Multimedia API : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/nvidia-l4t-jetson-multimedia-api_32.3.1-20191209230245_arm64.deb with correct checksum, skip downloading.
23:32:31 INFO : VisionWorks on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-sfm-repo_0.90.4_arm64.deb
23:32:32 INFO : VisionWorks on Target : verifying checksum of /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-tracking-repo_0.88.2_arm64.deb
23:32:32 INFO : VisionWorks on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-sfm-repo_0.90.4_arm64.deb with correct checksum, skip downloading.
23:32:32 INFO : VisionWorks on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-tracking-repo_0.88.2_arm64.deb with correct checksum, skip downloading.
23:32:32 INFO : TensorRT on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libnvinfer-samples_6.0.1-1+cuda10.0_all.deb with correct checksum, skip downloading.
23:32:32 INFO : VisionWorks on Target : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/libvisionworks-repo_1.6.0.500n_arm64.deb with correct checksum, skip downloading.
23:32:32 INFO : CUDA Toolkit for L4T : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/cuda-repo-l4t-10-0-local-10.0.326_1.0-1_arm64.deb with correct checksum, skip downloading.
23:32:33 INFO : File System and OS : Found file /home/gubert/Downloads/nvidia/sdkm_downloads/Tegra_Linux_Sample-Root-Filesystem_R32.3.1_aarch64.tbz2 with correct checksum, skip downloading.
23:32:33 INFO : File System and OS : Download ‘File System and OS’ success
23:32:33 INFO : File System and OS : Start to install ‘File System and OS’
23:32:33 DEBUG : File System and OS : running command < cd ‘/home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888’ ; ‘/opt/nvidia/sdkmanager/resources/app/output/installUtils/adapter’ -a=‘install’ -c=‘eyJpZCI6Ik5WX0w0VF9GSUxFX1NZU1RFTV9BTkRfT1NfVDE5NF9DT01QIiwibmFtZSI6IkZpbGUgU3lzdGVtIGFuZCBPUyIsImRlc2NyaXB0aW9uIjoiRmlsZSBTeXN0ZW0iLCJjb21wVHlwZSI6InRhcmdldF9pbWFnZSIsImlzVmlzaWJsZSI6dHJ1ZSwibGljZW5zZUlkIjoiTlZfSkVUUEFDS19PU19FVUxBIiwiaXNEZXRlY3RhYmxlSW5zdGFsbCI6ZmFsc2UsImlzSW5zdGFsbFBhdGhDdXN0b21pemFibGUiOnRydWUsInZlcnNpb24iOiIzMi4zIiwib3BlcmF0aW5nU3lzdGVtcyI6WyJ1YnVudHUxNjA0IiwidWJ1bnR1MTgwNCJdLCJpbnN0YWxsU2l6ZU1CIjozMjg0LCJkb3dubG9hZEZpbGVzIjpbeyJ1cmwiOiJUMTk0L1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJmaWxlTmFtZSI6IlRlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJzaXplIjoxMjYzMjI4ODg5LCJjaGVja3N1bSI6IjMxYzlmOTc1YWIxOTY4NDk4MzQyMWZhODViYTcwODAyIiwiY2hlY2tzdW1UeXBlIjoibWQ1IiwiaW5zdGFsbFBhcmFtZXRlcnMiOnsiaW5zdGFsbFR5cGUiOiJjbWQiLCJhZGRpdGlvbmFsUGFyYW1ldGVycyI6eyJpbnN0YWxsRGlyIjoie3tUQVJHRVRfUk9PVH19L3t7QlVORExFX1RJVExFfX1fe3tCT0FSRF9JRH19L0xpbnV4X2Zvcl9UZWdyYS9yb290ZnMvIiwicHJlaW5zdGFsbENvbW1hbmRzIjpbeyJ1c2VyQ29tbWFuZCI6InN1ZG8gYXB0LWdldCBpbnN0YWxsIC15IHFlbXUtdXNlci1zdGF0aWMifV0sImluc3RhbGxDb21tYW5kcyI6W3siZXhlY0Jhc2giOlsic3VkbyB0YXIgeHBmIHt7RklMRV9QQVRIfX0iLCJjZCAuLiIsInN1ZG8gLi9hcHBseV9iaW5hcmllcy5zaCIsInN1ZG8gbWtkaXIgLXAgcm9vdGZzL29wdC9udmlkaWEvZGViX3JlcG9zIl19XX19LCJjYWNoZWRVcmwiOiJodHRwczovL2RldmVsb3Blci5udmlkaWEuY29tL2Fzc2V0cy9lbWJlZGRlZC9zZWN1cmUvdG9vbHMvZmlsZXMvamV0cGFjay1zZGtzL2pldHBhY2stNC4zL0pFVFBBQ0tfNDNfYjEzMi9UMTk0L1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIifV0sInRhcmdldElkcyI6WyJQMjg4OCIsIlAyODg4LTAwNjAiXSwiZGVwZW5kZW5jaWVzIjpbeyJpZCI6Ik5WX0w0VF9EUklWRVJTX1QxOTRfQ09NUCIsIm9wZXJhdG9yIjoiPT0iLCJ2ZXIiOiIzMi4zIiwiX2lkIjoiTlZfTDRUX0RSSVZFUlNfVDE5NF9DT01QQFAyODg4In1dLCJleHRlcm5hbF9kZXBlbmRlbmNpZXMiOltdLCJ0YXJnZXRJRCI6IlAyODg4IiwiX2lkIjoiTlZfTDRUX0ZJTEVfU1lTVEVNX0FORF9PU19UMTk0X0NPTVBAUDI4ODgiLCJwYXJlbnRJRCI6Ik5WX0pFVFBBQ0tfTDRUX0lNQUdFX1NFVFVQX1RBUkdFVF9HUk9VUCIsIl9wYXJlbnRJRCI6Ik5WX0pFVFBBQ0tfTDRUX0lNQUdFX1NFVFVQX1RBUkdFVF9HUk9VUEBQMjg4OCIsImluc3RhbGxTdGF0dXMiOiJub25lIiwiYWN0aW9uIjoxLCJmaXJzdERvd25sb2FkRmlsZSI6Ii9ob21lL2d1YmVydC9Eb3dubG9hZHMvbnZpZGlhL3Nka21fZG93bmxvYWRzL1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJidW5kbGVUaXRsZSI6IkpldFBhY2tfNC4zX0xpbnV4IiwiaW5zdGFsbFBhdGgiOiIvaG9tZS9ndWJlcnQvbnZpZGlhL252aWRpYV9zZGsvSmV0UGFja180LjNfTGludXhfUDI4ODgiLCJpbnN0YWxsUm9vdCI6Ii9ob21lL2d1YmVydC9udmlkaWEvbnZpZGlhX3NkayIsImJvYXJkSUQiOiJQMjg4OCIsInRhcmdldEFjY2Vzc0luZm8iOnsidXNlciI6IiIsInBhc3N3b3JkIjoiIiwiaG9zdCI6IjE5Mi4xNjguNTUuMSIsInBvcnQiOiIyMiJ9LCJpc0RyeVJ1biI6ZmFsc2V9’ -i=‘NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP’ -v=‘32.3’ -l=‘/home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888’ -L=‘/home/gubert/.nvsdkm/logs/JetPack_4.3_Linux’ -p=‘1325’ -t=‘P2888’ -e=‘/home/gubert/Downloads/nvidia/sdkm_downloads/Tegra_Linux_Sample-Root-Filesystem_R32.3.1_aarch64.tbz2’ >
23:32:33 INFO : File System and OS : [ Disk Avail:27.40 GB ]
23:32:33 INFO : File System and OS : Using GenericInstaller to Install NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP
23:32:33 INFO : File System and OS : NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP include 1 package
23:32:33 INFO : File System and OS : change working directory to /home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888/Linux_for_Tegra/rootfs/
23:32:33 INFO : File System and OS : [ Package PreInstall Started ]
23:32:33 INFO : File System and OS : current working directory is /home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888/Linux_for_Tegra/rootfs
23:32:33 INFO : File System and OS : exec_command: sudo apt-get install -y qemu-user-static
23:32:33 INFO : File System and OS : [host] [sudo] password for gubert:
23:32:33 INFO : File System and OS :
23:32:33 INFO : File System and OS : Reading package lists

23:32:33 INFO : File System and OS : Building dependency tree

23:32:33 INFO : File System and OS : Reading state information

23:32:33 INFO : File System and OS : qemu-user-static is already the newest version (1:2.5+dfsg-5ubuntu10.42).
23:32:33 INFO : File System and OS : 0 upgraded, 0 newly installed, 0 to remove and 190 not upgraded.
23:32:34 INFO : File System and OS : [ Package PreInstall Finished Successfully ]
23:32:34 INFO : File System and OS : [ Package Install Started ]
23:32:34 INFO : File System and OS : current working directory is /home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888/Linux_for_Tegra/rootfs
23:32:34 INFO : File System and OS : exec_command [host]:
23:32:34 INFO : File System and OS : **********************
23:32:34 INFO : File System and OS : #!/bin/bash
23:32:34 INFO : File System and OS : set -e
23:32:34 INFO : File System and OS : sudo tar xpf /home/gubert/Downloads/nvidia/sdkm_downloads/Tegra_Linux_Sample-Root-Filesystem_R32.3.1_aarch64.tbz2
23:32:34 INFO : File System and OS : cd 

23:32:34 INFO : File System and OS : sudo ./apply_binaries.sh
23:32:34 INFO : File System and OS : sudo mkdir -p rootfs/opt/nvidia/deb_repos
23:32:34 INFO : File System and OS : **********************
23:32:34 INFO : File System and OS : exec_command: /tmp/tmp_NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP.sh
23:39:51 ERROR : File System and OS : sudo: ./apply_binaries.sh: command not found
23:39:51 INFO : File System and OS : exit status 1
23:39:51 INFO : File System and OS : [ Package Install Finished with Error ]
23:39:51 INFO : File System and OS : [ 2.22 GB used. Disk Avail: 25.17 GB ]
23:39:51 INFO : File System and OS : [ NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP Install took 7m19s ]
23:39:51 ERROR : File System and OS : Run commands failed at step Install: command /tmp/tmp_NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP.sh finished with error
23:39:51 INFO : File System and OS :
23:39:51 ERROR : File System and OS : command terminated with error
23:39:51 ERROR : File System and OS : install ‘File System and OS’ failure, command < cd ‘/home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888’ ; ‘/opt/nvidia/sdkmanager/resources/app/output/installUtils/adapter’ -a=‘install’ -c=‘eyJpZCI6Ik5WX0w0VF9GSUxFX1NZU1RFTV9BTkRfT1NfVDE5NF9DT01QIiwibmFtZSI6IkZpbGUgU3lzdGVtIGFuZCBPUyIsImRlc2NyaXB0aW9uIjoiRmlsZSBTeXN0ZW0iLCJjb21wVHlwZSI6InRhcmdldF9pbWFnZSIsImlzVmlzaWJsZSI6dHJ1ZSwibGljZW5zZUlkIjoiTlZfSkVUUEFDS19PU19FVUxBIiwiaXNEZXRlY3RhYmxlSW5zdGFsbCI6ZmFsc2UsImlzSW5zdGFsbFBhdGhDdXN0b21pemFibGUiOnRydWUsInZlcnNpb24iOiIzMi4zIiwib3BlcmF0aW5nU3lzdGVtcyI6WyJ1YnVudHUxNjA0IiwidWJ1bnR1MTgwNCJdLCJpbnN0YWxsU2l6ZU1CIjozMjg0LCJkb3dubG9hZEZpbGVzIjpbeyJ1cmwiOiJUMTk0L1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJmaWxlTmFtZSI6IlRlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJzaXplIjoxMjYzMjI4ODg5LCJjaGVja3N1bSI6IjMxYzlmOTc1YWIxOTY4NDk4MzQyMWZhODViYTcwODAyIiwiY2hlY2tzdW1UeXBlIjoibWQ1IiwiaW5zdGFsbFBhcmFtZXRlcnMiOnsiaW5zdGFsbFR5cGUiOiJjbWQiLCJhZGRpdGlvbmFsUGFyYW1ldGVycyI6eyJpbnN0YWxsRGlyIjoie3tUQVJHRVRfUk9PVH19L3t7QlVORExFX1RJVExFfX1fe3tCT0FSRF9JRH19L0xpbnV4X2Zvcl9UZWdyYS9yb290ZnMvIiwicHJlaW5zdGFsbENvbW1hbmRzIjpbeyJ1c2VyQ29tbWFuZCI6InN1ZG8gYXB0LWdldCBpbnN0YWxsIC15IHFlbXUtdXNlci1zdGF0aWMifV0sImluc3RhbGxDb21tYW5kcyI6W3siZXhlY0Jhc2giOlsic3VkbyB0YXIgeHBmIHt7RklMRV9QQVRIfX0iLCJjZCAuLiIsInN1ZG8gLi9hcHBseV9iaW5hcmllcy5zaCIsInN1ZG8gbWtkaXIgLXAgcm9vdGZzL29wdC9udmlkaWEvZGViX3JlcG9zIl19XX19LCJjYWNoZWRVcmwiOiJodHRwczovL2RldmVsb3Blci5udmlkaWEuY29tL2Fzc2V0cy9lbWJlZGRlZC9zZWN1cmUvdG9vbHMvZmlsZXMvamV0cGFjay1zZGtzL2pldHBhY2stNC4zL0pFVFBBQ0tfNDNfYjEzMi9UMTk0L1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIifV0sInRhcmdldElkcyI6WyJQMjg4OCIsIlAyODg4LTAwNjAiXSwiZGVwZW5kZW5jaWVzIjpbeyJpZCI6Ik5WX0w0VF9EUklWRVJTX1QxOTRfQ09NUCIsIm9wZXJhdG9yIjoiPT0iLCJ2ZXIiOiIzMi4zIiwiX2lkIjoiTlZfTDRUX0RSSVZFUlNfVDE5NF9DT01QQFAyODg4In1dLCJleHRlcm5hbF9kZXBlbmRlbmNpZXMiOltdLCJ0YXJnZXRJRCI6IlAyODg4IiwiX2lkIjoiTlZfTDRUX0ZJTEVfU1lTVEVNX0FORF9PU19UMTk0X0NPTVBAUDI4ODgiLCJwYXJlbnRJRCI6Ik5WX0pFVFBBQ0tfTDRUX0lNQUdFX1NFVFVQX1RBUkdFVF9HUk9VUCIsIl9wYXJlbnRJRCI6Ik5WX0pFVFBBQ0tfTDRUX0lNQUdFX1NFVFVQX1RBUkdFVF9HUk9VUEBQMjg4OCIsImluc3RhbGxTdGF0dXMiOiJub25lIiwiYWN0aW9uIjoxLCJmaXJzdERvd25sb2FkRmlsZSI6Ii9ob21lL2d1YmVydC9Eb3dubG9hZHMvbnZpZGlhL3Nka21fZG93bmxvYWRzL1RlZ3JhX0xpbnV4X1NhbXBsZS1Sb290LUZpbGVzeXN0ZW1fUjMyLjMuMV9hYXJjaDY0LnRiejIiLCJidW5kbGVUaXRsZSI6IkpldFBhY2tfNC4zX0xpbnV4IiwiaW5zdGFsbFBhdGgiOiIvaG9tZS9ndWJlcnQvbnZpZGlhL252aWRpYV9zZGsvSmV0UGFja180LjNfTGludXhfUDI4ODgiLCJpbnN0YWxsUm9vdCI6Ii9ob21lL2d1YmVydC9udmlkaWEvbnZpZGlhX3NkayIsImJvYXJkSUQiOiJQMjg4OCIsInRhcmdldEFjY2Vzc0luZm8iOnsidXNlciI6IiIsInBhc3N3b3JkIjoiIiwiaG9zdCI6IjE5Mi4xNjguNTUuMSIsInBvcnQiOiIyMiJ9LCJpc0RyeVJ1biI6ZmFsc2V9’ -i=‘NV_L4T_FILE_SYSTEM_AND_OS_T194_COMP’ -v=‘32.3’ -l=‘/home/gubert/nvidia/nvidia_sdk/JetPack_4.3_Linux_P2888’ -L=‘/home/gubert/.nvsdkm/logs/JetPack_4.3_Linux’ -p=‘1325’ -t=‘P2888’ -e=‘/home/gubert/Downloads/nvidia/sdkm_downloads/Tegra_Linux_Sample-Root-Filesystem_R32.3.1_aarch64.tbz2’ > terminated with error
23:39:53 ERROR : Device Mode Host Setup in Flash : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : Flash Jetson AGX Xavier : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : Device Mode Host Setup in Target SDK : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : DateTime Target Setup : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : CUDA Toolkit for L4T : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : cuDNN on Target : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : TensorRT on Target : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : OpenCV on Target : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : VisionWorks on Target : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : VPI : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : NVIDIA Container Runtime with Docker integration (Beta) : Flash skipped due to component(s) download/install failure
23:39:53 ERROR : Multimedia API : Flash skipped due to component(s) download/install failure