1

このコマンドを使用しようとしました: wget -c -i file. また、パッケージによっては、ダウンロード速度が長時間ゼロになることもよくあります。したがって、これらのパッケージをスキップして、次に wget に進みたいと思います。
ここで、問題は、ダウンロード速度が指定された時間 (5 分間など) ゼロであるかどうかをどのように検出できるかです。

4

1 に答える 1

3

wgetマニュアルより

   --read-timeout=seconds
       Set the read (and write) timeout to seconds seconds.  The "time" of
       this timeout refers to idle time: if, at any point in the download,
       no data is received for more than the specified number of seconds,
       reading fails and the download is restarted.  This option does not
       directly affect the duration of the entire download.

       Of course, the remote server may choose to terminate the connection
       sooner than this option requires.  The default read timeout is 900
       seconds.
于 2013-01-08T13:21:22.127 に答える