Difference between revisions of "ownCloud/client"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
m (→‎Issues: de-encoded char (don't remember how it got encoded))
(→‎Issues: note about updating version number)
Line 5: Line 5:
 
==Issues==
 
==Issues==
 
As of 2015-08-31, the latest server is incompatible with the desktop client packaged in Ubuntu 15.04. To fix the problem, upgrade to the latest client. Instructions are [https://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client here], but they do things in the wrong order; here's my recommended method:
 
As of 2015-08-31, the latest server is incompatible with the desktop client packaged in Ubuntu 15.04. To fix the problem, upgrade to the latest client. Instructions are [https://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client here], but they do things in the wrong order; here's my recommended method:
<bash>
+
<bash>sudo -s
sudo -s
 
 
wget http://download.opensuse.org/repositories/isv:ownCloud:desktop/xUbuntu_15.04/Release.key
 
wget http://download.opensuse.org/repositories/isv:ownCloud:desktop/xUbuntu_15.04/Release.key
 
apt-key add - < Release.key
 
apt-key add - < Release.key
 
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_15.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list
 
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_15.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list
 
apt-get update
 
apt-get update
apt-get install owncloud-client
+
apt-get install owncloud-client</bash>
</bash>
+
Note that the "15.04" should be set to whatever version of *buntu you are running. I have verified that 15.10 works.
  
 
==Diagnosis==
 
==Diagnosis==

Revision as of 21:06, 14 February 2016

Linux

In Linux, the client stores its configuration in $HOME/.local/share/data/ownCloud/owncloud.cfg[1].

It also seems to store copies of most or all synced files in the same folder, $HOME/.local/share/data/ownCloud/, which seems rather wasteful of disk space as well as completely unnecessary. (To be investigated in more detail later...)

Issues

As of 2015-08-31, the latest server is incompatible with the desktop client packaged in Ubuntu 15.04. To fix the problem, upgrade to the latest client. Instructions are here, but they do things in the wrong order; here's my recommended method: <bash>sudo -s wget http://download.opensuse.org/repositories/isv:ownCloud:desktop/xUbuntu_15.04/Release.key apt-key add - < Release.key echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_15.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list apt-get update apt-get install owncloud-client</bash> Note that the "15.04" should be set to whatever version of *buntu you are running. I have verified that 15.10 works.

Diagnosis

  • You can use wget to simulate WebDAV requests:
    • wget https://<hostname>/owncloud/remote.php/webdav/ --no-check-certificate --user=<username> --password=<password> --method=PROPFIND

Outlinks

  • Discussion:
    • 2015-08-06 Woozle: trying to figure out why client incorrectly reports bad credentials (Solved: turned out to be a bug in the client, fixed in latest download.)

Footnotes