Hey, I'm wanting to move from my tiny OVH Classic VPS to a KimSufi dedicated server. It's mainly so I have a bit more ram to muck around with and more storage. I seriously doubt OVH will assist transferring the server from one brand to the other. What do you guys find easiest to transfer an entire server over? - Red
Compress into a TAR.GZ, then download that zip, upload it to the dedi, then uncompress. Thats what I do.
rsync -za source destination Would be the easiest. I'd recommend tar'ing the folder you want transferred, pipe it to gzip, pipe that to ssh which pipes the gzip'ed data to a decompressor.
FTP (File Transfer Protocol) get file zilla is what i use and i just drag the files onto the dedi, i believe this is the fastest way.
But this removes a middle-man! Here's what I mean: Code (Text): tar cf - <dir> | ssh -C [email protected] "cd /output; tar xvf -" (no gzip as ssh's -C[ompression] flag is more efficient for this scenario)