Ubuntu 服务器中的两个或多个活动进程

Two or more active processes in Ubuntu Server

我有 Ubuntu 服务器 18.04 LTS。

我想运行两个进程,但同时有一个"clean"命令行。

例如,

进程 1:ping google.com

进程 2:ping facebook.com

我尝试 运行在后台使用 &:

进程 1:ping google.com &

进程 2:ping facebook.com &

但是在命令行中显示执行命令的结果:

如何运行两个进程离开命令行"clean"?

我会推荐 "screen" 程序。

您可以使用 screen -S [name] 创建新屏幕。 简单地说,它只是打开一个新的 bash,您可以在其中 运行 您的命令。 如果您想退出屏幕,只需按 Ctrl + A + D

如果要恢复画面,只需运行screen -r [screen-name]

优点是您可以关闭终端,屏幕将在后台持续 运行ning。

有关详细信息,请查看此 link:https://www.digitalocean.com/community/tutorials/how-to-install-and-use-screen-on-an-ubuntu-cloud-server