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.
我还想杀死没有在我的内核上运行的进程,因为我的系统越来越慢。请协助。使用 Ubuntu
您可以通过以下方式获取正在运行的进程总数
$ ps aux | wc -l
至于杀死进程,你需要小心。但是,使用toporps并提供所需的选项(请参阅man页面),您可以列出由特定用户运行/属于特定组的进程。
top
ps
man
如果您的系统很慢,请关注顶级内存/cpu 消费者并使用
$ top
查看哪些进程最慢。
然后,您可以键入 k(用于终止),然后键入您要终止的进程。如果软杀不起作用,则使用 15 进行软杀,使用 9 进行硬杀。
您可以键入 q 退出。