NFS Exports on MacOS

If you have tried to export a filesystem from your Mac to be used on another host, you might have had problems getting it to connect. The problem turns out to be simple, though the errors are… obtuse. For me, when I set up a share in /etc/exports, and tried to mount it from a … Read more

Quick Way to Verify a MacOS Application Integrity

If you ever have an app that seems to be having problems launching, you can quickly check the integrity with the spctl command: spctl –assess -vv /Applications/<Application>.app As an example, if I wanted to check the integrity of Handbrake (a kick-ass video encoder), the command would be: spctl –assess -vv /Applications/HandBrake.app The output you should … Read more

Fixing Quicklook Without Rebooting

Unfortunately, since the last OS update for the Mac (Monterey), QuickLook has become especially unstable, especially on my M1 Mac Mini. It doesn’t cause crashes or anything, it simply stops working; especially with video files. However there is a simple solution to the problem. From the Terminal, just run the command (you do not need … Read more

To Uninstall MacOS Packages

For some bizarre reason, the package management tools for MacOS do not have an option to uninstall in any easy way. However, if you drop into the Terminal, you can do all the steps by hand relatively easily. There is a command called pkgutil that will give you the information you need. To list all … Read more