-
Recent Posts
Recent Comments
Archives
- December 2021
- July 2021
- June 2021
- April 2021
- March 2021
- February 2021
- December 2020
- November 2020
- October 2020
- June 2020
- August 2019
- July 2018
- February 2018
- December 2017
- July 2017
- March 2017
- February 2017
- January 2017
- November 2016
- October 2016
- September 2016
- May 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- April 2015
- December 2014
- November 2014
- October 2014
Categories
Meta
Category Archives: Uncategorized
R3 certificate expired error (seen on older mac connecting to Debian 10 server)
/etc/ca-certificates.conf->Set 2 certs for removal by adding “!” in front of their lines:!mozilla/DST_Root_CA_X3.crt!mozilla/ISRG_Root_X1.crt (This can be done with GUI: dpkg-reconfigure ca-certificates) Then run certificates update:update-ca-certificates
Posted in Uncategorized
Leave a comment
Grant all privileges including granting option, to a mysql user
Posted in Uncategorized
Leave a comment
Quickly add GPG public key for Debian repository
For example to add the gpg key for the Jitsy repository: wget -qO – https://download.jitsi.org/jitsi-key.gpg.key | apt-key add –
Posted in Uncategorized
Leave a comment
Unban IP banned with Fail2ban
For example, unban the IP xxx.xxx.xxx.xxx that has been banned from sshd:fail2ban-client set sshd unbanip xxx.xxx.xxx.xxx You can list the banned IP (basically firewall rules) with:iptables -L-> Look for the chain names, for example “Chain f2b-sshd” is holding list of … Continue reading
Posted in Uncategorized
Leave a comment
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
Cryptpad – CSP error for “Sheets”
This is coming from security settings in nginx (to modify at own risk…) Have
Posted in Uncategorized
Leave a comment
Thunderbird wraping lines
Thunderbird adds linebreaks by default at 72 characters per line. These are not visible from Thunderbird, but someone looking at your emails from gmail mobile, will see the linebreaks. It looks messy and makes it painful to read. To remove … Continue reading
Posted in Uncategorized
Leave a comment
Linux terminal / Prevent screen flashing when using tab
edit /etc/screenrc :
Posted in Uncategorized
Leave a comment