활동 모니터에서 프로세스의 명령을 표시하는 방법?


2

대부분의 리눅스 프로세스 모니터가 할 수있는 것처럼 활동 모니터에서 일부 프로세스의 정확한 명령을보고 싶습니다. 액티비티 모니터로 가능합니까?

답변:


2

원하는 프로세스를 선택하고 기어 버튼 또는보기 메뉴를 클릭 한 다음 샘플 프로세스 . 샘플 윈도우의 다섯 번째 줄에는 실행 파일의 경로가 표시됩니다.


그 과정의 논증은 어떻습니까?
Royi Namir

0

Activity Monitor에서 그러한 기능을 찾을 수는 없지만 다음과 같은 bash 명령을 사용하여 동일한 결과를 얻을 수 있습니다.

ps -eo pid,ppid,%mem,%cpu,args -r | head

샘플 출력 :

  PID  PPID %MEM  %CPU ARGS
  215     1  0.1  50.4 /usr/libexec/sysmond
81699 81694  2.4  27.8 node /Users/pongli/my/git/shroogal-dev2/node_modules/.bin/tsc -w
81662 81657  0.9  19.0 node /Users/pongli/my/git/V2ServiceApp/node_modules/.bin/tsc -w
81702 81700  0.3   6.9 gulp   
27827 27796  5.2   6.6 /Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper.app/Contents/MacOS
76036 72939  0.0   5.3 /Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper.app/Contents/MacOS
  217     1  0.9   3.3 /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon
83975  1641  1.3   2.8 /Applications/Google Chrome.app/Contents/Versions/63.0.3239.84/Google Chrome Helper.app
36742  1641  8.1   2.2 /Applications/Google Chrome.app/Contents/Versions/63.0.3239.84/Google Chrome Helper.app
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.