tech:gnome_gnome-keyring
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédente | |||
| tech:gnome_gnome-keyring [2025/06/02 15:35] – Jean-Baptiste | tech:gnome_gnome-keyring [2026/06/07 19:12] (Version actuelle) – modification externe 127.0.0.1 | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| + | < | ||
| + | {{tag> | ||
| + | |||
| + | # Gnome gnome-keyring | ||
| + | |||
| + | Gnome-keyring | ||
| + | |||
| + | Voir : | ||
| + | * https:// | ||
| + | |||
| + | |||
| + | ## Interface GUI | ||
| + | |||
| + | ~~~bash | ||
| + | sudo apt-get install seahorse | ||
| + | seahorse | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## Reset | ||
| + | |||
| + | ~~~bash | ||
| + | rm ~/ | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## gnome-keyring-daemon sans X pour svn subversion | ||
| + | |||
| + | Source : https:// | ||
| + | |||
| + | Voir aussi : | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | `~/ | ||
| + | ~~~ini | ||
| + | [auth] | ||
| + | password-stores = gnome-keyring | ||
| + | ~~~ | ||
| + | |||
| + | `~/ | ||
| + | ~~~ini | ||
| + | [global] | ||
| + | store-passwords = yes | ||
| + | store-plaintext-passwords = no | ||
| + | ~~~ | ||
| + | |||
| + | `~/ | ||
| + | ~~~bash | ||
| + | if [ -e / | ||
| + | if [ ! -z "`kill -0 $GNOME_KEYRING_PID 2>& | ||
| + | # Create dbus transport link for SVN to talk to the keyring. | ||
| + | eval `dbus-launch --sh-syntax` | ||
| + | |||
| + | # Start the keyring daemon. | ||
| + | # The use of export here captures the GNOME_KEYRING_PID, | ||
| + | # env values echoed out at startup. | ||
| + | export `/ | ||
| + | fi | ||
| + | fi | ||
| + | ~~~ | ||
| + | |||
| + | `~/ | ||
| + | ~~~bash | ||
| + | # Kill the message bus established for SVN / Keyring communication | ||
| + | if [ ! -z "`kill -0 $DBUS_SESSION_BUS_PID 2>& | ||
| + | kill $DBUS_SESSION_BUS_PID > /dev/null 2>&1 | ||
| + | fi | ||
| + | |||
| + | # Kill the Gnome Keyring Daemon prior to logout. | ||
| + | if [ ! -z "`kill -0 $GNOME_KEYRING_PID 2>& | ||
| + | kill $GNOME_KEYRING_PID > /dev/null 2>&1 | ||
| + | fi | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ### Pb keyring_tool | ||
| + | |||
| + | Je n'ai jamais réussi à faire fonctionner cet outil | ||
| + | |||
| + | ~~~bash | ||
| + | sudo apt-get install gnome-keyring dbus-x11 | ||
| + | sudo apt-get install libgnome-keyring-dev build-essential pkg-config autoconf automake | ||
| + | |||
| + | ./ | ||
| + | ./configure --prefix=/ | ||
| + | sudo make install | ||
| + | |||
| + | / | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## Désactiver gnome-keyring | ||
| + | |||
| + | ### Permanently disable Gnome Keyring SSH Agent | ||
| + | |||
| + | Source https:// | ||
| + | |||
| + | `/ | ||
| + | ~~~ini | ||
| + | X-GNOME-Autostart-enabled=false | ||
| + | ~~~ | ||
| + | |||
| + | **Ou** | ||
| + | |||
| + | `/ | ||
| + | ~~~ini | ||
| + | NoDisplay=false | ||
| + | ~~~ | ||
| + | |||
| + | Puis décocher l' | ||
| + | |||
| + | |||
| + | ### Autre solution | ||
| + | |||
| + | Source : https:// | ||
| + | |||
| + | |||
| + | |||
| + | ~~~bash | ||
| + | #chmod -x $(type -p gnome-keyring-daemon) | ||
| + | chmod -x / | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | |||
| + | ### Pour Chromium | ||
| + | |||
| + | `/ | ||
| + | ~~~ini | ||
| + | CHROMIUM_FLAGS=" | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | |||
| + | ## Erreur No such secret collection at path | ||
| + | |||
| + | ~~~ | ||
| + | No such secret collection at path: / | ||
| + | ~~~ | ||
| + | Solution : reboot | ||
| + | |||
| + | |||
| + | |||
| + | ## Autres | ||
| + | |||
| + | Droits 700 | ||
| + | ~~~bash | ||
| + | chmod -R 700 ~/ | ||
| + | ~~~ | ||
| + | |||
| + | Flushing passphrases | ||
| + | ~~~bash | ||
| + | gnome-keyring-daemon -r -d | ||
| + | ~~~ | ||
| + | |||
