우분투에서 ps -ef | grep python
으로 실행중인 프로세스를 찾으면 아래와 같이 뜬다.
user@user-System-Product-Name:~/user$ ps -ef | grep python
user 5821 1 1 May16 ? 06:26:54 python -u hello.py
이때 실행중인 파일의 경로를 pid
로 찾기 위해서는 다음과 같은 방법들이 있다.
1) pwdx
pwdx <PID>
로 찾으면 다음과 같이 뜬다.
user@user-System-Product-Name:~/user$ pwdx 5821
5821: /home/user
2) lsof
lsof -p <PID> | grep cwd
로 찾으면 다음과 같이 뜬다.
user@user-System-Product-Name:~/user$ lsof -p 5821 | grep cwd
python 5821 user cwd DIR 259,2 4096 13803845 /home/user
[출처]
728x90
'개발' 카테고리의 다른 글
TensorRT와 Triton (1) | 2023.06.25 |
---|---|
[linux] port를 점유하고 있는 pid 찾기 (0) | 2023.06.02 |
[Docker] Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 해결 (0) | 2023.05.22 |
[sar] ubuntu로 시스템 stat 찍기 (0) | 2023.03.21 |
[git] add, commit, pull, merge 취소하기 (0) | 2022.07.29 |