Eu quero retomar o download do dropbox usando o wget. Eu estava baixando um arquivo
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
O tamanho do arquivo agora é
lh SQLyog.exe
-rw-rw-r-- 1 prayagupd prayagupd 1008K Dec 18 18:01 SQLyog.exe
Quando tento retomar o download após a interrupção; com o seguinte comando,
## 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).
Ele me diz Não é possível escrever , há algo que esteja faltando para retomar isso ou meu script está errado?
Eutambémtentei--tries=0
,masrecebiomesmoerro
wget-OSQLyog.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"
Sem o nome do arquivo ( -O SQLyog.exe
), ele salva em algum arquivo aleatório, mas inicia o download do zero novamente.
Mas tentei retomar em outro link que está funcionando bem.
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
seguido por
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
Não tenho certeza se o servidor dropbox não está permitindo este serviço de retomada.