wgetを使ってDropboxからダウンロードを再開したいです。ファイルをダウンロードしています。
wget -O SQLyog.exe "https://www.dropbox.com/s/dfv2z0le0c2bo7z/SQLyog-9.3.3-0Trial.exe?dl=1"
..........
Length: 15775640 (15M) [application/x-msdos-program]
Saving to: ‘SQLyog.exe’
5% [====> ] 810,391 12.3KB/s eta 18m 39s
今ファイルのサイズ
lh SQLyog.exe
-rw-rw-r-- 1 prayagupd prayagupd 1008K Dec 18 18:01 SQLyog.exe
中断後に次のコマンドを使用してダウンロードを再開しようとすると、
## with shortened url
wget -O SQLyog.exe --continue "http://bit.ly/1x22r8H"
## or with actual url
wget -O SQLyog.exe --continue "https://www.dropbox.com/s/dfv2z0le0c2bo7z/SQLyog-9.3.3-0Trial.exe?dl=1"
..........
Length: 15775640 (15M) [application/x-msdos-program]
Saving to: ‘SQLyog.exe’
0% [ ] 0 --.-K/s in 0s
Cannot write to ‘SQLyog.exe’ (Success).
それは私に言う書けない、何がありますか私はそれを失ったこれを復元しますか、それとも私のスクリプト自体が間違っていますか?
私も試してみましたが--tries=0
、同じエラーが出ました。
wget -O SQLyog.exe --continue --tries=0 "https://www.dropbox.com/s/dfv2z0le0c2bo7z/SQLyog-9.3.3-0Trial.exe?dl=1"
wget --trust-server-names -O SQLyog.exe --continue --tries=0 "https://www.dropbox.com/s/dfv2z0le0c2bo7z/SQLyog-9.3.3-0Trial.exe?dl=1"
ファイル名(-O SQLyog.exe
)がない場合は、任意のファイルに保存されますが、最初からダウンロードが再開されます。
しかし、別のリンクから復元しようとしましたが、正常に動作しました。
wget -O ubuntu-14.10-server-powerpc.iso http://www.mirrorservice.org/sites/cdimage.ubuntu.com/cdimage/releases/14.10/release/ubuntu-14.10-server-powerpc.iso
続いて、
wget -O ubuntu-14.10-server-powerpc.iso --continue http://www.mirrorservice.org/sites/cdimage.ubuntu.com/cdimage/releases/14.10/release/ubuntu-14.10-server-powerpc.iso
Dropboxサーバーがこの回復サービスを許可していないかどうかはわかりません。