Typo in 'finished', minor redacting

This commit is contained in:
m-stefanski 2020-05-07 18:55:05 +02:00 committed by GitHub
parent c269932cc5
commit eb6c0d1bde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ I was trying to migrate my data from one WD MyCloud EX 2 Ultra to another. I fou
### Results ### Results
Starting with 20-25 MB/s using `scp` and `rsync`, finiched with 55 MB/s using `rsync` running as daemon on source. See [Solution](#Solution) for details. Starting with 20-25 MB/s using `scp` and `rsync`, finished with 55 MB/s using `rsync` running as daemon on source. See [Solution](#Solution) for details.
### Takeaways ### Takeaways
@ -272,7 +272,7 @@ Run rsync daemon using command `rsync --daemon`
## On target: ## On target:
Verify rsync server is accessible Verify that rsync server is accessible
``` ```
# rsync --list-only rsync://192.168.1.54 # rsync --list-only rsync://192.168.1.54
@ -290,10 +290,10 @@ receiving incremental file list
Success! With over double the speed. It is still lower than 90-100 MB/S reported over internet when using SMB, but it should be sufficient for now. Success! With over double the speed. It is still lower than 90-100 MB/S reported over internet when using SMB, but it should be sufficient for now.
Copying whole shares is just as easy: Copying whole directories is just as easy:
``` ```
rsync -a rsync://192.168.1.54:12000/files/Marcin/ /mnt/HD/HD_a2/Marcin --progress rsync -a rsync://192.168.1.54:12000/files/Marcin/ /mnt/HD/HD_a2/Marcin --progress
``` ```
It's been fun. Truly. Time to have a life though. It's been fun. Truly. Time to have a life though.