Copy entire linux root filesystem
May 27th, 2025Using rsync: rsync -avP --numeric-ids --exclude='/dev' --exclude='/proc' --exclude='/sys' root@targethost:/ /path/to/destination/
Using tar: tar cf - files... | ssh remotehost -c 'cd /destination && tar xvf -'
or: ssh remotehost -c 'cd /destination && tar cf - files' | tar xvf -
VSCodium - Open Source VS Code
May 27th, 2025VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VS Code.
Self Signed Certificates, Certificate Authorities, Intermediate Certificates
October 7th, 2024This post contains links to various posts about Self Signed Certificates, Certificate Authorities, Intermediate Certificates, etc.
How do you add a certificate authority (CA) to Ubuntu?
How do I manually install the Securly SSL certificate in Chrome?
Installing Certificate Authority on Android 11+
How to install trusted CA certificate on Android device?
Using own CA for certificates within OPNSense . How?
Create Your Own SSL Certificate Authority for Local HTTPS Development
