How to stop or pause wget download?

Booting, installing, newbie
Post Reply
Message
Author
User avatar
kayan
Posts: 90
Joined: Thu 14 Feb 2008, 18:26
Location: India

How to stop or pause wget download?

#1 Post by kayan »

I have started wget to download an iso. I want to stop it now and continue later :roll:
What command is required to stop wget? :!: :!:
[color=blue]SAHARA laptop intel celeron M 1.4 GHz/ 768Mb Ram /40GB ,SIS 661 chipset,[/color]

User avatar
Dingo
Posts: 1437
Joined: Tue 11 Dec 2007, 17:48
Location: somewhere at the end of rainbow...
Contact:

Re: How to stop or pause wget download?

#2 Post by Dingo »

kayan wrote:I have started wget to download an iso. I want to stop it now and continue later :roll:
What command is required to stop wget? :!: :!:
simply type

ctrl + c

next time you want resume download you will type

Code: Select all

wget -c url
replace .co.cc with .info to get access to stuff I posted in forum
dropbox 2GB free
OpenOffice for Puppy Linux

User avatar
kayan
Posts: 90
Joined: Thu 14 Feb 2008, 18:26
Location: India

#3 Post by kayan »

Thank You :D
[color=blue]SAHARA laptop intel celeron M 1.4 GHz/ 768Mb Ram /40GB ,SIS 661 chipset,[/color]

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#4 Post by Flash »

Kayan, please let us know how it worked for you. :)

Bruce B

#5 Post by Bruce B »

Just a little tip to add to Dingo's post.

If you plan to download a file in pieces with the wget -c (continue)
switch, you can echo the command to a text file, in the same directory
as your download.

Doing this saves your full URL, which is hard to remember later, and
you don't have to look for it again.

echo wget -c actual_URL > filename_of_choice

Verify it was written properly as you please with this command:

cat filename_of_choice

Use yer noggin and don't overwrite an existing file with
> as that is what will happen of course.
>> will append an already existing file, but
appending is not what we are striving to do, unless by intent.

you can start and restart your download by running this command:

. filename_of_choice

User avatar
kayan
Posts: 90
Joined: Thu 14 Feb 2008, 18:26
Location: India

#6 Post by kayan »

@Flash
Kayan, please let us know how it worked for you.
it worked ,able to stop and resume wget :D
[color=blue]SAHARA laptop intel celeron M 1.4 GHz/ 768Mb Ram /40GB ,SIS 661 chipset,[/color]

User avatar
alienjeff
Posts: 2265
Joined: Sat 08 Jul 2006, 20:19
Location: Winsted, CT - USA

#7 Post by alienjeff »

[size=84][i]hangout:[/i] ##b0rked on irc.freenode.net
[i]diversion:[/i] [url]http://alienjeff.net[/url] - visit The Fringe
[i]quote:[/i] "The foundation of authority is based upon the consent of the people." - Thomas Hooker[/size]

Post Reply