I've got something that works!
So here is what I did that appears to keep the pesky BigSur notification away:
sudo softwareupdate --ignore "macOS Big Sur"
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0;killall Dock
defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier
(I also typed the following to refresh the list but not sure if it is necessary)
softwareupdate --list
System preferences should no longer indicate that an update exists
This strategy survived a reboot too! In the future if it does not, you can create an executable file (see below) and add into your login items.
Here is how I created a file with the above commands and made it an executable:
Open terminal
Type:
vi xBigSur and press return
(alternatively, you can use TextEdit or something else)
Press the "i" key (insert)
Paste the following lines into the file:
Press esc
Type shift and : keys simultaneously (change to command mode)
Type wq
Press return
type: chmod +x xBigSur
Press return
type: ./xBigSur
Press enter
enter your login password
Add xBigSur to your login items.
So here is what I did that appears to keep the pesky BigSur notification away:
sudo softwareupdate --ignore "macOS Big Sur"
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0;killall Dock
defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier
(I also typed the following to refresh the list but not sure if it is necessary)
softwareupdate --list
System preferences should no longer indicate that an update exists
This strategy survived a reboot too! In the future if it does not, you can create an executable file (see below) and add into your login items.
Here is how I created a file with the above commands and made it an executable:
Open terminal
Type:
vi xBigSur and press return
(alternatively, you can use TextEdit or something else)
Press the "i" key (insert)
Paste the following lines into the file:
Press esc
Type shift and : keys simultaneously (change to command mode)
Type wq
Press return
type: chmod +x xBigSur
Press return
type: ./xBigSur
Press enter
enter your login password
Add xBigSur to your login items.
Last edited: