I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this or Do I have to download that again?
Hope an answer thanks to all manny
SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this or Do I have to download that again?
The last one (exe.1.1) is what you want -- it got redownloaded from the byte zero.
To avoid this, use wget with options.
$ wget --help|grep part -c, --continue resume getting a partially-downloaded file.
Rgds, R-C
Get news delivered with the All new Yahoo! Mail. Enjoy RSS feeds right on your Mail page. Start today at http://mrd.mail.yahoo.com/try_beta?.intl=ca
well is not exactly redownloaded from byte 0, because when I remove 1.1 from the end it does'nt do nothing and besides that part is about 25 mb when it have to be 27 mb I know that with wget -c URL I can continue a partial download but that is not what I want because if I add the three part I got the entire size of the package. what I need is to join those package. any other idea,
On Tue, 2007-10-16 at 15:26 -0400, Radu-Cristian FOTESCU wrote:
SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this or Do I have to download that again?
The last one (exe.1.1) is what you want -- it got redownloaded from the byte zero.
To avoid this, use wget with options.
$ wget --help|grep part -c, --continue resume getting a partially-downloaded file.
Rgds, R-C
Get news delivered with the All new Yahoo! Mail. Enjoy RSS feeds right on your Mail page. Start today at http://mrd.mail.yahoo.com/try_beta?.intl=ca
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Manuel Enrique Chavez Manzano wrote on Tue, 16 Oct 2007 15:47:27 -0400:
what I need is to join those package.
No, you don't. wget doesn't produce split download parts. If you start wget a second time and it finds the filename already exists it adds .1 to the new file and so on. All the older files are just failed downloads starting at byte 0. If your file isn't as long as it should (tried crc or md5?) then this simply means it's not yet completely finished. You may *now* want to use the -c switch on it. First remove the old files and then rename this existing file to what it should be.
Kai
ok thanks I'm trying the way you said and is working thank you manuel
On Tue, 2007-10-16 at 23:32 +0200, Kai Schaetzl wrote:
Manuel Enrique Chavez Manzano wrote on Tue, 16 Oct 2007 15:47:27 -0400:
what I need is to join those package.
No, you don't. wget doesn't produce split download parts. If you start wget a second time and it finds the filename already exists it adds .1 to the new file and so on. All the older files are just failed downloads starting at byte 0. If your file isn't as long as it should (tried crc or md5?) then this simply means it's not yet completely finished. You may *now* want to use the -c switch on it. First remove the old files and then rename this existing file to what it should be.
Kai
--- Manuel Enrique Chavez Manzano manny@cmc.cfg.sld.cu wrote:
I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this or Do I have to download that again?
Hope an answer thanks to all manny -- "Nuestra recompensa se encuentra en el esfuerzo y no en el resultado. Un esfuerzo total es una victoria completa". Mahatma Gandhi (@ @) |------o00o-(_)-o00o----------| |Manuel Enrique Chávez Manzano| |manuel864@gmail.com | |manny@cmc.cfg.sld.cu | |GNU/LINUX User | |#424754 | |Using CentOS 5 | |-------ooo--ooo--------------|
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Stupid question, but are you planning on running that software on Linux?
Steven
Get your Art Supplies @ www.littleartstore.com
On Tue, 2007-10-16 at 20:55 -0700, Steven Vishoot wrote:
--- Manuel Enrique Chavez Manzano manny@cmc.cfg.sld.cu wrote:
I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this or Do I have to download that again?
Hope an answer thanks to all manny -- "Nuestra recompensa se encuentra en el esfuerzo y no en el resultado. Un esfuerzo total es una victoria completa". Mahatma Gandhi (@ @) |------o00o-(_)-o00o----------| |Manuel Enrique Chávez Manzano| |manuel864@gmail.com | |manny@cmc.cfg.sld.cu | |GNU/LINUX User | |#424754 | |Using CentOS 5 | |-------ooo--ooo--------------|
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Stupid question, but are you planning on running that software on Linux?
I'm not planning runing that under CentOS, as I said before is for a friend who use Guin2 manuel
Steven
Get your Art Supplies @ www.littleartstore.com _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 10/16/07, Manuel Enrique Chavez Manzano manny@cmc.cfg.sld.cu wrote:
I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this
Hi Manuel,
Does the cat command say something to you ?
maybe you could do
cat SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1 > SetupDxLabelMakerSoftonic.exe.tmp
and then
rm SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
and then
mv SetupDxLabelMakerSoftonic.exe.tmp SetupDxLabelMakerSoftonic.exe
and then try to see if that work :)
or Do I have to
download that again?
as other had mentioned you can use the -c option next time ;)
Cheers,
al.
On Wed, 2007-10-17 at 15:04 -0400, Alain Reguera Delgado wrote:
On 10/16/07, Manuel Enrique Chavez Manzano manny@cmc.cfg.sld.cu wrote:
I've been downloading a software for a friend with wget, but as my connexion to internet is not so good, wget downloaded in three parts by example: SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
My question is: Is there any way to join all of this
Hi Manuel,
Does the cat command say something to you ?
Al I didn't think on that answer but is to late now because I downloaded again thanks anyway I have tried with wget -c and it finished, but when I running it under Guin2 nothing happens so as I said before I redownloaded. I will take into account your answer for the net time.
OFFTOPIC
saludos para ti hermano See you on friday on the sculture park, there is a concert Dana, Akupuntura and Bouquet
maybe you could do
cat SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1 > SetupDxLabelMakerSoftonic.exe.tmp
and then
rm SetupDxLabelMakerSoftonic.exe SetupDxLabelMakerSoftonic.exe.1 SetupDxLabelMakerSoftonic.exe.1.1
and then
mv SetupDxLabelMakerSoftonic.exe.tmp SetupDxLabelMakerSoftonic.exe
and then try to see if that work :)
or Do I have to
download that again?
as other had mentioned you can use the -c option next time ;)
Cheers,
al. _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos