Grand Canyon National Park
Pictures taken at the Grand Canyon National Park in AZ. Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.
Finding stories in everyday adventures
Pictures taken at the Grand Canyon National Park in AZ. Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.
Pictures taken at the Visitor Center in Kingman, AZ, on our way to Grand Canyon. Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.
I was finally able to upgrade the firmware on my old but trusty D-Link DIR-868L router to Tomato firmware. The process is a little bit involved and it’s very easy to brick your router. Fortunately, this router provides a relatively easy way to perform recovery. Note this instruction is for …
If you have ever tried programmatically sending HTML emails, you probably know how giant of a pain in the rear it is. It’s all because while HTML has progressed in the world of Internet, the Email HTML is still way way behind. There are no set standards and most of …
This is most likely after effect of Spectre and Meltdown Kernel patches rolled out for CentOS. My OpenVPN container could not access /dev/net/tun device even though the Run Script had necessary parameters. Fix setsebool -P domain_kernel_load_modules=1
I recently started using Snapraid and Mergerfs setup to manage my disk pool. I have ~27TB of raw storage which I am managing. While setting up Mergerfs as usual ran into SELinux issues that will prohibit Docker and Samba access to the storage. So, here’s my fix. Samba setsebool -P …
Read moreSELinux fix for Mergerfs to allow Docker and Samba access
SMTP Relay service allows you to use an external SMTP server to send your mails through. After many frustrating hours of working with several SMTP Relay Docker Images, I finally found the one that works. Link: https://hub.docker.com/r/tecnativa/postfix-relay/ Configuration is very easy; Sample Run script docker run \ –name name\ -d …
If you want to set external email address to be used as “To” address for System users then edit the file “/etc/mail.rc” Add entries such as alias root [email protected]
Been containerizing a lot of my tools and just added phpMyAdmin to that list. It’s very easy to get going with it esp. if you also happen to have a Docker container running MySQL albeit with one minor issue. Official docker hub page: https://hub.docker.com/r/phpmyadmin/phpmyadmin/ Use an example Docker Run script …
Found this awesome container that has Transmission with VPN support which I can use with Windscribe VPN. Docker Hub Link – https://hub.docker.com/r/haugene/transmission-openvpn/ Run command: docker run \ –name somename\ –restart=always \ –cap-add=NET_ADMIN \ –device=/dev/net/tun \ -d \ -v localdir:/data:z \ -v /etc/localtime:/etc/localtime:ro \ –log-driver json-file \ –log-opt max-size=10m \ -p …