qual é a unidade de taxa padrão no wget?

4

Quando eu uso o wget para baixar um arquivo grande, ele me dá "56M / s". Eu quero saber se isso significa 56 megabits por segundo ou 56 megabytes por segundo. Obrigado!

Assim:

 231,997,440 61.4M/s   in 4.0s
    
por larry 22.08.2011 / 09:52

2 respostas

7

São megaBytes. Além de qualquer outra coisa, se você dividir o comprimento do arquivo (231997440 bytes) pelo tempo (4.0s), você obtém a mesma resposta (dar ou receber).

Editar : se você quiser apenas definir a saída de texto para a taxa, ela exibe, por exemplo, "MB" em vez de apenas "M", é um software gratuito, você pode recompilar você mesmo. Mas pode valer a pena verificar se existe uma versão mais nova do wget, já que ambas as (1.11.4 e 1.12) parecem exibir o B:

2011-08-22 09:12:06 (3.53 MB/s) - “openmoko.odp” saved [3635800/3635800]
    
por 22.08.2011 / 09:56
4

A saída mostrada é em Megabytes / segundo, você também pode ver Kilobytes / segundo e eu acho, mas muito improvável bytes / segundo.

Se você quiser classificar o limite do download para um spped específico, use a opção --rate-limit

- rate-limit = 56M limitará o download a 56Mb / s.

‘--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

    
por 22.08.2011 / 10:06