답변:
이 방법으로 exe를 쉽게 찾을 수 있습니다. 직접 시도하십시오.
ll /proc/<PID>/exe
pwdx <PID>
lsof -p <PID> | grep cwd
pwdx <PID>
로그를 찾아서 적절한 방법으로 프로세스를 중지 할 수 있도록 심볼릭 링크의 위치를 알려주었습니다.
ll
일반적으로 별칭입니다 : alias ll='ls -alF'
.
조금 늦었지만 모든 답변은 Linux에만 해당됩니다.
유닉스도 필요하다면 다음이 필요합니다.
char * getExecPath (char * path,size_t dest_len, char * argv0)
{
char * baseName = NULL;
char * systemPath = NULL;
char * candidateDir = NULL;
/* the easiest case: we are in linux */
size_t buff_len;
if (buff_len = readlink ("/proc/self/exe", path, dest_len - 1) != -1)
{
path [buff_len] = '\0';
dirname (path);
strcat (path, "/");
return path;
}
/* Ups... not in linux, no guarantee */
/* check if we have something like execve("foobar", NULL, NULL) */
if (argv0 == NULL)
{
/* we surrender and give current path instead */
if (getcwd (path, dest_len) == NULL) return NULL;
strcat (path, "/");
return path;
}
/* argv[0] */
/* if dest_len < PATH_MAX may cause buffer overflow */
if ((realpath (argv0, path)) && (!access (path, F_OK)))
{
dirname (path);
strcat (path, "/");
return path;
}
/* Current path */
baseName = basename (argv0);
if (getcwd (path, dest_len - strlen (baseName) - 1) == NULL)
return NULL;
strcat (path, "/");
strcat (path, baseName);
if (access (path, F_OK) == 0)
{
dirname (path);
strcat (path, "/");
return path;
}
/* Try the PATH. */
systemPath = getenv ("PATH");
if (systemPath != NULL)
{
dest_len--;
systemPath = strdup (systemPath);
for (candidateDir = strtok (systemPath, ":"); candidateDir != NULL; candidateDir = strtok (NULL, ":"))
{
strncpy (path, candidateDir, dest_len);
strncat (path, "/", dest_len);
strncat (path, baseName, dest_len);
if (access(path, F_OK) == 0)
{
free (systemPath);
dirname (path);
strcat (path, "/");
return path;
}
}
free(systemPath);
dest_len++;
}
/* again someone has use execve: we dont knowe the executable name; we surrender and give instead current path */
if (getcwd (path, dest_len - 1) == NULL) return NULL;
strcat (path, "/");
return path;
}
편집 : Mark lakata가보고 한 버그를 수정했습니다.
"/proc/self/exe"
와 함께sprintf(foo,"/proc/%d/exe",pid)
Linux에서 모든 프로세스에는에 자체 폴더가 /proc
있습니다. 따라서 getpid()
실행중인 프로세스의 pid를 얻은 다음 경로와 결합 할 수 있습니다/proc
하여 원하는 폴더를 얻을 수 있습니다.
다음은 Python의 간단한 예입니다.
import os
print os.path.join('/proc', str(os.getpid()))
다음은 ANSI C의 예입니다.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
int
main(int argc, char **argv)
{
pid_t pid = getpid();
fprintf(stdout, "Path to current process: '/proc/%d/'\n", (int)pid);
return EXIT_SUCCESS;
}
다음과 같이 컴파일하십시오.
gcc -Wall -Werror -g -ansi -pedantic process_path.c -oprocess_path
"어디서나 작동하도록 보장 된"방법은 없습니다.
1 단계는 프로그램이 전체 경로로 시작된 경우 argv [0]을 확인하는 것입니다 (일반적으로 전체 경로가 있음). 상대 경로로 시작된 경우에도 동일하게 유지됩니다 (그러나 getcwd ()를 사용하여 현재 작업 디렉토리를 가져와야 함).
2 단계는 위의 내용 중 아무것도 없으면 프로그램 이름을 얻은 다음 argv [0]에서 프로그램 이름을 얻은 다음 환경에서 사용자의 PATH를 가져 와서 해당 경로가 적합한 지 확인하는 것입니다. 같은 이름의 실행 바이너리.
argv [0]은 프로그램을 실행하는 프로세스에 의해 설정되므로 100 % 신뢰할 수 없습니다.
고마워 :
AIX와 Kiwy
:
getPathByPid()
{
if [[ -e /proc/$1/object/a.out ]]; then
inode=`ls -i /proc/$1/object/a.out 2>/dev/null | awk '{print $1}'`
if [[ $? -eq 0 ]]; then
strnode=${inode}"$"
strNum=`ls -li /proc/$1/object/ 2>/dev/null | grep $strnode | awk '{print $NF}' | grep "[0-9]\{1,\}\.[0-9]\{1,\}\."`
if [[ $? -eq 0 ]]; then
# jfs2.10.6.5869
n1=`echo $strNum|awk -F"." '{print $2}'`
n2=`echo $strNum|awk -F"." '{print $3}'`
# brw-rw---- 1 root system 10, 6 Aug 23 2013 hd9var
strexp="^b.*"$n1,"[[:space:]]\{1,\}"$n2"[[:space:]]\{1,\}.*$" # "^b.*10, \{1,\}5 \{1,\}.*$"
strdf=`ls -l /dev/ | grep $strexp | awk '{print $NF}'`
if [[ $? -eq 0 ]]; then
strMpath=`df | grep $strdf | awk '{print $NF}'`
if [[ $? -eq 0 ]]; then
find $strMpath -inum $inode 2>/dev/null
if [[ $? -eq 0 ]]; then
return 0
fi
fi
fi
fi
fi
fi
return 1
}
다음을 사용하여 GNU / Linux에서 경로를 얻을 수도 있습니다.
char file[32];
char buf[64];
pid_t pid = getpid();
sprintf(file, "/proc/%i/cmdline", pid);
FILE *f = fopen(file, "r");
fgets(buf, 64, f);
fclose(f);
작업 디렉토리를 프로세스 디렉토리로 변경하기 위해 실행 파일의 디렉토리를 원한다면 (미디어 / 데이터 / 등의 경우) 마지막 / 다음에 모든 것을 삭제해야합니다.
*strrchr(buf, '/') = '\0';
/*chdir(buf);*/
아래 명령은 실행중인 프로세스 목록에서 프로세스 이름을 검색하고 pid를 pwdx 명령으로 리디렉션하여 프로세스 위치를 찾습니다.
ps -ef | grep "abc" |grep -v grep| awk '{print $2}' | xargs pwdx
"abc"를 특정 패턴으로 바꾸십시오.
또는 .bashrc에서 함수로 구성 할 수 있다면 자주 사용해야하는 경우 편리하게 사용할 수 있습니다.
ps1() { ps -ef | grep "$1" |grep -v grep| awk '{print $2}' | xargs pwdx; }
예를 들어 :
[admin@myserver:/home2/Avro/AvroGen]$ ps1 nifi
18404: /home2/Avro/NIFI
이것이 언젠가 누군가를 돕기를 바랍니다 .....
프로세스 이름에 대한 경로 찾기
#!/bin/bash
# @author Lukas Gottschall
PID=`ps aux | grep precessname | grep -v grep | awk '{ print $2 }'`
PATH=`ls -ald --color=never /proc/$PID/exe | awk '{ print $10 }'`
echo $PATH
pgrep
). 다음 줄에서 실행중인 바이너리의 경로를 얻습니다 ( /proc/$PID/exe
실행 파일에 대한 심볼릭 링크입니다). 마지막으로 심볼릭 링크를 에코합니다.
sudo
출력이 비어 있으면 다른 시스템 사용자가 일부 프로세스를 작성합니다.