Skip to content
Raffaello Bonghi edited this page May 1, 2019 · 18 revisions

This repository contain scripts to know the status of your NVIDIA Jetson without find the informations in your board. The main features are described in the next pages

  • jtop - A Dynamic interface where is showed the status of your NVIDIA Jetson. CPU, RAM, GPU status and frequency and other...
  • jetson-docker - the docker bridge for nvidia jetson board
  • jetson_variables - This script generate the easy environment variables to know which is your Hardware version of the Jetson and which Jetpack you have already installed
  • jetson_release - The command show the status and all information about your NVIDIA Jetson
  • jetson_performance - This service load jetson_clock.sh has a linux service

Installer

If you want use only the installer go in jetson_easy/jetson folder and run ./install_jetson_easy.sh. (Require SUDO)

nvidia@tegra-ubuntu:~$ cd ~/jetson_stats
nvidia@tegra-ubuntu:~/jetson_stats$ ./install_jetson_stats.sh

This script install in order:

  1. Copy this repository in /etc/jetson_easy
  2. Link the file jetson_release.sh in /usr/local/bin/jetson_release.sh
  3. Copy the file jetson_performance.sh in /etc/init.d/jetson_performance
  4. Link jetson_clocks.sh in /etc/jetson_easy/jetson_clocks.sh
  5. Add the service jetson_performance in update-rc.d
  6. Start the service jetson_performance

Uninstaller

To uninstall the jetson_stats run ./install_jetson_stats.sh -uninstall. (Require SUDO)

nvidia@tegra-ubuntu:~$ cd ~/jetson_stats
nvidia@tegra-ubuntu:~/jetson_stats$ ./install_jetson_stats.sh -uninstall

This script uninstall in order:

  1. If run stop the service jetson_performance
  2. Remove the service jetson_performance from update-rc.d
  3. Unlink /etc/jetson_easy/jetson_clocks.sh
  4. Remove /etc/init.d/jetson_performance
  5. Unlink /usr/local/bin/jetson_release.sh
  6. Remove the folder /etc/jetson_easy
Clone this wiki locally