Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 12-10-2006, 01:28 PM   #1 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Question wget: some queries??


i am using wget for quiete some time to manage my downloads but have some queries:-
  • how to download in split parts from multiple servers like in flashget??
  • is there any GUI for schedulling donwloads in wget?? b'cos i found only cron jobs???
  • how set it download automactically from the list when my net is free or stop it when i broswer is running
  • how create some modes say:download mode or browsing mode. i mean to limit is brandwith usage like we do in torrents??
gary4gar is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 12-10-2006, 02:01 PM   #2 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: wget: some queries??

Code:
man wget
Will solve most of the queries.
You can check out http://www.cs.duke.edu/~reynolds/gat/ for GUI scheduling.
You can also check out curl for downloads
Code:
man curl
for more
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 12-10-2006, 02:06 PM   #3 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: wget: some queries??

^^^
i read the whole manual page but still din't find any thing related to my question?
gary4gar is offline  
Old 12-10-2006, 02:08 PM   #4 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: wget: some queries??

It is there. I did find a few but my browser crashed. I will find them again and post back later.
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 12-10-2006, 02:10 PM   #5 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: wget: some queries??

but how u always see the things and not me
gary4gar is offline  
Old 12-10-2006, 04:08 PM   #6 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: wget: some queries??

@Gary, You can use Aria Download Manager similar to FlashGet(in Windows).
Get it from here
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 12-10-2006, 05:06 PM   #7 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: wget: some queries??

Take a look at "prozilla" -> http://prozilla.genesys.ro/ ! I use it daily and its one of the best Linux download accelerators i have come across so far.

Its run by command "proz"! It downloads the file in whatever directory u initiated the command. So to download all the files in one default directory , I did a little tweaking. I made a little shell script! U may use it too. Here it is...

************************************

if [ -z $1 ]
then
echo "Enter Url !!"
else
cd /home/mediator/downloads
proz $1
fi

**************************************

"downloads" is the default directory here. U can change it to any other directory u create. Save the shell script as "resume" or whateva u like and place it in ur PATH. Then give the execution rights to it and run as "resume http://file_address" ! The speed it gives is just amazing. Try it out!
Have fun! Happy Shell scripting!
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 12-10-2006, 05:41 PM   #8 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: wget: some queries??

Quote:
Originally Posted by gary4gar
how to download in split parts from multiple servers like in flashget??
I have to check this up but maybe the following switch will work, just try
-m
--mirror
Turn on options suitable for mirroring. This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory listings. It is currently equivalent to -r -N -l inf --no-remove-listing.

Quote:
Originally Posted by gary4gar
is there any GUI for schedulling donwloads in wget?? b'cos i found only cron jobs???
Covered in my previous post

Quote:
Originally Posted by gary4gar
how set it download automactically from the list when my net is free or stop it when i broswer is running
I don't think this can be done without shell scripting.

Quote:
Originally Posted by gary4gar
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with the m suffix. For example, --limit-rate=20k will limit the retrieval rate to 20KB/s. This is useful when, for whatever reason, you don't want Wget to consume the entire available bandwidth.

This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a legal value.

Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified by the rate. Eventually this strategy causes the TCP transfer to slow down to approximately the specified rate. However, it may take some time for this balance to be achieved, so don't be surprised if limiting the rate doesn't work well with very small files.how create some modes say:download mode or browsing mode. i mean to limit is brandwith usage like we do in torrents??
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 13-10-2006, 12:17 PM   #9 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: wget: some queries??

can anone help me learn some little shell scripting for pity things??
some resources which start from "0"
gary4gar is offline  
Old 13-10-2006, 12:26 PM   #10 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: wget: some queries??

@Gary, You can get started with Shell Scripting from here
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 13-10-2006, 01:17 PM   #11 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: wget: some queries??

is there anyway to download it fully and then read. also is a pdf version is available??
gary4gar is offline  
Old 13-10-2006, 01:29 PM   #12 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: wget: some queries??

So you want it in PDF format? Download Shell Scripting Tutorial (in PDF format) from here
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 13-10-2006, 01:34 PM   #13 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: wget: some queries??

Yea there are plenty of em, best being "Linux complete command reference", but its huge! Shell scripting is nothing but compilation of commands with appropriate parameteres and if-then-else etc blocks! Just google for it and u'll find it in plenty. Neways the non-pdf link given by @Jguru is appropriate and shud be more than enough.
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 13-10-2006, 11:31 PM   #14 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: wget: some queries??

http://www.tldp.org/LDP/Bash-Beginne...ners-Guide.pdf
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 15-10-2006, 10:32 AM   #15 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: wget: some queries??

thanx a lot thats a lot of reasource to keep me guled for a month atleast
gary4gar is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by icebags
- by Sujeet
- by clinton
- by topgear

Advertisement




All times are GMT +5.5. The time now is 10:25 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2