Forum Moderators: phranque
My question is, what is the best way to transfer a HUGE amount of files from one server to the other. I'm assuming ftp will not suffice.
Both sites are on shared hosting. One with hostgator, one with bluehost. I have full access to both sites and servers (to an understandable degree).
Appreciate some advice on this. Thanks.
I have now downloaded the entire home directory into a tar.gz file. Thing is, I have never worked with this format and have no idea how to extract to my other server.
Do you know how I can achieve this?
Thanks.
ftp is probably the best protocol for this purpose since it is the file transfer protocol.
some ftp clients will transfer and maintain directory structure.
if this is your case, you can ftp the complete tar.gz and then uncompress/extract or simply move an entire directory tree with ftp.
a tar.gz file is simple a gzip-compressed tar file.
the tar format will retain the directory structure and location of files.
you must first uncompress it with the gunzip utility before you extract it with the tar utility:
[gzip.org...]