프로세스가 다시 나타나면 가장 먼저 시작됩니다. launchd
. 용도 launchctl launchd에로드 된 작업을 나열하는 방법 :
sudo launchctl list
launchctl list
에 대한 작업 정의 발사 된 .plist 파일은 다음 위치에 저장됩니다.
~/Library/LaunchAgents Per-user agents provided by the user.
/Library/LaunchAgents Per-user agents provided by the administrator.
/Library/LaunchDaemons System-wide daemons provided by the administrator.
/System/Library/LaunchAgents Per-user agents provided by Mac OS X.
/System/Library/LaunchDaemons System-wide daemons provided by Mac OS X.
너는 또한 grep
실행 파일에 대한 실제 경로에 대한 위의 파일.
모든 프로세스에 대해 다음의 출력을 확인할 수 있습니다. ps -ef | grep <process_name>
상위 프로세스 확인 PPID
.
UID PID PPID C STIME TTY TIME CMD
501 17151 7357 0 9:35AM ttys000 0:00.00 grep grep
이 예에서 grep
프로세스가 프로세스에서 생성되었습니다. 7357
. 나중에 확인할 수 있습니다. ps -ef | grep 7357
그것이 무엇인지 알기 위해 bash
시작한 프로세스 grep
.