Advertisement
henrydenhengst

Owncloud on Ubuntu 1404

Nov 28th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. #!/bin/bash
  2. #title           :install-owncloud-on-ubuntu1404.sh
  3. #description     :This script will install owncloud on ubuntu 14.04
  4. #author          :Henry den Hengst
  5. #date            :28 November 2014
  6. #version         :0.1    
  7. #usage           :bash install-owncloud-on-ubuntu1404.sh
  8. #URL             :-
  9. #user_password   :-
  10. #notes           :-
  11. #bash_version    :-
  12. #credits_source  :http://goo.gl/BRTllB
  13. #
  14. sudo apt-get update && sudo apt-get upgrade -y
  15. wget http://download.opensuse.org/repositories/isv:ownCloud:desktop/xUbuntu_14.04/Release.key
  16. sudo apt-key add - < Release.key  
  17. sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list"
  18. sudo apt-get update
  19. sudo apt-get install owncloud-client openssh-server ntp -y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement