...
Create a "onedrive" directory somewhere within your scratch space directory.
No Format mkdir -p -m 700 /scratch/jc012345`whoami`/onedrive
Modify your environment by loading the onedrive module.
No Format module load onedrive
Authenticate with OneDrive:
Issue the command
No Format onedrive
You should get a response something like:
No Format [jc012345@ln01 ~]$ onedrive Authorize this app visiting: https://..... Enter the response uri:
- Copy and paste the URL into a browser (on your desktop/laptop computer) and hit the Enter or Return key to load content. You will then need to authenticate to OneDrive - for most JCU staff/students SSO (single sign on) should take care of it for you. Once authentication has been successful, a blank page should be returned (may change in future). You need to copy the URI/URL that was returned (where you pasted the URL earlier) and paste the contents as a response to the
Enter the response uri:
prompt. You should receive a message that indicates successful authentication.
Now it's time to configure your use of
onedrive
on HPC. The following is very similar to a configuration that has been tested by HPC staff for use of OneDrive as an archive for files on HPC.No Format mkdir -p ~/.config/onedrive cat <<EOF >~/.config/onedrive/config sync_dir = "/scratch/jc012345`whoami`/onedrive" skip_file = "~*|.~*|*.tmp" skip_dotfiles = "true" skip_symlinks = "true" upload_only = "true" no_remote_delete = "true" remove_source_files = "false" EOF
To confirm your configuration (may be larger than the contents of your configuration file), execute
No Format onedrive --display-config
- You are now ready to upload files to or download files from OneDrive, remembering that HPC storage is for research files only - all other files should be moved to another location (removed from HPC). For uploading files to OneDrive, copy/move files to the "
sync_dir
" you configured - e.g., to move all *.dat files in your current working directory, usemv *.dat /scratch/jc012345`whoami`/onedrive
. Two aliases have been created for upload/download convenience. To upload files from your "
sync_dir
", simply use the command:No Format onedrive-upload
- The progress of uploads will show up on your terminal. The command should tell you whether transfers were successful or unsuccessful. When finished, you may choose to verify success accessing your OneDrive storage from your desktop/laptop computer.
...