“Baste a quem baste o que lhe basta
O bastante de lhe bastar!
A vida é breve, a alma é vasta;
Ter é tardar.”
Fernando Pessoa
“Baste a quem baste o que lhe basta
O bastante de lhe bastar!
A vida é breve, a alma é vasta;
Ter é tardar.”
Fernando Pessoa
Audiobooks and podcasts are a great option to listen during flights, commuting, or doing sport activities. LibriVox – Acoustical liberation of books in the public domain, is a great platform to listen (and volunteer to record) audiobooks in Public Domain. I started with their Plato’s Phaedo read by Bob Neufeld and it was great.
sudo find /proc -maxdepth 2 -name maps -exec grep -HE ‘\(deleted\)’ {} \; | cut -d/ -f3 | sort -u | xargs –no-run-if-empty ps
Looking for libssl in specific:
sudo find /proc -maxdepth 2 -name maps -exec grep -HE ‘/libssl\.so.* \(deleted\)’ {} \; | cut -d/ -f3 | sort -u | xargs –no-run-if-empty ps
Killing all process using a deleted version of libssl:
sudo find /proc -maxdepth 2 -name maps -exec grep -HE ‘/libssl\.so.* \(deleted\)’ {} \;| cut -d/ -f3 | sort -u | xargs –no-run-if-empty sudo kill