LinuxMint 19.3 – Dell Precision 7560
Challenge of the day: install LinuxMint 19.3 on a Dell Precision 7560. Why LinuxMint 19.3? Because NVidia will most likely never release JetPack packages for… Read More »LinuxMint 19.3 – Dell Precision 7560
Challenge of the day: install LinuxMint 19.3 on a Dell Precision 7560. Why LinuxMint 19.3? Because NVidia will most likely never release JetPack packages for… Read More »LinuxMint 19.3 – Dell Precision 7560
Recently some utilities stopped working on LinuxMint 18 since the default python interpreter for LinuxMint is 3.5, cannot be changed, and support for Python 3.5 was dropped in the utilities.
Thanks deadsnakes team, you saved me some compilation time =)
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.8 python3.8-distutils python3.8-venv
Code language: Bash (bash)
The new interpreter can be found in /usr/bin/python3.8 and all I had to do was change the shebang from #!/usr/bin/python3 to #!/usr/bin/python3.8 in the utilities.
Read More »Install Python 3.8 on LinuxMint 18With older version of NVidia’s SDK manager you could fool it by making the OS look like Ubuntu by modifying the /etc/lsb-release file. See Flash… Read More »NVidia SDK manager on LinuxMint
Consider the following simple program If you only link libasan and set the compiler flags, cudaGetDeviceCount will fail with error cudaErrorMemoryAllocation(2) and the CUDA runtime… Read More »Using libasan with CUDA
If core number is 7
ps -e -o pid,nice,class,rtprio,psr,pcpu,comm --sort psr | awk '$5 == "7" {print; }'
Code language: Bash (bash)
Read More »Linux command for finding PID assigned to a CPUHere is a script to sync a forked (not mirrored) git repository. In my case I have new private branches I cannot push upstream, but… Read More »Sync forked git repository
Let say I have a secret and a public key I want deploy in /home/root, respectively: secret.gpg public.pub It is not enough to just copy… Read More »Adding gpg keys to a yocto image
Remmina is a good RDP client for Linux If you get this error when trying to connect add a profile for the new connection, by… Read More »RDP on Linux
Assuming you have flashed your Jetson module (TX, Xavier, Nano, etc) and you want to set it into recovery mode to flash another image. Just… Read More »Restart NVidia Jetson board into recovery mode
This article covering how to change the NVidia Jetson modules partition layout using yocto + meta-tegra layer, and is basically a summary of this issue.… Read More »Partitioning NVIdia Jetson module