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
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 CPURemmina 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
I’ve had a computer in a network running a CI. Everything works locally but then as soon as I connect form VPN, I cannot access… Read More »Fix docker blocking VPN access