要查看Linux中进程的路径,可以使用以下命令:
ps -ef
pidof <进程名称> ls -l /proc/<PID>/exe
pgrep <进程名称> ls -l /proc/$(pgrep <进程名称>)/exe
通过以上方法,可以查看Linux中进程的路径信息。