Files
webmin/proc/help/intro.zh.auto.html
2020-04-23 18:10:56 +03:00

1 line
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<header> Unix进程</header>进程只是系统上正在运行的程序。您的Web浏览器窗口管理器终端窗口和X服务器都是您直接与其交互的进程。许多其他进程在后台运行例如Web服务器和其他系统任务。每次键入<tt>ls</tt><tt>pwd之</tt>类的命令时,都会创建一个新进程,尽管此类进程通常是短暂的。 <p>每个进程都有一个唯一的ID称为进程ID或PID。尽管任何时候运行的每个进程都有不同的ID但随着时间的流逝PID可能会被重复使用。 <p>除了初始进程(通常称为<tt>init</tt> 之外每个进程都有一个父进程从中创建该进程。例如如果从shell提示符运行<tt>vi</tt> ,则<tt>vi</tt>的父进程将是您的shell。一个进程可以有任意数量的子级但只能有一个父级。 <p>每个进程都以某些用户和组的权限运行,这些权限在访问文件和目录时适用。用户和进程只能杀死他们拥有的其他进程,但<tt>root</tt>可以杀死任何东西。 <p><hr>