|
|
|
|
|
by WClayFerguson
2300 days ago
|
|
Use rsync to make one folder structure match another by copying only the changed parts of files. You can sync many gigabytes VERY quickly this way. You'll want to have an external USB3.0 drive to get from one machine to another IMO, because you would have wanted it backed up ANYWAY right? ...so there's no need to try to copy directly from one machine to another machine, without using the USB drive. Here's an example command: sudo rsync -aAXv --delete --force "/home/clay/ferguson/" "/media/clay/BAK/ferguson" |
|