Linux进程
Posted 一个有点理想的码农
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux进程相关的知识,希望对你有一定的参考价值。
后台运行程序- &
[[email protected] Desktop]$ firefox & [1] 8231 [[email protected] Desktop]$
对于已经运行的程序,可以ctrl+z先暂停,然后执行bg切换到后台运行,如果要切换至前台运行可以使用fg命令。
[[email protected] Desktop]$ [[email protected] Desktop]$ [[email protected] Desktop]$ firefox ^Z [1]+ Stopped firefox [[email protected] Desktop]$ bg [1]+ firefox & [[email protected] Desktop]$ fg firefox
以上是关于Linux进程的主要内容,如果未能解决你的问题,请参考以下文章
在 Python 多处理进程中运行较慢的 OpenCV 代码片段