如何在后台运行 gcp 中的虚拟机?

How to run a VM in gcp in the background?

我有一个 gcp linux VM,非常基本的问题:如果我有一个像这样的简单脚本:

import time
for a in range (0,1000):
    print(a)
    time.sleep(10)

当我在浏览器连接中通过 ssh 进入控制台时,我 运行 脚本,但当我关闭 window 时它停止了。 如何在我关闭 PC 时也能做到 运行?

你可以使用nohup。

例如:

nohup python myscript.py &

然后您可以关闭会话。该脚本将 运行 保留在远程 VM 上,直到它完成。