We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我知道这是一篇旧帖子,但我想指出您可以在不禁用 SIP 的情况下禁用这些服务(或任何其他服务)。您只需要使用较新的launchctl语法。对于spindumpand和 tailspind,它将是这四个命令:
SIP
launchctl
spindumpand
tailspind
sudo launchctl bootout system/com.apple.spindump sudo launchctl disable system/com.apple.spindump sudo launchctl bootout system/com.apple.tailspind sudo launchctl disable system/com.apple.tailspind
bootout线路卸载服务,线路disable不再launchd加载它们。
bootout
disable
launchd
如果你想扭转它,你会这样做:
sudo launchctl enable system/com.apple.spindump sudo launchctl bootstrap system /System/Library/LaunchDaemons/com.apple.spindump.plist sudo launchctl enable system/com.apple.tailspind sudo launchctl bootstrap system /System/Library/LaunchDaemons/com.apple.tailspind.plist
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我知道这是一篇旧帖子,但我想指出您可以在不禁用
SIP
的情况下禁用这些服务(或任何其他服务)。您只需要使用较新的launchctl
语法。对于spindumpand
和tailspind
,它将是这四个命令:bootout
线路卸载服务,线路disable
不再launchd
加载它们。如果你想扭转它,你会这样做:
The text was updated successfully, but these errors were encountered: