I manage them using SSH over VPN. To learn more about my way with the Pi and VPN, check my post about it;
http://www.raspberrypi.org/phpBB3/viewt ... 31#p201431
I have this network of Raspberries and want to build a cloud of raspberries. You follow?
After some research it became clear to me I should give OwnCloud a try. I will also try SparkleShare (http://sparkleshare.org/) in the future.
Pre-installationNote: OwnCloud is a webservice running on a webserver, the webserver by default uses /var/www as the directory for data storage, you probably want this potentialy large directory on your external drive. Take this: http://forum.owncloud.org/viewtopic.php?f=3&t=20#p53
Always make a backup if you care about the current configuration of your Pi and brush your teeth before you go to bed.
This tutorial is based on the Raspberry Pi version B (thanks for the extra memory!) loaded with "2012-09-18-wheezy-raspbian".
Main source of information: http://www.instructables.com/id/Raspber ... pbox-clone
Apache2 can be replaced by Nginx. May help regarding performance.
First we install Apache2 & PHP5
Manual: http://www.instructables.com/id/Raspber ... hp-Apache/
Then we install OwnCloud
# Downloading: (check for the lastest version here: http://owncloud.org/changelog/)
Code: Select all
wget http://mirrors.owncloud.org/releases/owncloud-4.5.1.tar.bz2Code: Select all
sudo tar -xjf owncloud-4.5.1.tar.bz2Code: Select all
sudo cp -r owncloud /var/wwwCode: Select all
sudo chown -R www-data:www-data /var/www/owncloud/Surf to https://IPADDRESS/owncloud where you fill in the IP address of the Pi
Follow the directions on screen and your done.
If you get a security warning saying "Your data directory and your files are probably accessible from the internet.", change Apache2 security setting in /etc/apache2/sites-available/default
Here is how: http://forum.owncloud.org/viewtopic.php ... 3042#p6394
Please feel free to comment!Notes:
Great interface. Clean & light.
There is an App store for OwnCloud, awesome plug-ins like Torrent client or Webmail. (Settings > Apps)
The maximum file size of 2GB makes me cry.
There is an App for iOS, it's works fine but no auto-upload (of all your crazy holiday pics. ).
I had some minor trouble with getting SSL to work, didn't fill in commonName field of the certificate.
You can sync your phone with it, contacts, calendar and more.
It should be easy to burn down your Pi using OwnCloud on a group of clients on the same time.
I did not test transfer speed or stability.
Here your can find the latest documentation: https://github.com/owncloud/documentation.
Should add Apache2 to boot sequence in order to be always-on.