强制退出后,“killall Finder”会出现。说“没有匹配的进程...”但PID仍然存在?
这是给你的。强制退出 Finder 并重新启动失败后,终端中会返回“killall Finder”:
"No matching processes belonging to you were found"
奇怪的是,Finder 的 PID 实际上会在“ps -A”之后显示,以显示所有进程。但在重复列出 PID 后,时间始终被列为 0:00:00。
我尝试了以下方法来手动启动它:
open /System/Library/CoreServices/Finder.app
但它呕吐了:
LSOpenFromURLSpec() failed with error -600 for the file /System/Library/CoreServices/Finder.app.
关于 Finder 重新启动的任何其他想法,不涉及重新启动? (我通常会同时打开 6 个空间,每个空间都有一些应用程序,重新加载它们非常痛苦。)
Here's one for ya. Upon a forced quit of the Finder with unsuccessful relaunch, "killall Finder" in terminal returns:
"No matching processes belonging to you were found"
Oddly enough, the PID for finder does actually show up after a "ps -A" to reveal all processes. But the time is perpetually listed as 0:00:00, upon repeated PID listings.
I tried the following to manually launch it:
open /System/Library/CoreServices/Finder.app
But it puked:
LSOpenFromURLSpec() failed with error -600 for the file /System/Library/CoreServices/Finder.app.
Any other ideas on a Finder relaunch that don't involve rebooting? (I usually have 6 spaces open at once, each with a handful of apps and it's a pain reloading them all.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试重新启动 Xcode 后我也遇到了类似的问题。我也遇到了同样的
失败,错误为-600
。我在 300 毫秒内插入睡眠(睡眠 0.3)后,问题就消失了。
我创建了一个 bash 脚本,它执行以下操作:
I have had similar problem after trying to relaunch Xcode. I got the same
failed with error -600
.The problem dissappeared after I inserted sleep in 300 mseconds (sleep 0.3).
I created a bash script which did the following: