I am new to working with Linux, and this Jetson Orin Nano DTK so forgive me if these questions are dumb as I am trying to learn as I go here.
The end goal is to setup a OpenALPR Agent software on this so I can hook up an Axis LPR camera and read license plates. Unfortunately I am running into quite a few issues trying to get this squared away.
I have flashed Jetpack 5.1.2-b104 onto this which is running well however when I attempted to use the Jetson method on the link above, the package was incredibly outdated and the CPU arch was not correct therefore I opted for their agent:4.1.7-arm64
build which I am able to make some headway on however when I run the Docker container commands, I receive the following error after running the following command which is #4 on their Docker instructions.
sudo docker run -P -v openalpr-vol1-config:/etc/openalpr/ -v openalpr-vol1-images:/var/lib/openalpr/ -it openalpr/agent:4.1.7-arm64 alprlink-register
Registration successful.
ConfigWriter::writeConfig = /etc/openalpr
Data accepted for processingSend heartbeat succeeded
Restarting services...
unix:///var/run/supervisor.sock no such file
Error restarting openalpr-daemon
I then found this method on the Nvidia forums however when I run the following commands, I am told that it Could not determine Jetpack version
. After looking at what is ran on the link itself it raised some concerns…
elif cat /etc/nv_tegra_release | head -n 1 | grep "R35.*REVISION:\s*[3].*"; then
# We are running JetPack 5.1.x
OS_NAME="Nvidia Jetson JetPack 5.1"
DEB_REPO_PATH="deb https://deb.openalpr.com/${REPO_PREFIX}jetson51${REPO_POSTFIX} jetson51 main"
EXTRA_PACKAGES="libopencv"
Now when I run cat /etc/nv_tegra_release
I get the following output.
R35 (release), REVISION: 4.1, GCID: 33958178, BOARD: t186ref, EABI: aarch64, DATE: Tue Aug 1 19:57:35 UTC 2023
Now if I run sudo apt-cache show nvidia-jetpack
I get the following output.
Package: nvidia-jetpack
Version: 5.1.2-b104
Architecture: arm64
I suppose my next question is… is this correct and if so why does the nv_targe_release
differ from the actual Jetpack version?