Last active
December 23, 2015 21:39
-
-
Save acook/6698231 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# starting daemon | |
$ gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg | |
gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used | |
** Message: couldn't access conrol socket: /home/xybre/.cache/keyring-My42JI/control: No such file or directory | |
$ git fetch | |
WARNING: gnome-keyring:: couldn't connect to: /home/xybre/.cache/keyring-My42JI/pkcs11: No such file or directory | |
$ touch /home/xybre/.cache/keyring-My42JI/control | |
touch: cannot touch `/home/xybre/.cache/keyring-My42JI/control': No such file or directory | |
$ mkdir -p | |
$ touch /home/xybre/.cache/keyring-My42JI/control | |
# killing the daemon | |
$ diealot $(pgrep gnome-keyring-daemon) | |
# restarting daemon | |
$ /usr/bin/gnome-keyring-daemon --start --components=pkcs11 | |
gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used | |
** Message: The control socket is not a valid simple non-linked socket | |
GNOME_KEYRING_CONTROL=/home/xybre/.cache/keyring-7PLwnT | |
GNOME_KEYRING_PID=2200 | |
# still can't use git | |
$ git fetch | |
WARNING: gnome-keyring:: couldn't connect to: /home/xybre/.cache/keyring-My42JI/pkcs11: No such file or directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment