英文:
How do you kill the thunar process?
问题
如果我想杀死所有该文件管理器的实例,我会执行以下命令:
killall thunar
这会给我返回:
thunar: 未找到进程
但是这个文件管理器肯定正在运行!
[![活动的thunar窗口截图][1]][1]
---
同样地,`ps aux | grep thunar`也找不到任何东西,返回:
cadoiz 27791 0.0 0.0 9588 2656 pts/0 S+ 11:33 0:00 grep --color=auto thunar
英文:
If I'd like to kill all instances of that file manager, I'd do
killall thunar
which gives me
thunar: no process found
But this FM is definitely running!
Similarly ps aux | grep thunar
doesn't find anything and yields:
cadoiz 27791 0.0 0.0 9588 2656 pts/0 S+ 11:33 0:00 grep --color=auto thunar
答案1
得分: 1
killall
似乎区分大小写,而某种原因,Thunar
大写的 T
是有效的:
killall Thunar
你可以参考这个 Debian 论坛讨论这个话题。
英文:
killall
seems to be case sensitive and for some reason, Thunar
with capital T
works:
killall Thunar
You can consider this debian forum discussing the topic.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论