Getting Help

Last updated on 2026-08-23 | Edit this page

Overview

Questions

  • Where do I get help using rclone?
  • What are some key resources for troubleshooting and learning advanced features?

Objectives

  • Know where to find comprehensive documentation and support for rclone.
  • Identify community resources and forums that can assist with troubleshooting.

Getting Help with Rclone


Rclone offers extensive documentation and community support to help you solve issues and learn advanced features. Here are some key resources:

Official Documentation

Visit the rclone documentation website for detailed guides on installation, configuration, and usage of various commands. Use the search feature to look up specific topics such as configuration commands or remote storage names.

Community Forums and Support

  • Check out the rclone GitHub repository for bug reports, feature requests, and discussions.
  • Explore community forums and mailing lists where other users share tips and solutions.
  • Use platforms like StackOverflow to ask questions and find answers from experienced users.

Command Help

For a list of every available command, run: bash rclone help or get details on a particular command, including its flags, by adding --help after the command name: bash rclone copy --help

These resources are invaluable whether you’re troubleshooting an issue or looking to explore advanced functionality.

Challenge

Find a flag

Run rclone sync --help and find the flag that lets you preview what a sync would do without actually deleting or transferring anything.

You’ve already used this flag several times earlier in the lesson.

-n, --dry-run — the same flag introduced in Creating and Configuring Remote Connections and used throughout the transfer episodes. rclone <command> --help is the fastest way to rediscover a flag you’ve forgotten, without leaving the terminal.

Key Points
  • Rclone’s official documentation is available at rclone.org.
  • Community support is accessible through GitHub, forums, and StackOverflow.
  • Use rclone help for quick command-line assistance.