Un servicio de destino es un nombre de servicio, además de un dominio de destino, que describe el contexto en el que se ejecuta el servicio, por ejemplo, si se ejecuta al inicio del sistema o cuando un usuario inicia sesión en etc.
El launchctl(1) manual describe 6 formas de constitución de un servicio de destino a partir de un nombre de servicio. Si desea deshabilitar un servicio que se ejecuta en el arranque, usted probablemente querrá una de estas tres dependiendo de si es un servicio que se ejecuta al inicio del sistema o cuando se registro en:
system/[service-name]
Targets the system domain or a service within the system domain. The system
domain manages the root Mach bootstrap and is considered a privileged execu-
tion context. Anyone may read or query the system domain, but root privi-
leges are required to make modifications.
user/<uid>/[service-name]
Targets the user domain for the given UID or a service within that domain. A
user domain may exist independently of a logged-in user. User domains do not
exist on iOS.
gui/<uid>/[service-name]
Another form of the login specifier. Rather than specifying a user-login
domain by its ASID, this specifier targets the domain based on which user it
is associated with and is generally more convenient.
Usted puede encontrar el número uid para su cuenta de usuario como este:
$ id -u [your-username]
502