1

I searched ownCloud on Ubuntu Software Center on Ubuntu 12.04 and only got Empty package, owncloud.

I also checked it on the offcial installation guide, here. The lowest supported version is 14.04.

I downloaded Packages for Ubuntu 14.04: owncloud-client_2.2.2-18.1_amd64.deb, but failed to install it for,

enter image description here

How do I install ownCloud client on Ubuntu 12.04?


The output of cat /etc/apt/sources.list.d/*,

$ cat /etc/apt/sources.list.d/*
deb http://desktop-download.mendeley.com/download/apt stable main
deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_12.04/ /
SparkAndShine
  • 205
  • 2
  • 11

2 Answers2

0

From 2.2.0 onwards the ownCloud client was not supposed to be build for 12.04 (source), but the last available build for 12.04 is 2.2.1. It is not available on the official download page anymore, but has a separate repository which you can still use to install it.

The installation instructions are on the linked pages, enjoy!

Gerhard Burger
  • 9,359
  • 5
  • 41
  • 59
-1

With the updated question, I see now the error about dependencies.

You can try to manually install the missing dependency by doing the following:

sudo apt-get update
sudo apt-get install libowncloudsync0

When installing libowncloudsync0 you may get errors from other dependencies missing.

Try sudo apt-get install libqtkeychain0 libqt5keychain0

And then libowncloudsync0 again, and finally, the client you were trying to install in the first place.

Sometimes when you get an error like this of unmet dependencies, you can fix them all by simply running sudo apt-get install -f after the failed install.

amc
  • 7,022
  • 7
  • 39
  • 51
Delorean
  • 10,783
  • 1
  • 20
  • 42