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 安全外壳的新手,我在我的 PC Windows 基础上在 linux 服务器上运行代码。以前当我使用“ctrl+A+D”时,我可以与服务器分离,无论服务器中的什么都可以继续计算。现在,当我输入“ctrl+A+D”时,我得到“^A”并且也无法分离。有什么问题?
nohup即使在 shell 退出后,您也可以使用命令来允许进程运行。
nohup
SIGHUP是当进程的控制终端关闭时发送给进程的信号。nohup运行对挂断免疫的命令,其用法如下。
SIGHUP
nohup <command> &
重定向也很重要stdin,stdout并且stderr对于该过程。
stdin
stdout
stderr