Hostname Pings Don’t Work Post Eero – How to make ’em work

Just got Eero to replace Google Onhub Routers. Quickly found out that Eero lacks a DNS server which means I cannot access any of my home servers using their hostnames. Also, all my home servers were not showing any hostnames in Eero App which was very weird. Ping from my macOS computer wasn’t registering Why do I need hostname access? …

Read moreHostname Pings Don’t Work Post Eero – How to make ’em work

Trick 3: Bulk Download 4K Wallpapers (Updated)

Way way back in 2015, I wrote this post about auto downloading huge amount of 4k wallpapers. That trick worked very well. Now this trick is essentially an enhanced version of that trick. Previously, with downloading, the file names were pretty insignificant, representing only the ID of the file on the site. In addition to this, everything was downloaded in …

Read moreTrick 3: Bulk Download 4K Wallpapers (Updated)

Fixing Net View on Windows 10

I had a really frustrating time fixing errors related to Windows “net view” command as well as seeing  other computers running SMB service in the “Windows Network” explorer. Issue Network explorer will not show any Computers “net view” command would result in “System Error 1231” Solution Ensure all the computers are set to the same WORKGROUP. In my case, it …

Read moreFixing Net View on Windows 10

Configuring WordPress HTTPS using Cloudflare

So I just found out today that Cloudflare provides free HTTPS/SSL support. I’ve been using Cloudflare free account for many years and it works flawlessly. In fact this WordPress powered blog and my several other sites use Cloudflare services. With the addition of HTTPS/SSL, I can have added security.

SELinux fix for Mergerfs to allow Docker and Samba access

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 samba_share_fusefs=1 Docker setsebool -P virt_sandbox_use_fusefs=1

Docker Container for SMTP Relay

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 \ –restart=always \ -p localport:25 \ -e “MAIL_RELAY_HOST=smtpserver” \ -e …

Read moreDocker Container for SMTP Relay