13
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

wgetコマンドでsegmentation fault (core dumped)が出たときの対処法(続きからダウンロード再開)

Last updated at Posted at 2020-01-30

#wgetコマンドでsegmentation fault (core dumped)
BAMファイル(今回は12GBほど)をダウンロードしようとしたらエラー。
進捗は99%止まり。

wget https://www.encodeproject.org/files/ENCFF898DZV/@@download/ENCFF898DZV.bam

HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 13039955683 (12G) [binary/octet-stream]
`ENCFF898DZV.bam' に保存中

ENCFF898DZV.bam     99%[============> ]  12.14G  13.6MB/s    残り1s 
[1]    27853 segmentation fault (core dumped)  wget 

##解決法
--continue オプションで続きからダウンロード再開。
wget 強制終了したときなどにも使える便利オプション

wget --continue https://www.encodeproject.org/files/ENCFF898DZV/@@download/ENCFF898DZV.bam

HTTP による接続要求を送信しました、応答を待っています... 416 Requested Range Not Satisfiable

    このファイルは既に全部取得しおわっています。何もすることはありません。

なんやねん。
416 Requested Range Not Satisfiableはリソースのサイズを超えるデータを要求したときのエラー。
参照:https://liginc.co.jp/web/programming/164003
原因は不明。

以上。

13
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?