如何在 Gnome 中禁用 GUI 密码提示

如何在 Gnome 中禁用 GUI 密码提示

我从 Xubuntu 迁移到 Debian 并将 id_rsa 和 id_rsa.pub 复制到 ./ssh/

我使用受密码保护的证书登录远程服务器。我的密码包含箭头。像“Mike”这样的东西,然后我按向左箭头两次,然后按“Smith”。

使用 Xubuntu,密码提示来自终端,但在 Gnome 中,密码提示来自弹出窗口。

在 Debian/Gnome 中,我尝试使用箭头和密钥代码(“Mike^[[D^[[DSmith”),但无法解锁证书。

当我直接登录到计算机的命令行(使用恢复模式)时,我可以毫无问题地登录到远程服务器。

当密码包含箭头时:如何解锁 Gnome 的证书?

$ ssh -v [email protected]
OpenSSH_6.0p1 Debian-4+deb7u2, OpenSSL 1.0.1e 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to example.com [1.2.3.4] 
debug1: Connection established.
debug1: identity file /home/mike/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/mike/.ssh/id_rsa-cert type -1
debug1: identity file /home/mike/.ssh/id_dsa type -1
debug1: identity file /home/mike/.ssh/id_dsa-cert type -1
debug1: identity file /home/mike/.ssh/id_ecdsa type -1
debug1: identity file /home/mike/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 Debian-5ubuntu1.4
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1.4 pat OpenSSH_5*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-4+deb7u2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA (removed)
debug1: Host '[example.com]' is known and matches the ECDSA host key.
debug1: Found key in /home/mike/.ssh/known_hosts:1
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/mike/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
Agent admitted failure to sign using the key.
debug1: Trying private key: /home/mike/.ssh/id_dsa
debug1: Trying private key: /home/mike/.ssh/id_ecdsa
debug1: Next authentication method: password


~/.ssh$ ls -all
total 20
drwx------  2 mike mike 4096 Dec 28 10:18 .
drwxr-xr-x 27 mike mike 4096 Dec 28 10:18 ..
-rw-------  1 mike mike 1766 Aug  9  2012 id_rsa
-rw-r--r--  1 mike mike  391 Aug  9  2012 id_rsa.pub
-rw-r--r--  1 mike mike  444 Dec 28 10:18 known_hosts

答案1

该问题与密码短语中的箭头无关。它是 Gnome SSH 密钥代理。我从启动应用程序中禁用了它,现在我可以再次使用我的证书。

相关内容