I'm new to rclone. I am transferring about 8TB of backup files from Dropbox to MEGA. I successfully copied a 350GB folder full of RAW images via rclone copy (though painfully slow - it took 4-5 full days). However, none of the RAW images will preview on MEGA. If I download them locally, I can see them. Preview works for images I have downloaded manually from Dropbox and uploaded manually to MEGA. So, there seems to be something in the rclone copy process that is breaking MEGA preview... Any ideas anyone?
Run the command 'rclone version' and share the full output of the command.
Thanks for your quick and helpful responses. I have installed megacmd and created a webdav remote in rclone following your examples:
``
Configuration complete.
Options:
type: webdav
url: 127.0.0.1
vendor: other
``
Executing the command rclone lsd webDAV: I get the error: couldn't list files: Propfind "127.0.0.1/": unsupported protocol scheme
I have no idea what's going on. Is it relevant that the examples all have a 4-digit port number following the IP, and I don't?
SO: Creating a webDAV remote in rclone that is connected to MEGA's own megacmd preserves the function to view images in MEGA. Copying images to MEGA cloud with a direct MEGA remote in rclone results in no viewing options for images without downloading them.
As a total newbie to command shells, rclone, remotes, etc. this whole journey has been a little daunting and time consuming despite the available documentation and helps. But with a good result! Here's a rough breakdown of the process for people like me:
In rclone, setup a socalled "remote" for your source cloud provider (command: "rclone config")
Install megacmd (download from MEGA website)
In megacmd, login to your MEGA account (command: "login" followed by MEGA username)
In megacmd, setup webDAV (command: "webdav" followed by directory of choice)
Copy the entire URL that megacmd returns (from "http:" onward)
Mount a server with that URL on your OS (on Mac: Finder --> Go --> Connect to Server --> Paste URL --> "Connect")
Set username and password of your choice when prompted
In rclone, setup a webdav remote (command: "rclone config") with the following specs:
-- type: webdav
-- url: The full URL from 6)
-- vendor: other
-- username and password from 8)
In rclone, check the remotes you setup (command: "listremotes"). This should show your source cloud remote from 2) and your webdav remote from 9)
Copy files from your source remote to the webdav remote, making sure you use the exact remote names (upper/lower case sensitive) from 10) followed by ":" plus any directory of your choice (command: "copy" followed by source remote directory and then by webdav remote directory)
Your files will appear in MEGA with preview function!
*I strongly advise installing rclone from an admin account in your OS. Otherwise you'll hit permission problems for essential commands.