OwnCloud has official desktop client. So, we can use that client to connect to our private OwnCloud server or another Owncloud services. For example, I use Owncloud client to connect and synchronize my files to OwnDrive Service (an OwnCloud storage service). I will show you how to install it on Ubuntu.
OwnCloud Desktop Client |
Ubuntu 12.04
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list" sudo apt-get update sudo apt-get install owncloud-client
Explanation - These three commands will write a new repository URL file into sources.list.d/ directory, then download all repository indexes including the new one, then install owncloud-client package.
Ubuntu 14.04
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list" sudo apt-get update sudo apt-get install owncloud-client
Ubuntu 15.04
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_15.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list" sudo apt-get update sudo apt-get install owncloud-client
Use OwnCloud Desktop
- Run it from menu.
- Enter the URL for your OwnCloud service. For example, my URL will be http://my.owndrive.com.
- Login with your account.
- Set anything you need with the synchronization behavior.
- Manage your files. Copy a file into the synchronized folder or else.
- You will have an OwnCloud indicator icon on system tray.
Connecting Desktop to Cloud |
Reference
- https://owncloud.com/products/desktop-clients
- https://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client