Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
ftp large file .gzip
Name: Mehul Date: September 11, 2003 at 18:08:35 Pacific OS: sun CPU/Ram: sun
Comment:
Hello,
I have a file of large file size i need to ftp to another server , i do tar or gzip to get file xxx.zip or xxx.tar
if i do ftp it takes around 5 hrs to transfer the build
is there some utility available in unix which splits the file and can ftp the split files parallely....does csplit works ?
If there is split there should be some utility also to join the split files
Name: David Perry Date: September 12, 2003 at 04:28:44 Pacific
Reply:
I'm missing the point of your question. Do you feel it would take less time to transfer lot of little parts compared to one file if the total bytes transferred is the same ?
If that is really something you want to do, look at split and cat.
0
Response Number 2
Name: Theodore Date: September 12, 2003 at 06:42:02 Pacific
Reply:
Yes split (csplit) is the command
RTFM for your OS to find details.
i.e.
split -b 2m myfile1 splits into 2mb files
0
Response Number 3
Name: mehul Date: September 12, 2003 at 11:06:32 Pacific
Reply:
Hi David,
Yes i wish to ftp those splited files in parallel I hope it will be faster...
onw more thing is how do i join the splitted files together ? is it the join command
Summary: it depends upon the umask set on the server where u are ftping the file too. If the umask is set something like 022 then even if you ftp the file with twx permission for others, it will make it read o...
Summary: I want to edit the first line in a large file. Using VI editor I amn't able to do, so that I thought to do using head and tail functions and then done successfully. Is there any way to achieve this in...
Summary: I'd like to have a script that breaks a large file into multiple files. Basicaly, the script reads a large file and looking for a line "PJL EOJ", if line found, the counter will count it as 1, so when...