The script seems to assume Raspbian, so it would make sense to use the Linux packages instead of the generic zip files:
http://owncloud.org/install/#instructions-packages
The commands for that are
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/Debian_7.0/ /' >> /etc/apt/sources.list.d/owncloud.list
apt-get update
apt-get install owncloud
And for adding the key
wget http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_7.0/Release.key
apt-key add - < Release.key
What do you think @petrockblog?
The script seems to assume Raspbian, so it would make sense to use the Linux packages instead of the generic zip files:
http://owncloud.org/install/#instructions-packages
The commands for that are
And for adding the key
What do you think @petrockblog?