sbonds

joined 1 year ago
[–] sbonds@lemmy.world 7 points 5 months ago

I don’t back up my drives, I replicate them.

There is a lesson about unnoticed data damage in someone's future.

What happens when a software bug, ransomware, or hardware problem destroys or corrupts that data over days or months?

[–] sbonds@lemmy.world 2 points 7 months ago (1 children)

This Lemmy community has a great set of intro Linux lessons to get you started:

https://programming.dev/c/linuxupskillchallenge

The scheduling command for a one-time future run is the "at" command.

[–] sbonds@lemmy.world 1 points 9 months ago

I've had some luck establishing the bottleneck using strace on both the sender side and receiver side. This will show if the sending rsync is waiting on local reads or remote writes and if the receiving rsync is waiting on network reads or local writes.

This helps find the specific resources to check.