Support
Troubleshooting Commands
bash
Copy
# Check rclone version
rclone version
# Test configuration
rclone config show
# Debug transfer issues
rclone copy source:path dest:path -vv
Common Issues Resolution
Authentication Problems
bash
Copy
# Refresh token
rclone config reconnect remote:
# Verify credentials
rclone about remote:
Performance Issues
bash
Copy
# Benchmark performance
rclone benchmarks
Error Handling
python
Copy
try:
result = subprocess.run(['rclone', 'sync', 'source', 'dest'],
capture_output=True,
text=True)
if result.returncode != 0:
handle_error(result.stderr)
except Exception as e:
log_error(str(e))