gpt4 book ai didi

shell - 在后台运行 matlab

转载 作者:太空宇宙 更新时间:2023-11-03 19:25:46 24 4
gpt4 key购买 nike

我在 48 台虚拟机上运行 matlab,并希望将其自动化。我通过 ssh 进入机器,然后使用 matlab -r matlab_command > outfile.txt & 让进程在后台运行,并在我注销时运行良好。唯一的问题是,当我 jobs 时,我的进程停止并且不会启动,直到我 fg ^z bg。是否有 matlab 标志,以便我可以在后台运行它而不会停止?

谢谢,迈克

为了澄清,这是不起作用的命令的顺序

ssh 服务器

matlab -r matlab_command > outfile.txt &

工作

[1] 已停止

为了解决这个问题我

fg

^z

bg

注销

现在可以了

最佳答案

使用nohup UNIX 上的命令以防止 MATLAB 在您注销时停止。

nohup matlab -nodisplay -nosplash -r matlab_command > outfile.txt &

并且不要忘记在 matlab_command 脚本的末尾包含 exit;

更新:

试试这个解决方案:Is it possible to run MATLAB in the background under UNIX?

有解释here .

关于shell - 在后台运行 matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3000724/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com