Both software update in the Preferences Pane and the manual software update are hanging.
What could be the problem?
OSX 10.15.7
Both software update in the Preferences Pane and the manual software update are hanging.
What could be the problem?
OSX 10.15.7
Try this:
sudo /bin/launchctl kickstart -k system/com.apple.softwareupdated && softwareupdate -l
..and enter your admin password when prompted.
You might also need to remove the contents of /Library/Updates/.
launchctl is a macOS built-in binary to manage LaunchAgents and LaunchDaemons; the first half of the command is telling the OS to restart the LaunchDaemon which initiates a software update check. By running it under sudo the process is elevated and can interact with system-level processes. The softwareupdate (after the &&) is simply the command-line interface to Software Update. (Both commands have extensive man entries.)
– da4
Aug 03 '22 at 14:18