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.
我想知道是否有一种方法可以进行 qlogin,我可以让多个终端窗口登录到同一个节点,即我可以在一个终端窗口中运行 TOP 来监控我也在观察进度的作业其他终端?
我想一个更直接的询问方式是,我是否可以将多个终端登录到一个 qlogin 作业中,就像我可以让多个终端向头节点打开一样,或者这只是仅限于头节点的东西。
我正在研究 SGE centos 系统。
您可以$nohup <process> &在同一窗口中使用。它会将您的进程置于后台,同时允许您在同一终端窗口中运行 TOP 或其他任务。您可以谷歌 nohup 了解更多详情。
$nohup <process> &