我制作了需要在后台运行的 python 脚本。此脚本位于正在运行的 lxd 映像中(由“lxc 列表”检查)
进入图像并试图让它在后台运行。
local> lxc exec image-name -- bash
image-root> nohup python test.py &
它在这一点上起作用。
image-root> jobs
--printed test.py jobs
但是当我从图像中退出并重新进入时,所有工作都消失了。
image-root> exit (or ctrl+d)
root> lxc exec image-name -- bash
image-root> jobs
--printed nothing and script is not running in background. WHY?