How to upload a large file in pieces to the server

filesupload

How can upload a large SQL dump file it's 1GB, is there any software that uploads the file and resumes it later or just cut it into pieces and then join them back on the server ?
because ftp upload is not an option (slow connection).
and thanks

Best Answer

You don't mention your operating systems. I'm assuming you use a flavor of Linux.

Linux systems have a CLI utility called 'split' that is expressly intended to break a file into pieces. To reassemble, you just 'cat' the files together.