0
votes
2answers
52 views

Cannot write to “HAIB_T47D_FoxA1.tar.gz” (Input/output error)

I am trying to download a dataset (bigger than 1 GB) using wget: wget http://cistrome.dfci.harvard.edu/MACSNatureProtocol/HAIB_T47D_FoxA1.tar.gz However, I always get the following error message: ...
0
votes
1answer
77 views

wget and axel could not download link with have any parenthesis

if download links having any parenthesis wget and axel could not download it. for example this link: alachiq@alachiq:~$ wget ...
3
votes
3answers
660 views

force wget timeout

How can i force wget to stop after X seconds? I have a script that downloads images, from time to time it gets stuck and refuses to "timeout" what i've tried: --tries=3 --connect-timeout=30 from ...
0
votes
1answer
281 views

How to Download Through POST using wget

If I have a URL similar to this: http://www.vim.org/scripts/download_script.php?src_id=11834 How do I download the file using wget? Everytime I try I always end up downloading the php file.
1
vote
3answers
3k views

Downloading a RAR file from Mediafire using WGET

Example: http://www.mediafire.com/?tjmjrmtuyco This was what I tried... wget -A rar [-r [-l 1]] <mediafireurl> That is to say, I tried with and without the recursive option. It ends up ...
1
vote
1answer
210 views

how to use 'wget' to download a whole web site

i use this code to download : wget -m -k -H http://www.digu.com but if some file cant be download , it will retry Again and again , so how to skip this file and download other files , thanks
2
votes
1answer
999 views

wget recursively with -np option still ascends to parent directory

tl;dr: will `wget --no-parrent -r ' download from a directory above the given url's directory? when using wget to download, say images, recursively from example.com/a/b with the -r and -np options, ...
0
votes
1answer
459 views

How to download the video from this website? [closed]

I want to download this video: http://www.collapsus.com/ Can I do this with wget or any other shell command ?
1
vote
1answer
1k views

How to download images with wget

I'm doing this wget script called wget-images, which should download images from a website. It looks like this now: wget -e robots=off -r -l1 --no-parent -A.jpg The thing is, in the terminal when i ...
0
votes
3answers
2k views

unauthenticated http proxy, wget fails, curl works

I'm running a ubuntu 10.04 i386 desktop edition. I have configured the http proxy via the http_proxy variable. When I use wget I get a connection refused but, curl, apt-get etc. work just fine. Any ...