Trying to set up crypt

So I will try to be thorough here, I just installed rclone a day or two ago. I have successfully sent data to my google drive, but when I try sending using crypt nothing happens. I've seen a lot of people are mounting, but I'm not sure if I'm mounting correctly or why I would want to mount? Would I mount both crypt and the google drive if I was mounting?

What is the problem you are having with rclone?

I can't get crypt to send data to my google team drive.

What is your rclone version (output from rclone version)

rclone v1.53.2

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Win 10 64 bit

Which cloud storage system are you using? (eg Google Drive)

Google drive team

The command you were trying to run (eg rclone copy /tmp remote:tmp)

The rclone config contents with secrets removed.

Current remotes:

Name                 Type
====                 ====
cryptid              crypt
main1                drive

e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> q

hello and welcome to the forum,

rclone copy "D:\Users\Dylan\Videos\Movies\Eraserhead (1977)" cryptid
this would copy files to your local computer, not the remote, as you need a colon in the remote name like so cryptid:

rclone mount --buffer-size=32M main1 Y;
this will not work, two problems

  1. missing : in the name of the remote, should be main1:
  2. the drive letter needs a colon, not a semecolon, Y:, not Y;

best way to test a remote is using
rclone ls main1: -vv
rclone ls cryptid: -vv

You are correct, using a colon was the problem. I'm watching the files upload now. Thank you.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.