当前位置: 首页>>技术教程>>正文


使用快捷方式时终端出现延迟很长时间

,

问题描述

当我按下 Ctrl + Alt + T 时,终端会在大约 30 秒后打开。这很烦人。如果我用 Alt + F2 打开它并输入 gnome-terminal 窗口会像往常一样立即出现。

我在 gnome3 上使用 Ubuntu 16.04。

提前谢谢你的帮助!

最佳方法

评论 16 https://bugzilla.gnome.org/show_bug.cgi?id=729101#c16 中讨论的临时解决方法

在没有命令行选项的终端中运行 gnome-keyring-daemon。然后输入密码解锁钥匙圈后一切正常。

在我的系统上,我必须在密码提示出现之前打开 HUD。如果我在终端命令之前打开 HUD,密码提示对话框会立即显示。

journalctl -f 的输出显示 gnome-keyring-daemon[12913]: Gkm: using old keyring directory: ...

现在解决了:对于我和许多其他人来说,解决这个问题的方法是删除 dbus-user-session,它是与最近安装的不需要的软件一起添加的。对我来说,它是在我安装 flatpak 时添加的

解决方案:

  1. sudo apt-get remove --purge dbus-user-session

  2. 重启

从该线程中的评论 #67 开始,可以使用更多上下文。 https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/1689825

次佳方法

基于超级用户的 this answer

From the bug filed by xgdgsc, this slow response to GNOME shortcuts appears to be caused by gnome-keyring-daemon. In particular, having multiple instances of the daemon appears to cause shortcut execution to pause while attempting to communicate with the daemon until it times out. You can use the following command to check if you have multiple instances of the daemon running:

pgrep gnome-keyring --list-full 

On CentOS 7 with GNOME 3.14.2, I was able to work around this by killing both processes:

killall gnome-keyring-daemon 

gnome-keyring-daemon automatically restarted with only one instance when I next used a GNOME keyboard shortcut, and the shortcut executed instantaneously.

第三种方法

打开启动应用程序并添加新的

  1. 添新

  2. 名称:随便

  3. 命令:killall gnome-keyring-daemon

  4. 评语:随便

请享用..

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12095.html,未经允许,请勿转载。