Bootcamp Is Dead. Long Live Mac Intel!

One of the things I appreciate about my Macs is their longevity. It's 2025, and, while showing signs of its age, my Macbook Pro 2012 is still useful. In fact, I only recently replaced it with a used 2018 Mac Mini, out of which I hope to get several more years while I figure out how to solve the problem with running Windows applications on ARM-based/M-Series/Apple Silicon machines.

MacOS Password Reset

I was recently re-purposing an old Macbook Pro (2012) which was originally purchased through a school district. I installed a new SSD and booted from an external boot disk, then downloaded and installed Mac OSX 10.14 Mojave on the new drive. After restarting, I went through the setup and a window popped-up stating that the machine could be remotely managed by the school district. I had completely forgotten where it came from (this is 2025), so this was a bit of a surprise.

MacOS Update Breaks Apache... Again

Many things irritate me, so take this post with a grain of salt, but I hate the fact every significant MacOS update breaks my development environment. The latest was a security update to Catalina, MacOS 10.15.7. I have learned to test things out (Apache/PHP/MySQL) immediately after these updates, and I discovered (again), that Apache was broken. Now, admittedly, this is because I am using a different version of Apache from the one distributed by Apple, and installed using MacPorts. So I guess this is just something I have to live with.

SQLite to MySQL

I've been a licensed amateur radio operator since 2015, and Mac user since 1997. The combination of these two meant that when I was looking for a logging application for my ham radio contacts, my options were limited, which is fine since MacLoggerDX is such a great application.

MacOS Terminal DMG/PKG Installation

I recently found myself remotely installing/upgrading MySQL on a remote MacOS machine without GUI access. It's an old but solid PowerMac G5 running 10.5 Leopard. I couldn't remember how to do this, but a quick search provided the following solution.

The first step was mounting the disk image (dmg):

$ sudo hdiutil attach

The volume will be mounted at /Volumes/<dmg>

Next, install the pkg file:

$ sudo installer -pkg /Volumes/<dmg>/<pkg> -target /

Lastly, cleanup:

Subscribe to Mac OS X