-
Create Multiarch Docker Buildx Builder
Create a multiarch Docker Buildx builder Run the following commands: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes docker buildx rm builder docker buildx create --name builder --driver docker-container --use docker buildx inspect --bootstrap Inspect the builder by using the command: docker buildx ls Remove builder: docker buildx rm builder...
-
Fixing Let's Encrypt Auto Renewal On Asus Merlin Router
Reference: https://www.snbforums.com/threads/letsencrypt-cert-stopped-updating.62715/ Connect to your router via ssh, delete your /jffs/.le folder and execute service restart_letsencrypt command. Allow a minute for the task to complete. Looks like the same problem described in this thread: Lets Encrypt not updating, or? (https://www.snbforums.com/threads/lets-encrypt-not-updating-or.59524/)
-
Centos Rhel 7 How To Make Custom Script To Run Automatically During Boot As A Systemd Service
CentOS / RHEL 7 : How to create custom script to run automatically during boot as a systemd service Reference: https://www.thegeekdiary.com/centos-rhel-7-how-to-make-custom-script-to-run-automatically-during-boot/ In RHEL 5 and 6, we were using automatic startup feature of RHEL through /etc/rc.d/init.d to run any script at system boot. Starting with RHEL 7 init is replaced...