5

I have installed the nextcloud-client package from slackbuilds.org, with qtkeychain, libgnome-keyring and gnome-keyring.

I run the daemon in my .xinitrc like explained on the ArchWiki:

eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK

And it is still not working (No keychain service available). Any advice?

dblouis
  • 411

2 Answers2

7

In Ubuntu 18.04 LTS it can be solved by installing libgnome-keyring0. Single gnome-keyring package is not enough for nextcloud.

kay
  • 171
1

I made it work by installing LXDM.

I think the ArchWiki is wrong because gnome-keyring-daemon --start does not actually start the daemon according to the man page:

-s, --start
       Connect to an already running daemon and initialize it. This is often used to
       complete initialization of a daemon that was started by PAM using the --login
       argument.

I guess LXDM is starting the daemon correctly now because it works.

dblouis
  • 411