Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要 ssh 到一台机器并启动一个运行几个小时的测试的 bash 脚本,这些测试在整个执行过程中不需要人工交互。
有什么方法可以让我的运行脚本与我的 shell 分离,以便我可以关闭终端并随意关闭我的本地计算机?
当然,使用nohup:
nohup
nohup ./program &
或者,在内部启动程序screen或tmux然后分离。
screen
tmux