It took 2 more hours than it should have to copy 125GB

all 18 comments

sorted by: hot top controversial new old
[–] 44 points 3 years ago (1 child)
  • [–] 17 points 3 years ago (1 child)

    Can it resume interrupted writes?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 46 points 3 years ago* (4 children)

    Heck to the yeah. I usually run

    rsync -av src/ dst/

    Which is verbose and archive mode (keeps mod times, user, etc). You can also add -P for progress.

    Here is the man page https://linux.die.net/man/1/rsync

    If it gets interrupted, just run that same command again.

    Edit: also it's usually preinstalled on every Linux distro and should be easy to install for Windows too.

  • source
  • parent
  • hideshow 8 child comments
  • [–] 5 points 3 years ago (1 child)

    I like to add --ignore-existing to it aswell in case it gets interrupted. Useful when it's a timed backup or similar

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 3 years ago (1 child)

    If it doesn’t ignore existing by default, what’s the difference between that and plain old copy?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago*

    Rsync checks the files and only issues the copy if the file size/modified dates are different by default. Ignore existing will not overwrite a changed file afaik.

    If the file is large it only sends the changed blocks (e.g. you have a 100gb database and only a dozen 4mb blocks have been modified it won't send the full 100gb across the network)

  • source
  • parent
  • [–] 39 points 3 years ago (1 child)
  • [–] 12 points 3 years ago

    Time for a new USB cable 😅

  • source
  • [–] 8 points 3 years ago

    My condolences.

  • source
  • [–] 6 points 3 years ago (1 child)

    My eternal pain with raspberry pis

  • source
  • hideshow 2 child comments
  • [–] 5 points 3 years ago

    wifi transfer is superior

    but also struggled with the same: planning on buying female usb a ports to resolder on the motherboard, also male ports for my io peripherals. also humidity is ur enemy, much of my ports are ruined due to corrrosion. run ur ac people!

  • source
  • [–] 0 points 3 years ago

    Reminds me of Spin City and Carters dog :)

  • source