Sponsored Link
With ownCloud you can share one or more files and folders on your computer, and synchronize them with your ownCloud server. Place files in your local shared directories, and those files are immediately synchronized to the server and to other devices using the ownCloud Desktop Client. Not near a device running a desktop client? No problem! Simply log in using the ownCloud web client and manage your files from there. The ownCloud Android and iOS mobile applications enable you to browse, download, and upload photos and videos. On Android, you can also create, download, edit, and upload any other files, as long as the correct software is installed.
Whether you are using a mobile device, a workstation, or a web client, ownCloud provides the ability to put the right files in the right hands at the right time on any device with one simple-to-use, secure, private and controlled solution. After all, with ownCloud, it’s Your Cloud, Your Data, Your Way.
Preparing your system
You need to make sure you have install ubuntu 14.10 LAMP server
Install Owncloud on Ubuntu 14.10 (Utopic Unicorn)
Open the terminal and run the following commands
Add the ownCloud repository as apt source
sudo sh -c "echo ‘deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/xUbuntu_14.10/ /' >> /etc/apt/sources.list.d/owncloud.list"
Download and install the repository key
$ wget http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_14.10/Release.key
sudo apt-key add -- < Release.key
Update the source list
sudo apt-get update
Install owncloud
sudo apt-get install owncloud
Now you need to Enable the Apache rewrite module using the following command
sudo a2enmod rewrite
Restart apache server
sudo service apache2 restart
You can now access ownCloud by entering http://your.ip.address/owncloud in a web browser. The default username/password is: admin/admin.
Screenshots