In a terminal, you can use the find command to make a list of all the songs stored in the iTunes Music directory on your MBA, then use it again to make a list of the songs on your backup device. Comparing the two lists using the diff command should give you an idea of what's missing:
The above assumes you have only mp3 and m4a music files, and you'll need to adjust the directory names for the cd commands to suit your situation.Code:cd ~/Music/iTunes/iTunes\ Media/Music find . -type f \( -name '*.mp3' -o -name '*.m4a' \) -print | sort -o ~/LIST1.txt cd /Volumes/MyExternalDevice/Music # or wherever your music backup lives find . -type f \( -name '*.mp3' -o -name '*.m4a' \) -print | sort -o ~/LIST2.txt cd diff LIST1.txt LIST2.txt
As for the unexplained shutdowns, you might try launching the Console app to look for an error message when iTunes crashes. If the problem is associated with plugging/unplugging an iPod or IOS device, you can try to kill the process associated with Finder's device detection machinery before you start iTunes to see if that fixes things:Code:pkill -SIGTERM AMPDeviceDiscoveryAgent
Thank you grumpus, the app actually crashes when I click "accept" when changing preferences, I haven't even tried connecting my iPod yet since the update. Again, everything was working smoothly on Catalina, and Monterey, which was giving me problems, worked after a fresh install. However, I've tried a fresh install on Ventura, and keep having problems.