Author Topic: Easy wget question  (Read 604 times)

preacher

  • VIP
  • Member
  • ***
  • Posts: 858
  • Kudos: 107
    • http://kansascity.cjb.net
Easy wget question
« on: 14 November 2002, 13:03 »
Im trying to download an iso image using wget and I am having a small problem I hope you guys can help me with. My download stops at 14% with this message.

Length: 728,334,336 (unauthoritative)

14% [====>                                ] 102,376,808  240.33K/s    ETA 42:23F
ile size limit exceeded

How do I change the file size limit?
Kansas City Hustle
http://kansascity.cjb.net

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Easy wget question
« Reply #1 on: 14 November 2002, 13:20 »
You don't have a "ulimit" set at 100MB do you? Type "ulimit". Or are you using quotas? Or is your file system full? Type "df -k .".

[ November 14, 2002: Message edited by: void main ]

Someone please remove this account. Thanks...

preacher

  • VIP
  • Member
  • ***
  • Posts: 858
  • Kudos: 107
    • http://kansascity.cjb.net
Easy wget question
« Reply #2 on: 14 November 2002, 14:07 »
quote:
Originally posted by void main:
You don't have a "ulimit" set at 100MB do you? Type "ulimit". Or are you using quotas? Or is your file system full? Type "df -k .".

[ November 14, 2002: Message edited by: void main ]



Just typed in ulimit and it says 100000. How do I change this?
Kansas City Hustle
http://kansascity.cjb.net

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Easy wget question
« Reply #3 on: 14 November 2002, 14:19 »
It's listed in "man bash".

$ ulimit -a
will list all current limits on your shell.

$ ulimit -f xxxxx
will set a file size limit of xxxxx.

You probably have "ulimit" set in your ~/.bashrc or ~/.bash_profile or /etc/profile.
Someone please remove this account. Thanks...

preacher

  • VIP
  • Member
  • ***
  • Posts: 858
  • Kudos: 107
    • http://kansascity.cjb.net
Easy wget question
« Reply #4 on: 14 November 2002, 14:54 »
Thank you void man, all mighty linux master.
Kansas City Hustle
http://kansascity.cjb.net

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Easy wget question
« Reply #5 on: 14 November 2002, 15:05 »
quote:
Originally posted by Ex Eleven / b0b 2.1:
Yea what voidmain said (and always do a wget -c)


If you are *always* going to use a "-c" then you might as well add this to your profile:

alias wget='wget -c'
Someone please remove this account. Thanks...

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Easy wget question
« Reply #6 on: 14 November 2002, 23:06 »
Code: [Select]

You can always break out of the endless loop with a "break" based on a condition of your choosing.

Here's the loop section in the bash shell programming reference:
http://tldp.org/LDP/abs/html/loops.html

[ November 14, 2002: Message edited by: void main ]

Someone please remove this account. Thanks...

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Easy wget question
« Reply #7 on: 16 November 2002, 06:40 »
Here's the one X11 wanted with the loops... Hey X11, do you want to help me out here? Look at your location box in your browser. It should say "t=001177" at the end. I am working my way down through the threads. I've already gone through "t=001185" down to this one. Could you start at "t=001150" and work your way down. Just post a message in each one and it will make it show up on the main Linux/UNIX index page. I'll stop where you started and we'll figure it out from there...
Someone please remove this account. Thanks...