Last active
September 27, 2017 16:00
-
-
Save kkappel/067890717c8a97e3a622129b2e94f7bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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