You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
┌───┐
│ $ │ ziga > ziga--workstation > bin
└─┬─┘ /dev/pts/0
└─> nextcloud
nextcloud: error while loading shared libraries: libnextcloudsync.so.0: cannot open shared object file: No such file or directory
Attention:
This can be solved by installing package libnextcloudsync-dev, but then a new error will occur:
┌───┐
│ $ │ ziga > ziga--workstation > bin
└─┬─┘ /dev/pts/0
└─> nextcloud
nextcloud: error while loading shared libraries: libnextcloud_csync.so.0: cannot open shared object file: No such file or directory
This one can't be fixed, because there is no package to fix this. Probably Debian 11 does not have it. How to fix this???
The text was updated successfully, but these errors were encountered:
You installed the client to /opt/nextcloud. That means the shared libraries that the desktop client ships like libnextcloud_csync and so on will also be installed in directories below /opt/nextcloud. When you start the Nextcloud desktop client, the dynamic linker searches for the shared libraries that the desktop client needs. The search will fail because the shared libraries that the desktop client needs will be in directories that dynamic linker does not search. Installing the package libnextcloudsync-dev will be not a good idea because then you would not use the shared libraries that you compiled yourself. You would again use the libraries from your distro which you wanted to avoid.
You have the following possibilites:
Configure the dynamic linker to search in the correct directories
Installl the desktop client in a way that the shared libraries will be in a directory that is on the search list of the dynamic linker.
Tell the dynamic linker with the LD_LIBRARY_PATH environment variable where it should search for the shared libraries.
Having said that, I'm not sure compiling the desktop client yourself will solve your problems. It's the same version.
I will close the ticket because your issue is not a bug, but rather a support question. For support questions you can go to https://help.nextcloud.com
Version of Nextcloud that comes with the Debian 11 by default is buggy. Also the official
.appimage
file from here is buggy.So I the last resort for me is to build from source. I choose to take release 3.3.3 from here and we download it in
.tar.gz
compressed file:Running the Nextcloud will produce an error:
The text was updated successfully, but these errors were encountered: