Linux command for finding PID assigned to a CPU
If core number is 7
ps -e -o pid,nice,class,rtprio,psr,pcpu,comm --sort psr | awk '$5 == "7" {print; }'
Read More »Linux command for finding PID assigned to a CPUIf core number is 7
ps -e -o pid,nice,class,rtprio,psr,pcpu,comm --sort psr | awk '$5 == "7" {print; }'
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
I found it quite frustrating to get started with D-Bus and the lack of working examples. I found this bit of example somewhere, can’t remember… Read More »D-Bus Python service example
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
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
I’m running LinuxMint 19.3 and with default setup, sdkmanager won’t work and flashing will fail. Download sdkmanager form NVidia’s website and install it Make a… Read More »Flash Xavier on Linux Mint
Today I needed to upgrade GCC to a newer version than what comes from aptitude. I’m on LinuxMint 18.3 First make sure to remove gcc… Read More »Compile and install GCC on Linux