Nextcloud
This is not a complete article: This is a draft, a work in progress that is intended to be published into an article, which may or may not be ready for inclusion in the main wiki. It should not necessarily be considered factual or authoritative.
Introduction
We now provide nextCloud, a Dropbox-like cloud storage service, for all Compute Canada users. You can use your Compute Canada username and password to login to the [[ https://nextcloud.computecanada.ca%7CnextCloud server]]. A complete nextCloud user manual is available from docs.nextcloud.com. Another manual is available as PDF document under you account once you connect. All data transfers between local devices and Compute Canada's nextCloud are encrypted.
Compute Canada nextCloud service description
- Server URL: https://nextcloud.computecanada.ca
- Server Location: Simon Fraser University, Burnaby, BC
- Default Quota: 100GB per user
- Backup Policy: Daily backup without offsite copy
- Access Methods: Web interface, nextCloud Desktop Sync Clients, nextCloud Mobile Apps, and any WebDAV clients
- Documentation: PDF and online.
Using nextCloud Web interface
To use the web interface, login to Compute Canada nextCloud from a web browser using your Compute Canada username and password. You can upload and download files between your desktop and nextCloud, edit files, and share files with other Compute Canada users. For more information, please refer to the nextCloud user manual.
Using nextCloud Desktop Sync Clients and Mobile Apps
Using WebDAV Clients
Using UNIX Command Line Tools
You can also use any available WebDAV command line clients, like curl and cadaver, to copy files between your host and nextCloud. Command line tools are useful when you copy data between a remote host you login to and nextCloud.
cURL is usually installed on Mac OSX and Linux systems and can be used to upload and download files using an URL.
Upload a file using curl:
[name@server ~]$ curl -k -u <username> -T <filename> https://nextcloud.computecanada.ca/remote.php/webdav/
Download a file using curl
[name@server ~]$ curl -k -u <username> https://nextcloud.computecanada.ca/remote.php/webdav/<filename> -o <filename>
cadaver is a WebDAV command line interactive client for UNIX. It works much like standard UNIX ftp command:
[name@server ~]$ cadaver https://nextcloud.computecanada.ca/remote.php/webdav/
After login, you can use any ftp commands like help, ls, put, get, delete, mput, mget, etc.