系统相关
首页 > 系统相关> > Linux:Process(进程)相关命令——ps、nice、kill、bg&fg

Linux:Process(进程)相关命令——ps、nice、kill、bg&fg

作者:互联网

文章目录


Process简单认识

口说话地说:
就好比, 写了一份活动策划书(程序代码),
然后 ,让相关人员(比如操作系统) 按照策划书,有条不紊地举行活动(进程)


换专业一点点的说:
程序,是人类用编程语言编写的,可实现一定功能,并且可执行的代码集合。
而进程是正在执行中的程序。
当程序被执行时,执行人的权限和属性,以及程序的代码都会被加载入内存,
同时, 操作系统给这个进程分配一个 ID,称为 PID(processID)。


于是,

A process is created
every time you run an external command
and is removed after the command finishes its execution
看到的懂吗

标签:ps,bg,优先级,Process,kill,进程,CPU,nice
来源: https://blog.csdn.net/m0_46156900/article/details/117899753