# rsync

## Progress

To get better progress statistics, force rsync to calculate files before transfer using `--no-i-r` and `--info=progress2`

For example:

```
rsync -r --info=progress2 src dest
```

## NTFS problems

I've had issues with transfers to NTFS drives crashing. Not transferring permissions and groups as well as using specific ownership after transfer seems to resolve the issue.

```
rsync -r --no-p --no-g --chmod=ugo=rwX src dest
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ramsdenj.com/introduction-2/introduction-1/rsync.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
