Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petrockblog/owncloudpie
Shell script for installing Owncloud on the Raspberry Pi
https://github.com/petrockblog/owncloudpie
Last synced: 22 days ago
JSON representation
Shell script for installing Owncloud on the Raspberry Pi
- Host: GitHub
- URL: https://github.com/petrockblog/owncloudpie
- Owner: petrockblog
- Created: 2012-08-02T05:05:01.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-02-04T14:52:01.000Z (almost 7 years ago)
- Last Synced: 2023-11-07T15:15:34.661Z (about 1 year ago)
- Language: Shell
- Size: 42 KB
- Stars: 347
- Watchers: 35
- Forks: 63
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OwncloudPie
===========Shell script for installing and updating Owncloud on the Raspberry Pi. The script either performs a new installation of the newest Owncloud release or, if already installed, performs an upgrade to the newest release. When doing a new installation, you can choose between the Apache 2 or the NGiNX webserver.
The script downloads and installs the latest Owncloud version that can be found in the file at http://owncloud.org/releases/Changelog.
## Quick Start
If you don't want to enter multiple commands, just copy and paste the string below into your Terminal:
```shell
sudo apt-get update && sudo apt-get install -y git dialog && git clone git://github.com/petrockblog/OwncloudPie.git && cd OwncloudPie && chmod +x owncloudpie_setup.sh && chmod +x owncloudpie_setup.sh && sudo ./owncloudpie_setup.sh
```## Usage
First of all, make sure that Git is installed:
```shell
sudo apt-get update
sudo apt-get install -y git dialog
```Then you can download the latest OwncloudPie setup script with
```shell
cd
git clone git://github.com/petrockblog/OwncloudPie.git
```The script is executed with
```shell
cd OwncloudPie
chmod +x owncloudpie_setup.sh
sudo ./owncloudpie_setup.sh
```For more information visit the blog at http://petrockblog.wordpress.com or the repository at https://github.com/petrockblog/OwncloudPie.
Have fun!