Monthly Archives: April 2021

Kill a bash script running in the background

kill ps -aux | grep sqs2.sh | grep -v grep | awk ‘{ print $2 }’ && killall inotifywait Line above, after kill is `, wrapping till }`

Posted in Uncategorized | Leave a comment

Raspberry Pi / NetworkManager – No DNS resolution issue

edit following line in /etc/nsswitch.conf: hosts: files mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns->hosts: files dns mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] …

Posted in Uncategorized | Leave a comment