Skip to content

Instantly share code, notes, and snippets.

@kkappel
Last active September 27, 2017 16:00
Show Gist options
  • Select an option

  • Save kkappel/067890717c8a97e3a622129b2e94f7bd to your computer and use it in GitHub Desktop.

Select an option

Save kkappel/067890717c8a97e3a622129b2e94f7bd to your computer and use it in GitHub Desktop.
#!/bin/bash
# Migrate from OwnCloud to NextCloud
# tested with: UBUNTU 16.04
# (c) 2017 by Klaus Kappel <kkappel@yahoo.de>
# UBUNTU 16.04, UBUNTU 14.04: apt-get
apt=apt
sudo -s
$apt remove owncloud-client
$apt autoremove
add-repository ppa:nextcloud-devs/client
$apt update
$apt install nextcloud-client
exit
nextcloud &
#TODO: Write config...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment