为什么关闭终端后 google chrome 也会关闭?

为什么关闭终端后 google chrome 也会关闭?

我必须在后台运行终端时使用 Google Chrome。事实上,如果我按下 ctrl+c,Google Chrome 也会关闭。为什么会发生这种情况?关闭终端后,我有什么办法可以恢复 Google Chrome 吗?如果我尝试关闭它,Google Chrome 也会关闭。

答案1

您可以使用此命令:

<your_app> & disown

在这种情况下:

google-chrome & disown

解释:

在 bash shell 中,disown 内置命令用于从作业表中删除作业,或者标记作业,以便当父 shell 收到 SIGHUP 信号时(例如,如果用户注销),不会向它们发送 SIGHUP 信号。

来源

相关内容