-
Notifications
You must be signed in to change notification settings - Fork 42
Rclone improvements #366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Rclone improvements #366
Conversation
## Mounting a Bucket | ||
|
||
Use the `mount` command to mount a bucket to a folder (Mac and Linux only). When mounted, you can use the bucket as a local folder. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{% tabs %} | |
{% tab label="Windows" %} | |
```powershell | |
mkdir ~/mybucket | |
rclone mount waterbear:mybucket ~/mybucket --vfs-cache-mode full | |
``` | |
{% /tab %} | |
{% tab label="Linux" %} | |
|
||
## Mounting a Bucket | ||
|
||
Use the `mount` command to mount a bucket to a folder (Mac and Linux only). When mounted, you can use the bucket as a local folder. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the `mount` command to mount a bucket to a folder (Mac and Linux only). When mounted, you can use the bucket as a local folder. | |
Use the `mount` command to mount a bucket to a folder (Mac, Windows and Linux) or as a disk drive (Windows). When mounted, you can use the bucket (drive) as a local folder (drive). |
sudo chown $USER: /mnt/mybucket | ||
rclone mount waterbear:mybucket /mnt/mybucket --vfs-cache-mode full | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{% /tab %} | |
{% tab label="macOS" %} | |
```shell | |
sudo mkdir /mnt/mybucket | |
sudo chown $USER: /mnt/mybucket | |
rclone mount waterbear:mybucket /mnt/mybucket --vfs-cache-mode full | |
``` | |
{% /tab %} | |
{% /tabs %} |
To unmount the bucket, use the `umount` command. | ||
|
||
```bash | ||
umount /mnt/mybucket | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To unmount the bucket, use the `umount` command. | |
```bash | |
umount /mnt/mybucket | |
``` | |
To unmount the bucket, use the `Ctrl-C` keystroke to stop rclone. |
No description provided.