
Linux Mint 7 - More Cloud Storage with rclone and github
Petroleum Downstream Crash Course Playlist:
https://www.youtube.com/playlist?list=PLhPfNw4V4_YQ13CnhacUqEVk-tZlU4ISE
OpenFOAM for Windows 10 Beginner Playlist
https://www.youtube.com/playlist?list=PLhPfNw4V4_YRhBU4IqSaToQ8_X543YQsZ
OpenFOAM Intermediate Playlist
https://www.youtube.com/playlist?list=PLhPfNw4V4_YSpWX6mSOlwWEOKVa6i_iuE
OpenFOAM Heat Transfer Playlist
https://www.youtube.com/playlist?list=PLhPfNw4V4_YR2Qa3Q9-AzNSF2J9Dc4_qT
Radiation Heat Transfer Learning Journal:
https://www.youtube.com/watch?v=uUzh9kh-WTo&list=PLhPfNw4V4_YRUUVUydQp-n6U-7uu1kJof
Turbulence Modelling Playlist
https://www.youtube.com/watch?v=F_Rxv9uMM3g&list=PLhPfNw4V4_YSnbYkJIBQ1kRN06Mmxe2Be
Cloud Services (Google Drive, One Drive etc)
• Paid Services
◦ https://www.insynchq.com/
◦ https://www.thefanclub.co.za/overgrive
• Free Services
◦ Rclone (lazy install)
▪ https://www.youtube.com/watch?v=G8YMspboIXs
▪ sudo apt install rclone
▪ Rclone Github: https://github.com/rclone/rclone
▪ Rclone Manual: https://github.com/rclone/rclone/blob/master/MANUAL.md
• Rclone main menu
◦ rclone config
• to setup google drive
◦ set a new remote in the rclone main menu
◦ got to new remote (n), follow instructions and it will set google drive as one of rclone’s remotes
◦ https://www.youtube.com/watch?v=vPs9K_VC-lg
◦ Be sure to skip google docs (cos these can cause a sync to fail)
▪ --drive-skip-gdocs
◦ Shared folders may also be a pain, so sync only folders you have
• to setup onedrive
◦ set a new remote in the rclone main menu (n)
◦ repeat process (not for organisation/school account)
• Have a full listing of all files in your cloud drive
◦ rclone ls remoteName:
• Note that rclone does NOT work automatically, but you can script it to do so.
• Copy files over from source to destination without deleting
◦ rclone copy 'local folder directory' remoteName:'folder in your cloud drive'
• to make new folder in cloud
◦ rclone mkdir remoteName:'folder path in your cloud drive'
• Sync files in destination folder using source folder will delete extra files in the destination folder
◦ rclone sync remoteName:'folder path in your cloud drive' 'folder path in your local drive'
◦ eg.
◦ rclone sync --update --drive-skip-gdocs . GoogleDrive:
• if you have a google drive in your dual boot...
◦ Create a shortcut https://www.youtube.com/watch?v=nOlH-P8-5PI
◦ shift+ctrl+alt drag
◦ via terminal (ln -s ‘your original folder’ ‘where you want the shortcut’)
◦
◦ GitHub (file limit 50 mb, or 100 mb from CLI)
▪ https://help.github.com/en/enterprise/2.14/admin/installation/setting-git-push-limits
▪ https://www.youtube.com/watch?v=_UG6o4PkiQs