ott2296Lydocker run

I am a very new user trying to get my new Jetson Nano 2g started using the video “Jetson AI Fundamentals - S1E2 - Hello Camera” setup without success. I fail after entering:

bob@bob-desktop:~$ sudo docker run – runtime nvidia –it –rm –network host – volume ~/nvdlii-data:/nvdli-nano/data –device /dev/video0/nvcr.io/nvidia/dli-nano-ai-:v2.0.0-r32.4.6 (all one line).

Errors reported:

Unable to find image ‘nvcr.io/nvidia/dli-nano-ai:v2.0.0-r32.4.6 ‘ locally
Docker: Error response from daemon: unauthorized: authentication required.
See ‘docker run –help’.

I know virtually nothing about docker. The “docker run –help “ didn’t help at all.

Can someone please tell me how to proceed?

Thank you in advance for any help you can offer! Bob Shaw.

Hi,

The container location is incorrect.
Please try nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.6.1 instead.

Thanks.

Thank you moderator for your help. First, I hope I chose the correct topic for this question.

Secondly, I have shown the actual (copied and pasted) terminal entry and response:

bob@bob-desktop:~$ cd ~/Desktop
bob@bob-desktop:~/Desktop$ echo “sudo docker run --runtime nvidia -it – rm --network host --volume ~nvdli-data:/nvdli-nano/data nvcr.io/nvidia/dli/dli-nano-ai: v2.0.1-r32.6.1” >docker_dli_run.sh
bob@bob-desktop:~/Desktop$ ./docker_dli_run.sh
bash: ./docker_dli_run.sh: Permission denied
bob@bob-desktop:~/Desktop$

I still get the error Permission denied. How do I get permission? I’m pretty sure I have entered the commands correctly.

Thanks again in advance. Bob Shaw

Hi,

Please try the following:

$ echo "sudo docker run --runtime nvidia -it --rm --network host -v ${HOME}/nvdli-data:/nvdli-nano/data nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.6.1" > docker_dli_run.sh
$ sudo chmod +x docker_dli_run.sh
$ ./docker_dli_run.sh

Thanks.

1 Like

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