Hi, Thank for nvidia-sdk-manager, we can flash our jetson nano emmc and install nvidia-docker manually (due to the limited storage).
sudo apt install nvidia-docker2
Update docker daemon
sudo vim /etc/docker/daemon.json
Ensure that /etc/docker/daemon.json with the path to nvidia-container-runtime:
{
"runtimes": {
"nvidia": {
"path": "/usr/bin/nvidia-container-runtime",
"runtimeArgs": []
}
}
}
Make docker update the path:
sudo pkill -SIGHUP dockerd
Howerver, unlike jetson sd, we had some problems installing some libraries that needed cuda.
libcublas.so.10.2: cannot open shared object file: No such file or directory
I checked, there is size difference of folder cuda-10.2 between docker container emmc and sd
In container emmc: /usr/local/cuda-10.2 – 111mb
In container sd: /usr/local/cuda-10.2 – 2.6gb
Since Deepstream 5.1 depends on the JetPack 4.5.1 which is released for a while.
If you are using a newer JetPack version, could you upgrade to the corresponding Deepstream instead?