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.
我正在与其他用户一起使用服务器。有时一个进程死了,但它仍然占用 GPU,所以我需要提醒用户。我怎样才能找到那个用户?感谢您的任何建议。
该命令ps aux在其最左侧列中列出了与其最右侧列中列出的进程相关联的用户。
ps aux
如果您知道程序的名称,您可能会通过发出以下命令更快地到达那里:ps au -C <process_name>。
ps au -C <process_name>