¿Cómo detener la tarea asignada en Sierra?

0

Cuando acabo de sudo pkill it:

sudo pkill taskgated

En syslog:

Apr 17 12:08:46 genesis com.apple.xpc.launchd[1] (com.apple.taskgated[88619]) <Notice>: Service exited due to signal: Terminated: 15 sent by pkill[90814]

Sin embargo, se reinicia automáticamente:

ps aux | grep taskgated
root             90981   0.0  0.0  2462316   1668   ??  Ss   12:08PM   0:00.01 /usr/libexec/taskgated -s

También tenga en cuenta que usar launchctl tampoco es la forma de hacerlo:

sudo launchctl unload /System/Library/LaunchDaemons/com.apple.taskgated*.plist
/System/Library/LaunchDaemons/com.apple.taskgated-helper.plist: Operation not permitted while System Integrity Protection is engaged
/System/Library/LaunchDaemons/com.apple.taskgated.plist: Operation not permitted while System Integrity Protection is engaged
    
pregunta Paweł Gościcki 17.04.2017 - 12:10

2 respuestas

1

Launchd es mantener vivo el proceso. Necesitas ejecutar

$ sudo launchctl unload /System/Library/LaunchDaemons/com.apple.taskgated*.plist

para descargar el daemon. Para volver a cargarlo, ejecuta:

$ sudo launchctl load /System/Library/LaunchDaemons/com.apple.taskgated*.plist
    
respondido por el Python Kid 17.04.2017 - 12:55
0

Este proceso no puede eliminarse a la fuerza porque el otro proceso lo vuelve a abrir automáticamente. Intenta matarlo sin fuerza.

    
respondido por el DeveloperTK 17.04.2017 - 12:30

Lea otras preguntas en las etiquetas