Why is Chess.app "required by OS X"?
I don't use it, and I can't delete it. Is it really required by the operating system?
Why is Chess.app "required by OS X"?
I don't use it, and I can't delete it. Is it really required by the operating system?
It is a crucial component in OS X's anti-boredom technology.
Non-troll answer: Yes, you can delete it.
run this command in Terminal:
sudo rm -rf /Applications/Chess.app
enter your password and push return
rm -rf /Volumes/Macintosh\ HD/Applications/Chess.app
and then type reboot
and press enter to restart the Mac back to normal mode boot. Obviously if your normal Startup Disk is not Macintosh HD, then substitute the correct name in the command line.
– user3439894
Jan 17 '19 at 21:56
No, it is not required as such, but Chess is, like any other preinstalled application, protected from deletion. There are ways around it, but it's probably not worth the hassle for a meager 5 MB in disk space.
Later Mac OS versions have SIP enabled, which prevents you from simply sudo
ing your troubles away. What you have to do now is:
Cmd-R
, which should eventually boot you into recovery mode.Utilities
> Terminal
.csrutil disable
to disable SIP.cd /Applications/ && sudo rm -rf Chess.app/
csrutil enable
.csrutil authenticated-root disabled
must also be run, and the root volume must be mounted to a temporary mount point with sudo mount -o nobrowse -t apfs [path to disk] [mount path]
, then the volume must be blessed after editing it with sudo bless --folder [mount path]/System/Library/CoreServices --bootefi --create-snapshot
(taken from here