I was following the instructions for installing the librealsense sdk for my Jetson Orin AGX through intel’s official github page
(librealsense/doc/installation_jetson.md at master · IntelRealSense/librealsense · GitHub)
when I realized that one of the steps calls for installing a custom camera driver
(GitHub - IntelRealSense/realsense_mipi_platform_driver: Intel® RealSense™ camera driver for GMSL* interface).
One of the steps for installing this driver requires me to pass in my nvidia-jetpack directory as an argument to a bash script. I have however been unsuccessful in locating this directory.
Running the command apt show nvidia-jetpack gives the following output:
Package: nvidia-jetpack
Version: 6.0+b106
Priority: standard
Section: metapackages
Source: nvidia-jetpack (6.0)
Maintainer: NVIDIA Corporation
Installed-Size: 199 kB
Depends: nvidia-jetpack-runtime (= 6.0+b106), nvidia-jetpack-dev (= 6.0+b106)
Homepage: http://developer.nvidia.com/jetson
Download-Size: 29.3 kB
APT-Manual-Installed: yes
APT-Sources: https://repo.download.nvidia.com/jetson/common r36.3/main arm64 Packages
Description: NVIDIA Jetpack Meta Package
Package: nvidia-jetpack
Version: 6.0+b87
Priority: standard
Section: metapackages
Source: nvidia-jetpack (6.0)
Maintainer: NVIDIA Corporation
Installed-Size: 199 kB
Depends: nvidia-jetpack-runtime (= 6.0+b87), nvidia-jetpack-dev (= 6.0+b87)
Homepage: http://developer.nvidia.com/jetson
Download-Size: 29.3 kB
APT-Sources: https://repo.download.nvidia.com/jetson/common r36.3/main arm64 Packages
Description: NVIDIA Jetpack Meta Package
This verifies that I have two instances of the package installed. However, attempting to find the directory via dpkg -L nvidia-jetpack only gives the location of the documentation files:
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/nvidia-jetpack
/usr/share/doc/nvidia-jetpack/changelog.gz
/usr/share/doc/nvidia-jetpack/copyright
I am unsure how to proceed as I was not the one who configured this Jetson Orin. Furthermore, most issues online pertain to the Orin Nano.
Any insight on how to locate this package would be appreciated.
– John