在本文中,我们将着眼于如何找到一个进程名由它的进程标识号(PID)。 在我们深入到实际的解决方案之前,让我们简要地谈谈如何由Linux创建和识别进程。
每当用户或系统(Linux)启动程序时,内核将创建一个进程。 进程保存程序在存储器中的执行细节,例如其输入和输出数据,变量等。
重要的是,由于Linux是一个多任务操作系统,它可以同时执行多个程序,这意味着每个进程必须被明确标识。
内核标识使用进程ID(PID),处理的每个实例必须从被调用的方法时被分配的其他方法具有唯一的PID,以避免任何执行错误的每个过程。
在/ proc文件系统有关的信息存储在您的系统当前运行的进程 ,它包含了每个进程的目录。
使用列出它的内容,但是,列表可能很长,所以采用管线和更少的工具来查看在/ proc目录中,如下所示更方便的方法:
$ ls /proc OR $ ls /proc | less
1 168 2230 25 329 584 7386 83 driver schedstat 10 169 2234 2503 33 603 74 830 execdomains scsi 1070 17 2247 2507 34 610 7411 833 fb self 1081 1702 2256 2523 349 611 7423 836 filesystems slabinfo 109 1714 2258 253 35 612 745 839 fs softirqs 11 173 2266 2551 36 613 746 84 interrupts stat 110 1760 2273 26 362 62 75 844 iomem swaps 1188 1763 2278 2688 3642 63 7533 85 ioports sys 12 1769 2282 2694 3643 64 7589 86 irq sysrq-trigger 1204 177 2283 2695 37 6436 76 860 kallsyms sysvipc 1209 1773 2285 2698 38 65 7619 87 kcore thread-self 1254 18 2287 2699 39 66 7689 9 keys timer_list 13 1847 2295 27 3974 67 7690 94 key-users timer_stats 15 1914 23 2702 3976 68 77 977 kmsg tty 152 1917 2308 28 4273 6897 7725 981 kpagecgroup uptime 153 1918 2309 280 4374 69 7729 987 kpagecount version 154 1938 2310 2815 4392 6969 7733 997 kpageflags version_signature 155 1956 2311 2817 44 6980 78 acpi loadavg vmallocinfo 156 1981 2315 282 45 7 79 asound locks vmstat 1565 1986 2316 283 4543 70 790 buddyinfo mdstat zoneinfo 1567 1988 2317 29 46 71 8 bus meminfo 157 2 2324 2935 461 7102 80 cgroups misc 1579 20 2347 2944 4686 72 808 cmdline modules 158 2010 2354 3 47 73 81 consoles mounts 1584 2043 2436 30 4700 7304 810 cpuinfo mtrr 159 2044 2437 3016 5 7311 815 crypto net 1590 21 2442 31 515 7322 82 devices pagetypeinfo 16 2167 2443 318 5273 7347 820 diskstats partitions 160 22 2492 32 5274 7367 823 dma sched_debug
从上面的截图,编号的目录信息存储文件有关的执行的处理,其中,每个数字对应于一个PID。
下面是与PID 1 systemd过程中的文件列表:
$ ls /proc/1
ls: cannot read symbolic link '/proc/1/cwd': Permission denied ls: cannot read symbolic link '/proc/1/root': Permission denied ls: cannot read symbolic link '/proc/1/exe': Permission denied attr coredump_filter gid_map mountinfo oom_score schedstat status autogroup cpuset io mounts oom_score_adj sessionid syscall auxv cwd limits mountstats pagemap setgroups task cgroup environ loginuid net personality smaps timers clear_refs exe map_files ns projid_map stack uid_map cmdline fd maps numa_maps root stat wchan comm fdinfo mem oom_adj sched statm
可以监控过程和它们的PID使用传统的Linux命令如PS , 顶部和相对较新的目光命令加上许多如在下面的实施例:
$ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.0 185728 6268 ? Ss 10:15 0:01 /sbin/init splash root 2 0.0 0.0 0 0 ? S 10:15 0:00 [kthreadd] root 3 0.0 0.0 0 0 ? S 10:15 0:00 [ksoftirqd/0] root 5 0.0 0.0 0 0 ? S< 10:15 0:00 [kworker/0:0H] root 7 0.0 0.0 0 0 ? S 10:15 0:09 [rcu_sched] root 8 0.0 0.0 0 0 ? S 10:15 0:00 [rcu_bh] root 9 0.0 0.0 0 0 ? S 10:15 0:00 [migration/0] root 10 0.0 0.0 0 0 ? S 10:15 0:00 [watchdog/0] root 11 0.0 0.0 0 0 ? S 10:15 0:00 [watchdog/1] root 12 0.0 0.0 0 0 ? S 10:15 0:00 [migration/1] root 13 0.0 0.0 0 0 ? S 10:15 0:00 [ksoftirqd/1] root 15 0.0 0.0 0 0 ? S< 10:15 0:00 [kworker/1:0H] root 16 0.0 0.0 0 0 ? S 10:15 0:00 [watchdog/2] root 17 0.0 0.0 0 0 ? S 10:15 0:00 [migration/2] root 18 0.0 0.0 0 0 ? S 10:15 0:00 [ksoftirqd/2] root 20 0.0 0.0 0 0 ? S< 10:15 0:00 [kworker/2:0H] root 21 0.0 0.0 0 0 ? S 10:15 0:00 [watchdog/3] root 22 0.0 0.0 0 0 ? S 10:15 0:00 [migration/3] root 23 0.0 0.0 0 0 ? S 10:15 0:00 [ksoftirqd/3] root 25 0.0 0.0 0 0 ? S< 10:15 0:00 [kworker/3:0H] root 26 0.0 0.0 0 0 ? S 10:15 0:00 [kdevtmpfs] root 27 0.0 0.0 0 0 ? S< 10:15 0:00 [netns] root 28 0.0 0.0 0 0 ? S< 10:15 0:00 [perf] ....
使用传统的监控Linux进程top命令 。
$ top
使用top命令监视Linux进程
使用几眼 ,用于Linux的新的实时过程监控工具来监视Linux进程。
$ glances
Glances - 实时Linux进程监控
了解更多关于如何在Linux系统上安装目光 。
找出过程PID编号
要找出一个进程的PID,你可以使用pidof
,一个简单的命令打印出来的PID一个过程:
$ pidof firefox $ pidof python $ pidof cinnamon
查找Linux进程PID
反观我们对焦点,假设你已经知道进程的PID,你可以使用下面的命令格式打印它的名字:
$ ps -p PID -o format
哪里:
-
-p
指定PID -
-o
格式使用户定义的格式
使用PID编号查找进程名称
在本节中,我们将看到如何使用它的PID号与用户定义的格式,即帮助找出一个进程的名字comm=
这意味着命令名称,相同进程名。
$ ps -p 2523 -o comm= $ ps -p 2295 -o comm=
查找Linux进程名称
有关更多使用信息和选项,看看通过ps手册页。
$ man ps
如果你想使用它的PID号杀死一个过程,我建议你阅读找到并杀死Linux进程使用它的PID 。
这就是它的那一刻,如果你知道任何其他更好的方法,找出使用PID进程名称,通过以下我们的注释部分做与我们分享。