6. Jtop Tool Installation and Use

Installation of Jtop

(1) Installing JTOP to check CPU usage

Check the installed system components

(1)Jetson's OS image already comes with JetPack, cuda, cudnn, opencv, etc. It has been installed and has examples. The installation path for these examples is as follows

(2) Check CUDA Version 11.4 of CUDA has already been installed in Jetson orin nx, but at this time, if you run nvcc - V, it will not succeed. You need to write the path of CUDA to the environment variable. The Vim tool comes with the OS, so run the following command to edit the environment variables

Firstly, check if there is nvcc in the bin directory of cuda:

IF EXISTS,

Note: In vim, use Esc to return to command mode, and switch to the input module through I to enter text in input mode

image-2023040600007

Note: After exiting the command mode through Esc, press: to start inputting commands, wq to save and exit, q to exit, q! For forced exit

Save to exit.

Then it needs to take effect under the source.

After the source, execute nvcc - V again at this time, and the result is as follows

beckhans@Jetson:~$ nvcc -V

image-2023040600008

 (3)check OpenCV

Jetson already has OpenCV4.5.4 installed, you can use the command to check if OpenCV is installed properly

pkg-config opencv4 --modversion

If OpenCv is installed properly, the version number will be displayed, and my version is 4.5.4

image-2023040600009

(4)check cuDNN

CuDNN has been installed in Jetson nano and there are examples available for operation. Let's run the examples to verify the CUDA above